• Well, recently, just 2 days ago I’ve changed my hosting provider. Unfortunately because of that, I am having a lot of problems at once. Whenever I go to main page I receive this message:

    Fatal error: Call to undefined function get_bloginfo() in /home/moonligh/domains/MYWEBADDRESSHERE/public_html/index.php on line 3

    I have changed wp-config.php, transferred all FTP files from old hosting to new hosting, updated new database by adding the old one.

    When I create a new post via /wp-admin/ and then click on “View link”, I get this:

    Not Found
    The requested URL /2012/03/28/fgfghgh/ was not found on this server.

    So it is clear that I am having some direction problems. Any suggestions?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Did you check the .htaccess file on root folder? If it’s writable go to wp-admin/settings/permalinks and click “save”. If it’s not writable, copy and paste the code that will be provided on permalinks page. When moving a site, I was faced htaccess problems. May be your problem is the same.

    Thread Starter testingmoon

    (@testingmoon)

    Slightly confused about your reply, but the problem is not permalinks, since I am not able to open my main page.

    So did you check your .htaccess file (via ftp – in root folder)?. Make sure there is something like this in it (when moving it, some hosts change it):

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Thread Starter testingmoon

    (@testingmoon)

    I have checked it, and I do have this in there:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    [ Bump deleted, that’s not permitted here. ]

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changed hosting providers… Lots of issues.’ is closed to new replies.