Arcade game script

Discussion in 'Programming' started by joet1110, Jul 18, 2007.

  1. #1
    Hello guys, Im not sure if this forum is for help but I have downloaded and uploaded a arcade game script to my server,

    http://games.lostie.org.uk

    this is all working great, except when I add a game, the game doesn't have a valid link. If you click on sonic you will notice it comes up with page not found.

    Does this script im using actually create new pages for games? or do I have to do it manually?

    Thanks
    Joe
     
    joet1110, Jul 18, 2007 IP
  2. AmeryWeb

    AmeryWeb Guest

    Messages:
    92
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It looks like you don't have mod_rewrite configured for it.
     
    AmeryWeb, Jul 18, 2007 IP
  3. joet1110

    joet1110 Guest

    Messages:
    487
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks mate! Is there any support on the net for that fix?
     
    joet1110, Jul 18, 2007 IP
  4. AmeryWeb

    AmeryWeb Guest

    Messages:
    92
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #4
    AmeryWeb, Jul 18, 2007 IP
  5. joet1110

    joet1110 Guest

    Messages:
    487
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /
    RewriteRule ^view/([0-9]+)/([a-zA-Z0-9?-]+) index.php?task=view&id=$1&name=$2 [L]
    RewriteRule ^cat/([0-9]+)?/([a-zA-Z0-9?-]+)/p([0-9]+) index.php?cat_id=$1&name=$2&page=$3 [L]
    RewriteRule ^profile/([0-9]+)?/([a-zA-Z?-]+) index.php?task=profile&id=$1&name=$2 [L]
    RewriteRule ^page/([0-9]+) index.php?task=view_page&id=$1 [L]
    RewriteRule ^task/register index.php?task=register [L]
    RewriteRule ^task/lost-password index.php?task=lost_pass [L]
    RewriteRule ^task/links index.php?task=links [L]
    RewriteRule ^task/members index.php?task=member_list [L]
    Options -Indexes
    Code (markup):
    Would that be ok? to add into the htaccess?
     
    joet1110, Jul 18, 2007 IP
  6. AmeryWeb

    AmeryWeb Guest

    Messages:
    92
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Did you try it to see if it works?
     
    AmeryWeb, Jul 18, 2007 IP
    joet1110 likes this.
  7. joet1110

    joet1110 Guest

    Messages:
    487
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Great, this works great, also members will need to turn off SEO in their admin panel, both have made my site work!
    Thanks for your help mate, you have made my day!
     
    joet1110, Jul 18, 2007 IP
  8. AmeryWeb

    AmeryWeb Guest

    Messages:
    92
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #8
    No problem. Glad to help. ;)
     
    AmeryWeb, Jul 18, 2007 IP
  9. joet1110

    joet1110 Guest

    Messages:
    487
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Thanks for the help once more :)
     
    joet1110, Jul 18, 2007 IP