Hi PiotrGDR!!
How are you? Do you remember me?
I'm sorry for what happened between you and the 100mb administration. The forum is much less lively now.
I would like to ask you a question, maybe you can help me:
I'm trying to install SMF 2.0 RC3 forum on my website
www.studentifisica.info, the installation goes fine. Then I can't administer, post or reply even to the first topic, it redirects me to the index.php. Now I can't logout. On an earlier installation in august if I logged out from the admin panel I couldn't login back, it said "You should fill in a username".
You can check by yourself what happens creating an account here
http://www.studentifisica.info/test/smf1
I think the issue may be in my .htaccess redirection, I have only one .htaccess in my root directory and it's this:
# rewrite URLs all to www.studentifisica.info
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:VIA} !www\.studentifisica\.info$ [OR]
RewriteCond %{HTTP_HOST} !studentifisica\.info$
RewriteRule ^(.*)$ http://www.studentifisica.info/$1 [R=301,L]
# custom error documents
ErrorDocument 400 "<h1>Bad Request</h1>"
ErrorDocument 401 "<h1>Authorization Required</h1>"
ErrorDocument 402 "<h1>Payment Required (not used yet)</h1>"
ErrorDocument 403 "<h1>Forbidden</h1>"
ErrorDocument 404 /errordocs/error-404.html
ErrorDocument 405 "<h1>Method Not Allowed</h1>"
ErrorDocument 406 "<h1>Not Acceptable (encoding)</h1>"
ErrorDocument 407 "<h1>Proxy Authentication Required</h1>"
ErrorDocument 408 "<h1>Request Timed Out</h1>"
ErrorDocument 409 "<h1>Conflicting Request</h1>"
ErrorDocument 410 "<h1>Gone</h1>"
ErrorDocument 411 "<h1>Content Length Required</h1>"
ErrorDocument 412 "<h1>Precondition Failed</h1>"
ErrorDocument 413 "<h1>Request Entity Too Long</h1>"
ErrorDocument 414 "<h1>Request URI Too Long</h1>"
ErrorDocument 415 "<h1>Unsupported Media Type</h1>"
ErrorDocument 500 "<h1>Internal Server Error</h1>"
ErrorDocument 501 "<h1>Not Implemented</h1>"
ErrorDocument 502 "<h1>Bad Gateway</h1>"
ErrorDocument 503 "<h1>Service Unavailable</h1>"
ErrorDocument 504 "<h1>Gateway Timeout</h1>"
ErrorDocument 505 "<h1>HTTP Version Not Supported</h1>"
I've also noted that in the database I have some fields collated as latin1_swedish_ci even if my default type is utf8_general_ci. Is it an issue?
I have similar problems with wordpress, Drupal and SMF 1.11
Thank you very much!!
--------
edit: [code] tags added - Piotr GRD