Quote:
Originally Posted by Macsee
Simon, that's a thought, but wouldn't a messed up htaccess affect all attachments including all that I, the admin, make? There is no cPanel on my server. Thanks for the suggestion though....
|
No it wouldn't, here's a section that allows only certain domains to see or link to pictures
HTML Code:
#RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
RewriteCond %{HTTP_REFERER} !^http://www.thecodecage.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.thecodecage.com$ [NC]
#RewriteCond %{HTTP_REFERER} !^http://www.thecodecage.com/forumz/.*$ [NC]
#RewriteCond %{HTTP_REFERER} !^http://www.thecodecage.com/forumz$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
take a look in your .htaccess for something like this and see what's lurking there, other than server settings this is the only reason i can see for an upload to not complete!