Problem When Installing WordPress In Your Local Server (PC)

PHP Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 233472 bytes) in /var/httpdocs/blog/wp-admin/includes/schema.php on line 103

Ok, maybe this error occured when installing your wordpress website in your own PC as a server by using whether xampp or wamp.

Dont panic! There is a simple solution. You can see the error in “schema.php” but actually you need to edit it in “wp-admin/install.php”

There is a solution provided by another blogger but unfortunately many of us confused with the script written there and when you copy, you cannot fix the problem. Just because of the curly ( ‘ )

Just add this script after “<?php” in install.php file :

you must download and view this script in notepad file here and paste it in your install.php file

For example:

<?php ini_set(‘memory_limit’,’32M’);
define(‘WP_INSTALLING’, true);

Now you are done!

Happy installing!

_WebTips by Shufi

Leave a Reply

Your email address will not be published. Required fields are marked *