• I tried the install wordpress 3.0.1 but got a php error.

    it turned out to be here:

    wp-load.php
    lines 46, 47 & 48

    require_once( ABSPATH . ‘/wp-includes/classes.php’ );
    require_once( ABSPATH . ‘/wp-includes/functions.php’ );
    require_once( ABSPATH . ‘/wp-includes/plugin.php’ );

    I had to change it to this (I took out the preceeding forward slash)
    require_once( ABSPATH . ‘wp-includes/classes.php’ );
    require_once( ABSPATH . ‘wp-includes/functions.php’ );
    require_once( ABSPATH . ‘wp-includes/plugin.php’ );

    It now works and will install correctly.

    Sorry if this is confusing… it seems that it was doing this:

    path//wp-includes/classes.php so it couldnt find the correct .php docs. As soon as I took the forward slashes out it found the load.php and all was well.

    Is this a known bug or is it just that I had made a mistake setting up my folders and this was only a cure for me?

  • The topic ‘Is this a bug’ is closed to new replies.