bugskiller
Member
Posted 2 years ago #
Hallo,
Ik probeer voor het eertse WP te installeren..
Ik heb het 'readme' gelezen en alles gedaan zoals het moet.. Als ik probeer de install.php te openen krijg ik altijd hetzelfde bericht, nl: "Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 6144 bytes) in C:\wamp\www\WordPress\wp-includes\registration.php on line 8".
Maar soms on line 8 (zoals hier) en soms op een andere lijn.
Ik werk met Wamp5 en Dreamweaver MX.
Iemand een idee
thanks
Didier
First you might want to try a different text editor as Dreamweaver can cause problems. See:
http://codex.wordpress.org/Glossary#Text_editor
You might also need to increase the amount of memory allocated to PHP. This might require talking to your hosting company.
--------------
Two methods for increasing the amount of memory a PHP script may consume
If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 8M try 16M:
memory_limit = 16M ; Maximum amount of memory a script may consume (16MB)
If you don't have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 16M
-----------