Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter pandamatak

    (@pandamatak)

    Just 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 0

    I’ll continue to investigate and be sure to post a solution if I find one.

    &

    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.

    &

    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.

    &

Viewing 3 replies - 1 through 3 (of 3 total)