Quote:
Originally Posted by daydie
i am using this and works great but have 1 problem!
Wheni upload google verifacation html file, It says SQL error, Its something to do with re-write...
How can i get this working?
|
It works for me, i use filezilla to upload.
Quote:
Originally Posted by pigal
I'm using TfSEO, but I've a problem about any avatar filename, don't see them, infact I've understood that the TfSEO read files, for example when the avatar file is 1234567f50bfc.jpg this file doesn't see. The problem is in 1234567... "f5" ...0bfc.jpg.
If I modify the name and exclude f5 the avatar see again.
I've tried to add in .htaccess this rules, but nothing!
RewriteCond %{REQUEST_URI} !/(images)$
or
RewriteCond %{REQUEST_FILENAME} !^(images)/
or
RewriteRule ^images/.*$ - [PT]
or
RewriteCond %{REQUEST_URI} !/(\.gif|\.png|\.jpg)$
P.S. Sorry for my bad english! 
|
Damnt, you have right!
We should introduce a specific list of htaccess files to fix this i think.. or use preg-match (^)
Temporaneally, use this htaccess:
HTML Code:
#Rename this file to .htaccess and upload it to the root directory of your forum.
RewriteEngine On
RewriteRule ^(.*)t([0-9]+)(.*)newpost(.*)$ showthread.php?t=$2&goto=newpost [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/post([0-9]+)(.*)$ showpost.php?p=$6 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/([a-z]+)([0-9]+)(.*)$ showthread.php?t=$4&page=$7 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)$ showthread.php?t=$4 [QSA,L]
RewriteRule ^(.*)f([0-9]+)/([a-z]+)([0-9]+)(.*)$ forumdisplay.php?f=$2&page=$4 [QSA,L]
RewriteRule ^f([0-9]+)(.*)$ forumdisplay.php?f=$2 [QSA,L]
RewriteRule ^(.*)-f([0-9]+)(.*)$ forumdisplay.php?f=$2 [QSA,L]