Hello all,
I am running a php script on a shared hosting server (hostgator). That PHP script is written with the codeigniter
framework. Hostgator Shared hosting server only allows 25 processes to run. I have no idea why my script keeps creating the process on the server. The cpanel process server log looks like this:
2221 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
30577 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
30343 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
29994 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
32278 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
28528 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.1% Kill Process
27757 /usr/bin/php /home/megain/public_html/megainfine/index.php 0% 0.2%
The CUP Usage is almost 0% and Memory usage is only between 0.1-0.3%
Is this because of bad code?
Or, any idea why this process keeps getting created? I know that it will be hard to say without seeing my code, but I would like some general approach that will make the problem easier for me to trace.