This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center。
已关闭8年。
我想知道我的php.ini文件在服务器上的什么位置。我尝试手动搜索它,但是它不起作用。我也试过运行
没有成功...运行phpinfo()时,我在error_log上收到此错误;
phpinfo.php仅包含此内容
我需要关闭php安全模式。因此,我做不到。
或在这里:
或在这里:
无论如何,您总是可以通过这种方式找到任何名为php.ini的文件。
但我建议
注意:有时是php.ini.default
已关闭8年。
我想知道我的php.ini文件在服务器上的什么位置。我尝试手动搜索它,但是它不起作用。我也试过运行
<?php phpinfo(); ?>
没有成功...运行phpinfo()时,我在error_log上收到此错误;
phpinfo.php仅包含此内容
<?php phpinfo(); ?>
我需要关闭php安全模式。因此,我做不到。
最佳答案
/etc/php.ini
或在这里:
/etc/php/php.ini
/etc/php5/php.ini
或在这里:
/usr/bin/php5/bin/php.ini
无论如何,您总是可以通过这种方式找到任何名为php.ini的文件。
find / -name php.ini
但我建议
locate php.ini
注意:有时是php.ini.default
关于php - phpinfo()无法正常工作,所以我找不到php.ini ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13074699/
10-12 02:36