在 Godaddy Plesk 上 php.ini 内存限制没有增加
Memory limit not increasing in php.ini on godaddy Plesk
我一直在尝试增加 godaddy Plesk 服务器上 php.ini 文件的内存限制 2 天,但它没有增加。
我创建了 php_info 文件来检查我的 php.ini
文件的路径。在 godaddy 的 Plesk 主机上,我的 php.ini 文件位于以下我无法访问的路径:
C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP54\php.ini
在Whosebug上看了很多答案后,我创建了一个名为php.ini的文件,在里面写了memory_limit = 256M放在了我的主机的根。但是 php_info as shown here.
中的内存限制仍然没有增加
需要帮助。提前致谢!
PHP 仅加载其配置的 php.ini
文件。它不会加载在请求路径中找到的具有该名称的所有文件。
一旦你find out whether PHP is running as CGI OR Apache module you need to set the directive in the file and syntax that documentation解释:
.user.ini
用于 CGI
.htaccess
用于 Apache
或者,您可以在 own PHP code:
ini_set('memory_limit', '256M');
我一直在尝试增加 godaddy Plesk 服务器上 php.ini 文件的内存限制 2 天,但它没有增加。
我创建了 php_info 文件来检查我的 php.ini
文件的路径。在 godaddy 的 Plesk 主机上,我的 php.ini 文件位于以下我无法访问的路径:
C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP54\php.ini
在Whosebug上看了很多答案后,我创建了一个名为php.ini的文件,在里面写了memory_limit = 256M放在了我的主机的根。但是 php_info as shown here.
中的内存限制仍然没有增加需要帮助。提前致谢!
PHP 仅加载其配置的 php.ini
文件。它不会加载在请求路径中找到的具有该名称的所有文件。
一旦你find out whether PHP is running as CGI OR Apache module you need to set the directive in the file and syntax that documentation解释:
.user.ini
用于 CGI.htaccess
用于 Apache
或者,您可以在 own PHP code:
ini_set('memory_limit', '256M');