alphadelta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't see uploaded images in media libraryAgree with paultinkler – I had permissions set wrongly. 123reg sorted it out during a live chat.
Forum: Fixing WordPress
In reply to: Missing edit facility?!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
Forum: Fixing WordPress
In reply to: Missing edit facility?!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 🙁
Forum: Fixing WordPress
In reply to: Missing edit facility?!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…… 🙂
Forum: Fixing WordPress
In reply to: Missing edit facility?!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