Re: wordpress- what am I doing wrong
|
Dec 2nd, 2009, 09:41 PM
#10 (permalink)
|
I don't think it is a db issue, since wordpress was able to create all the tables. You can verify this by logging into your phpMyAdmin control panel. You should be able to see all the tables created by wordpress.
It can be .htaccess issue. You may not have an .htaccess file in your root directory and that may be the reason why directory browsing is allowed by your server. However I have never seen this problem and I have installed wordpress on several sites on 1and1 hosting.
If "hostingon" allows .htaccess file, then you can try to ftp in a .htaccess file with content such as this, then try to logon to wordpress admin page again.
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
You can also try to do a regular manual install of wordpress by FTP'ing the latest version of wordpress to your website root.