sachasapra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warning: Illegal offset type inHi Michael
I did that, sadly no change.Hi Rickblu
Yes, if I login everything except the users tab works fine. Under the users tab I get this errorFatal error: Unsupported operand types in /var/www/web40/html/jugendgewalt-info/wp-admin/users.php on line 55
This is not my first wordpress-blog, but the first time I installed the newest version.
The server only has PHP 4, as far as I know WordPress needs PHP 4.2, but on the same server other people have the new version running fine …
Forum: Fixing WordPress
In reply to: Warning: Illegal offset type inHi Michael
Thanks for your quick answer.
My wp-config.php file looks like this:
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘xxx’); // The name of the database
define(‘DB_USER’, ‘xxx’); // Your MySQL username
define(‘DB_PASSWORD’, ‘xxx’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>I only changed DB-NAME + DB-USER + DB-PASSWORD, as written in the readme file.