请教关于XAMPP配置的问题

大家好:
    请教大家一个问题,我在linux下配置了xampp服务器,服务器运行正常,我在在/opt/lamp/htdocs下分别建了两个文件
一个是upload.html,一个是upload.php代码分别是
<html>
<head><title> the first one  </title></head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="post">
<input type="hidden" name="max_file_size" value="100000">
<center>the file
<input name="userfile" type="file">
<input type="submit" value="OK">
</center>
</form>
</body>
</html>


<html>
<head>
<title>the process</title>
</head>
<body>
<?php
echo $userfile."<br>";
if(!copy($userfile,"/tmp/".$userfile_name))
{
     print("copy failed<br>\n");
}
echo $userfile_name."<br>";
echo $userfile_size."the mount<br>";
echo $userfile_type;
?>
</body>
</html>

来实现文件传输功能,但是我发现只能传输小于100k的文件,大一点的文件就传送不了了,我的php.ini配置:
post_max_size = 10M
upload_max_filesize = 8M

请问xampp默认配置中还有哪些需要改动?多谢了