Sziasztok!
Ú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:
Eddig ezeket a megoldásokat próbáltam, de nem sokat segített:
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]
Bárkinek bármilyen ötlete van, szívesen fogadom, mert WordPress-es szeretnék lenni mégis. Tudom van pár félmegoldás ebben a fórumban, de nekem nem segítettek, és hát szerintem a probléma nem csak az enyém, és fontos besorolású!
Előre is köszönöm a segítségeteket!
