leonforthewin
New Member
I'm only learning this more complex side of things so bare with me!
I'm getting intermittent '500 Internal Server Errors' with my domain frontlinefit.co.uk. - I feel confident that it's a module that's causing it called 'Facebook Graph Connect', could be very wrong though.
Simple enough to find out right? Well that module is kind of integral to the website, so rather then using the process of elimination I have learnt you can add work arounds in the .htaccess file?
My error log is as follows:
I don't think the memory allocation errors are creating 500's. However the last 4 entries are indeed referring to something that doesn't exist - there is nothing installed in the main domain directory. I'm guessing this is an auto-generated URL which would be product of one of the modules? Funny thing is a refresh fixes it all every time.
My .htaccess file is standard as far as I know:
I'm also not running any WP installations at the moment, in case that's relevant.
If anyone has any ideas into further investigation I can do or even can go as far as providing a solution I would be eternally grateful - This website is meant to be going live with a huge members section soon and these errors will kill it.
Cheers,
Leon.
I'm getting intermittent '500 Internal Server Errors' with my domain frontlinefit.co.uk. - I feel confident that it's a module that's causing it called 'Facebook Graph Connect', could be very wrong though.
Simple enough to find out right? Well that module is kind of integral to the website, so rather then using the process of elimination I have learnt you can add work arounds in the .htaccess file?
My error log is as follows:
Code:
[Sun Sep 04 08:44:16 2011] [error] [client 193.35.132.33] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/theonlyp/public_html/frontlinefit.co.uk/index.php, referer: http://frontlinefit.co.uk/
[Sun Sep 04 08:44:16 2011] [error] [client 193.35.132.33] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/theonlyp/public_html/frontlinefit.co.uk/index.php, referer: http://frontlinefit.co.uk/
[Sun Sep 04 08:37:20 2011] [error] [client 193.35.132.16] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/theonlyp/public_html/frontlinefit.co.uk/index.php, referer: http://frontlinefit.co.uk/administrator/index.php
[Sun Sep 04 08:37:20 2011] [error] [client 193.35.132.16] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/theonlyp/public_html/frontlinefit.co.uk/administrator/index.php, referer: http://frontlinefit.co.uk/administrator/index.php
[Sun Sep 04 08:33:51 2011] [error] [client 66.249.71.42] File does not exist: /home/theonlyp/public_html/index.php
[Sun Sep 04 08:33:51 2011] [error] [client 66.249.71.42] File does not exist: /home/theonlyp/public_html/index.php
[Sun Sep 04 08:33:51 2011] [error] [client 66.249.71.42] File does not exist: /home/theonlyp/public_html/index.php
[Sun Sep 04 08:33:51 2011] [error] [client 66.249.71.42] File does not exist: /home/theonlyp/public_html/index.php
I don't think the memory allocation errors are creating 500's. However the last 4 entries are indeed referring to something that doesn't exist - there is nothing installed in the main domain directory. I'm guessing this is an auto-generated URL which would be product of one of the modules? Funny thing is a refresh fixes it all every time.
My .htaccess file is standard as far as I know:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I'm also not running any WP installations at the moment, in case that's relevant.
If anyone has any ideas into further investigation I can do or even can go as far as providing a solution I would be eternally grateful - This website is meant to be going live with a huge members section soon and these errors will kill it.
Cheers,
Leon.