Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Agree with paultinkler – I had permissions set wrongly. 123reg sorted it out during a live chat.

    Thread Starter alphadelta

    (@alphadelta)

    Shame it still isn’t doing the trick.. I’m not sure whether the content of .htaccess needs specific custom server information, but it sure stopped any issues for me. It’s probably no coincidence that the original thread I read was related to “1and1 servers”, which I am running my system on…

    Hopefully someone can get to the bottom of this for you,

    Andy

    Thread Starter alphadelta

    (@alphadelta)

    To clarify – I shouldn’t have said “root of my server”. My .htaccess file is stored in the same location as the folders ‘wp-admin’, ‘wp-content’, ‘wp-includes’, and with all the other php files..

    http://www.alphadeltamusic.com/images/ht_ftp.png

    NaeK – Sorry to hear it didn’t work 🙁

    Thread Starter alphadelta

    (@alphadelta)

    To clarify (for non-tecchies) the file name should be literally called “.htaccess” not “something.htaccess” and it will likely be recognised as a “hidden” system file, in which case you’ll need to enable the presence of hidden files in Windows or Mac OS X.

    Worked for me anyway…… 🙂

    Thread Starter alphadelta

    (@alphadelta)

    Right – this is what fixed it for me… I found it online in a forum concerning 1and1 servers. It may help. I uploaded the following info (saved as .htaccess) to my server root and hey presto!!

    <files .htaccess>
    order allow,deny
    deny from all
    </files>

    ServerSignature Off

    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

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

    # END WordPress

    Options All -Indexes
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php

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