Take the tour ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

My virtual memory usage is 100/100!!

Here is the error log:

[Fri Dec 06 12:14:22 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/index.php
[Fri Dec 06 12:14:22 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/wp-cron.php
[Fri Dec 06 12:13:20 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/index.php
[Fri Dec 06 12:13:20 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/wp-cron.php
[Fri Dec 06 12:12:18 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/index.php
[Fri Dec 06 12:12:18 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/wp-cron.php
[Fri Dec 06 12:11:11 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/index.php
[Fri Dec 06 12:11:11 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/wp-cron.php
[Fri Dec 06 12:10:08 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/index.php
[Fri Dec 06 12:10:08 2013] [error] [client 69.162.74.220] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/sparkyh1/public_html/androidizer.com/wp-cron.php
..............

I'm on shared hosting. My hosting provider says like this:

We have again cross checked the webserver configuration everything is fine from server end, please coordinate with your programmer he/she will create a custom php.ini file as per your application.

check my php.ini file:

allow_url_include = off
expose_php = off
zend_extension="/usr/local/IonCube/ioncube_loader_lin_5.2.so"
safe_mode = off 
memory_limit = 512M

Check my site:http://www.androidizer.com/ Now the site is running, if I do any activity, the site will show internal server error.

Kindly help me.

share|improve this question
 
Why do you need that high of a memory_limit? Your system obviously does not have enough to support it. Have you tried using a lower limit, like 64M or 128M? –  user42826 Dec 6 at 7:59
add comment

closed as off-topic by songdogtech, toscho Dec 12 at 7:52

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • "Questions should be specific to WordPress within defined scope (merely happening in its context, such as generic PHP/JS/HTML/CSS, is insufficient). Might be better asked at Stack Overflow or other appropriate site of Stack Exchange network." – songdogtech, toscho
If this question can be reworded to fit the rules in the help center, please edit the question.

1 Answer

Your site is too big for your allocated memory. you need to either increase the memory allocated for your site or remove functionality. If you really need so much memory (512M) then you should probably move to your own VPS in which you will be at least guaranteed that this amount of memory actually exists for you at any time.

share|improve this answer
 
Everyone is giving the same reply I need to resolve this issue Actually this is a misconfiguration in somewhere and my site is having only 600 visits per day! The VPS is waste for me! –  AkhilAniyan Dec 7 at 2:19
 
the problem is not with the configuration, for some reason your site actually requires more memory then it can get. Since you are in a shared hosting environment it is possible that your memory setting is just ignored. –  Mark Kaplun Dec 7 at 5:24
add comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.