kjansch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: allowed memory size…This seems to have been fixed now. I don’t know which single factor did the trick, but these were the steps taken:
1. Adding
define(‘WP_MEMORY_LIMIT’, ’64M’);
to my wp-settings.php and wp-config.php files
2. Deactivating my google maps and flickr press plugins
3. Getting my webhost to increase the memory allowance in the php.ini file to 64M
Forum: Fixing WordPress
In reply to: Fatal error: allowed memory size…Thanks Artur B.
I’ve just tried that, and it immediately caused a problem, meaning the whole site was inaccessible – I got this:
“Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@popeyethewelder.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at popeyethewelder.com Port 80
Forum: Fixing WordPress
In reply to: Fatal error: allowed memory size…Hi Kenton – thanks for your suggestions. Unfortunately I don’t have access to my php.ini file – so I’ve sent a mail to my web-host to get them to change it for me.
About your other suggestion: my .htaccess file looks like this –
# 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
As I’m a bit of a novice at these things, can you tell me exactly where I should paste your suggested line of : php_value memory_limit 64M ?
Thanks,
Kieron