Free Arcade Script
FAS Help => V1.x => : Trasion September 03, 2009, 07:00:47 PM
-
I just installed FAS again. When I try to login, I click the login link, but it takes me to..
http://trasion.com/arcade/login/
Instead of http://www.trasion.com/arcade/pages/login.php.
It does this with every page. Is there an error, or is it my own fault?
-
go into PHPMyAdmin and turn SEO off in the settings table
then you should be able to login etc
EDIT:
and it shouldn't be going to http://www.trasion.com/arcade/pages/login.php because that file does not include the mysql_connect or session_start it should be going through the index page, index.php?action=login but you have to turn SEO off, then I think it should work, not sure why that might be happening...
-
When you install the script in a subfolder rather than the root, you have to edit the .htaccess file to reflect it. If I remember correct, I think you would need to add that folder on to the front of the URL you are redirecting to. Been a while since I had to set it up that way, but I think that was how it worked. Something like this
RewriteRule ^([^/]*)\/$ /arcade/index.php?action=$1 [L]
RewriteRule ^showprofile/([^/]*)\.html$ /arcade/index.php?action=showprofile&profile=$1 [L]
RewriteRule ^memberslist/([^/]*)\.html$ /arcade/index.php?action=memberslist&page=$1 [L]
RewriteRule ^([^/]*)/([^/]*)\/$ /arcade/index.php?action=$1&cmd=$2 [L]
RewriteRule ^browse/([^/]*)-([^/]*)\.html$ /arcade/index.php?action=browse&ID=$1&name=$2 [L]
RewriteRule ^newest/page([^/]*)\.html$ /arcade/index.php?action=newest&page=$2 [L]
RewriteRule ^blog/([^/]*)/([^/]*)/$ /arcade/index.php?action=blogcat&category=$1&page=$2 [L]
RewriteRule ^blog/$ /arcade/index.php?action=blog [L]
RewriteRule ^blogentry/entryid/([^/]*)/([^/]*)\.html$ /arcade/index.php?action=blogentry&entryid=$1&page=$2 [L]
RewriteRule ^blogentry/submitcomment/$ /arcade/index.php?action=blogentry&cmd=submitcomment [L]
RewriteRule ^blog/page/([^/]*)\.html$ /arcade/index.php?action=blog&page=$1 [L]
RewriteRule ^showcomments/([^/]*)/([^/]*)/([^/]*)\.html$ /arcade/index.php?action=showcomments&name=$1&ID=$2&page=$3 [L]
RewriteRule ^mostplayed/page([^/]*)\.html$ /arcade/index.php?action=newest&page=$2 [L]
RewriteRule ^browse/([^-]*)-([^-]*)/page([^-]*)\.html$ /arcade/index.php?action=browse&ID=$1&name=$2&page=$3 [L]
RewriteRule ^play/([^/]*)-([^/]*)\.html$ /arcade/index.php?action=play&ID=$1&name=$2 [L]