我买了2.2M的模板,wordpress的限制设置为2M。
我正在托管服务器,因此我可以完全访问文件。
我创建了一个info.php,发现:
已加载的配置文件:无
然后设置php.ini不起作用:
php.ini //和php5.ini
upload_max_filesize = 32M
post_max_size = 32M
还尝试设置:
WP-config.php文件
定义(' WP_MEMORY_LIMIT',' 64M');
也尝试过:
没有.htaccess文件
我将文件复制到服务器,但我很好奇;
一定是可能的,对吧?
答案 0 :(得分:4)
如果您的托管允许您上传自定义 php.ini 文件,只需在 / wp-admin 文件夹中创建。
upload_max_filesize=280M ;Max file size
max_execution_time=600 ; Script's max execution time, if it's short the file won't upload
memory_limit=1024M ; Memory limit, mine is high because i execute some script when uploading
post_max_size=280M ;Max POST size, it should be the same size as the file size limit
然后在wp-config add:
define(’WP_MEMORY_LIMIT’, ’64M’);
我已经在多台服务器上测试了这个,如果它不起作用是因为你的主机阻止了这个指令。