Új vagyok WordPress-nél, de már használtam Joomla-t Phpbb-t. A már régóta meglévő oldalamon a Joomla fórummotort szerettem volna leváltani. Az Ultranet.hu-nál van a tárhelyem, eddig nem volt ilyen jellegű problémám. Telepítést akár az automata, akár a manuális wp-config.php-s megoldással csinálom, HTTP 500-as hibára fut a telepítés. WP_DEBUG-ot true-ra kapcsolva az alábbi hibaüzenetet kapom:
Idézet
"Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/ftp/oldalamneve/public_html/wp-admin/includes/theme.php on line 90"
Eddig ezeket a megoldásokat próbáltam, de nem sokat segített:
Idézet
Solution 2: Add code to your WordPress /wp-admin/install.php file.
Using your hosting file manager or FTP tool, open your /wp-admin/install.php file and add the following code directly under the <?php tag (usually at the top of the file):
[sourcecode language="html"]
ini_set(‘memory_limit’,’32M’);
[/sourcecode]
The updated /install.php file should look like this:
[sourcecode language="html"]
ini_set(‘memory_limit’,’32M’);
/**
* WordPress Installer
* @since unknown
* @var bool
*/
define(‘WP_INSTALLING’, true);
[/sourcecode]
Solution 3. Add this line of code in your WordPress WP-CONFIG.PHP file. Add it before any other values. (My preferred choice)
[sourcecode language="html"]
define(‘WP_MEMORY_LIMIT’, ’64M’);
[/sourcecode]
Using your hosting file manager or FTP tool, open your /wp-admin/install.php file and add the following code directly under the <?php tag (usually at the top of the file):
[sourcecode language="html"]
ini_set(‘memory_limit’,’32M’);
[/sourcecode]
The updated /install.php file should look like this:
[sourcecode language="html"]
ini_set(‘memory_limit’,’32M’);
/**
* WordPress Installer
* @since unknown
* @var bool
*/
define(‘WP_INSTALLING’, true);
[/sourcecode]
Solution 3. Add this line of code in your WordPress WP-CONFIG.PHP file. Add it before any other values. (My preferred choice)
[sourcecode language="html"]
define(‘WP_MEMORY_LIMIT’, ’64M’);
[/sourcecode]
Előre is köszönöm a segítségeteket!














