• hi
    i copied all files from my host to my local system to check somethings
    but i got this error
    the folders hierarchy in host is like below

    www
    –icons
    –html
    —-wordpress files
    –error
    –cgi-bin

    i only copied wordpress files to my local system
    if i removed .htaccess file, this error appeared and if not, it routed to my blog again

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    .htaccess content

    Alias /phpmyadmin “c:/wamp/apps/phpmyadmin3.5.1/”

    # to give access to phpmyadmin from outside
    # replace the lines
    #
    # Order Deny,Allow
    # Deny from all
    # Allow from 127.0.0.1
    #
    # by
    #
    # Order Allow,Deny
    # Allow from all
    #

    <Directory “c:/wamp/apps/phpmyadmin3.5.1/”>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Allow from all
    </Directory>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Did you create a database for your local host/site using phpmyadmin then ensuring that in wp-config.php, the database name, database username, and database password is correct? Then after that, export the tables from the database of your live site to the database for the local site?

    What is your localhost environment ?

    Is it a LAMP environment / XAMP / MAMP ?

    If all you’re configuration details are correct and you’re still getting errors, it’ll most likely be due to file permissions.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘what is internal server error from local’ is closed to new replies.