|
发表于 2007-5-22 21:26:33
|
显示全部楼层
网上搜来的:
http://www.webmasterworld.com/forum40/1202.htm
In the php.ini you can set the following:
; Maximum allowed size for uploaded files.
upload_max_filesize = 2m
If you don't have access to your php.ini file, try using the ini_set() function to set the limit. I believe it would look something like this:
ini_set('upload_max_filesize', '2m');
Maybe by placing that line in the phpmyadmin 'config.inc.php' file, you can make a larger transfer.
Cheers,
Jeff |
|