开发者

php cli not working in my web server

开发者 https://www.devze.com 2023-04-09 09:55 出处:网络
I am trying to run a php file in my web server in command line using php test.php But it is not working. it runs forever and takes 100% resources.开发者_运维技巧

I am trying to run a php file in my web server in command line using

php test.php

But it is not working. it runs forever and takes 100% resources.开发者_运维技巧 It was working yesterday and now it is not working.

I tried to debug the process using

strace -p <pid>

and got lots of

times(NULL) = -2058427839

Can anyone help me to debug this? Rebooting and upgrading is my last resort. Please suggest a solution without reboot or upgrade.


Try to run your php file in cli without the configuration file using the following command:

php -n <your-filename.php>

and then check whether its working?


Place this into your test.php file to check that it is working and to see what is available.

phpinfo();

0

精彩评论

暂无评论...
验证码 换一张
取 消