pandamatak
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error establishing a database connectionJust following up on the issue. Perhaps this is related?
{localhost}: php
PHP Warning: PHP Startup: Unable to load dynamic library ‘./mysql.so’ – ./mysql.so: cannot open shared object file: No such file or directory in Unknown on line 0I’ll continue to investigate and be sure to post a solution if I find one.
&
Forum: Installing WordPress
In reply to: Fatal Error on 2.2. Any ideas please?Terribly sorry! PLEASE IGNORE MY PREVIOUS POST. That introduces further errors down the line.
However, I believe I have fixed it. The issue seems to be related to the absence of the wp-config.php file. WordPress supplies a wp-config-sample.php file. Rename this to wp-config.php, and edit it for the right usernames and passwords – you should be up and running now.
Hope this helps you.
&
Forum: Installing WordPress
In reply to: Fatal Error on 2.2. Any ideas please?Unfortunately, none of the above suggestions fixed my problem. After a grep for the function names that were deemed to be missing, I added the following lines in wp-includes/functions.php, and now everything seems to work fine:
Was:
<?php
require_once(dirname(__FILE__).’/compat.php’);Changed to:
<?php
require_once(dirname(__FILE__).’/compat.php’);
require_once(dirname(__FILE__).’/classes.php’);
require_once(dirname(__FILE__).’/plugin.php’);The rest of the file was left unchanged.
&