Go Back   vb.org Archive > vBulletin Modifications > Premium Modifications > ibProArcade
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbSEO & ibProArcade : Rewrite-rules Details »»
vbSEO & ibProArcade : Rewrite-rules
Version: , by MrZeropage MrZeropage is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 09-09-2008 Last Update: Never Installs: 0
 
No support by the author.

Here are the custom rewrite-rules you can add to your vbSEO to completely support ibProArcade:

Code:
// ibProArcade
'arcade\.php$' => 'arcade.html'
'arcade\.php\?&$' => 'arcade.html'
'arcade\.php\?&act=Arcade$' => 'arcade.html'
'arcade\.php\?do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
'arcade\.php\?&act=Arcade&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
'arcade\.php\?act=Arcade&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
'arcade\.php\?&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
'arcade\.php\?do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
'arcade\.php\?do=stats&gameid=(\d+)$' => 'arcade/game/highscores/$1.html'
'arcade\.php\?&act=Arcade&do=stats&gameid=(\d+)$' => 'arcade/game/highscores/$1.html'
'arcade\.php\?&act=Arcade&module=report&user=(\d+)$' => 'arcade/game/user-$1.html'
'arcade\.php\?&act=Arcade&do=viewtournaments$' => 'arcade/viewtournaments.html'
'arcade\.php\?&act=Arcade&do=viewtourney&tid=(\d+)$' => 'arcade/tournament/$1.html'
'arcade\.php\?&do=viewtourney&tid=(\d+)$' => 'arcade/tournament/$1.html'
'arcade\.php\?&act=Arcade&module=favorites&gameid =(\d+)$' => 'arcade/favgameid-$1.html'
'arcade\.php\?&act=Arcade&cat=(\d+)$' => 'arcade/category-$1.html'
'arcade\.php\?&act=Arcade&cat=(\d+)&st=(\d+)$' => 'arcade/category-$1/$2.html'
'arcade\.php\?&act=Arcade&module=report$' => 'arcade/own_report.html'
'arcade\.php\?&act=Arcade&module=settings$' => 'arcade/settings.html'
'arcade\.php\?&act=Arcade&module=modcp$' => 'arcade/modcp.html'
'arcade\.php\?&do=viewtourneyend$' => 'arcade/viewtourneyend.html'
'arcade\.php\?&do=viewtournaments$' => 'arcade/viewtournaments.html'
'arcade\.php\?&act=Arcade&do=createtourney$' => 'arcade/createtourney.htm'
'arcade\.php\?&act=Arcade&module=league$' => 'arcade/league.html'
'arcade\.php\?&act=Arcade&module=favorites&gameid=(\d+)$' => 'arcade/add-fav-game-$1.html'
'arcade\.php\?&act=Arcade&module=favorites$' => 'arcade/favourites.html'
'index\.php\?&act=Arcade&do=newscore$' => 'arcade/newscore.html'
'arcade\.php\?&act=Arcade&do=stats&gameid=(\d+)&st=(\d+)$' => 'arcade/game/highscores/$1/$2.html'
'arcade\.php\?&act=Arcade&gsearch=(\w+)&search_type=1$' => 'arcade/games/$1.html'
'arcade\.php\?&act=Arcade&gsearch=(\d+)-(\d+)&search_type=3$' => 'arcade/games/$1-$2.html'
'arcade\.php\?&act=Arcade&do=viewtourneyend$' => 'arcade/viewtourneyend.html'

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 11-01-2008, 09:58 PM
SIINSI SIINSI is offline
 
Join Date: Mar 2003
Posts: 119
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any fix for this issue?
Reply With Quote
  #13  
Old 11-01-2008, 11:44 PM
Lizard King Lizard King is offline
 
Join Date: Jan 2005
Location: Mersin
Posts: 907
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use the following with customizing to your needs

Code:
'arcade\.php\?&act=Arcade&do=play&gameid=(\d+)$' => '$1-play.html'
'arcade\.php\?&act=Arcade&do=stats&gameid=(\d+)$' => '$1-rekorlar.html'
'arcade\.php\?&act=Arcade&do=viewtournaments$' => 'turnuvalarabak.html'
'arcade\.php\?&act=Arcade&module=favorites&gameid =(\d+)$' => 'favorioyun-$1.html'
'arcade\.php\?&act=Arcade&cat=(\d+)$' => 'kategori-$1.html'
'arcade\.php\?&act=Arcade&cat=(\d+)&st=(\d+)$' => 'kategori-$1/$2.html'
'arcade\.php\?&act=Arcade&module=report&user=(\d+)$' => '$1-rekor.html'
'arcade\.php\?&act=Arcade&module=settings$' => 'oyunayarlar.html'
'arcade\.php\?&act=Arcade&module=modcp$' => 'modcp.html'
'arcade\.php\?&do=viewtourneyend$' => 'turnuvasonucu.html'
'arcade\.php\?&do=viewtournaments$' => 'turnuvalar.html'
'arcade\.php\?&act=Arcade&do=createtourney$' => 'turnuvayarat.htm'
'arcade\.php\?&act=Arcade&module=league$' => 'lig.html'
'arcade\.php\?&act=Arcade&module=favorites&gameid=(\d+)$' => 'favorilereekle-$1.html'
'arcade\.php\?&act=Arcade&module=favorites$' => 'favorilerim.html'
'arcade\.php\?&act=Arcade&do=viewtourney&tid=(\d+)$' => 'turnuva-no-$1.html'
'^arcade\.php$' => 'oyun/'
'^arcade\.php\?&act=Arcade$' => 'oyun/'
Reply With Quote
  #14  
Old 11-08-2008, 09:23 AM
glass fanatic glass fanatic is offline
 
Join Date: Sep 2008
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I seem to have this on my site yet when I click on arcade it says that the administrator has not allowed this usergroup to use it.

On the manual it says that when I go into the admin cp I should be able to see "arcade" on the left hand side and from there go into group permissions. I don't see it anywhere and I can't figure out how to allow everyone, including me to use this.
My site is www.theglassrod.com
Thank you
Irene
Reply With Quote
  #15  
Old 11-08-2008, 11:00 AM
newguy's Avatar
newguy newguy is offline
 
Join Date: Nov 2007
Location: USA
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by glass fanatic View Post
I seem to have this on my site yet when I click on arcade it says that the administrator has not allowed this usergroup to use it.

On the manual it says that when I go into the admin cp I should be able to see "arcade" on the left hand side and from there go into group permissions. I don't see it anywhere and I can't figure out how to allow everyone, including me to use this.
My site is www.theglassrod.com
Thank you
Irene
I think the admin (owner) does not want you to have access to this then.
Reply With Quote
  #16  
Old 11-08-2008, 04:31 PM
glass fanatic glass fanatic is offline
 
Join Date: Sep 2008
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am the admin owner :-)
Reply With Quote
  #17  
Old 12-15-2008, 11:43 AM
porcupine73 porcupine73 is offline
 
Join Date: Nov 2008
Location: New York, USA
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent thanks for the rewrite rules! I just put them in and it seems to work great!

I tried some posts with the word 'arcade' in them but I didn't seem to have the issue described above. I am on vB 3.7.4 and vBSEO 3.2.0 I am also using GARS not sure if that matters. http://scoobyenthusiast.com/forums/arcade.html

Now I have to try to keep myself from playing games in the arcade all the time so I can actually work on my site lol.
Reply With Quote
  #18  
Old 01-25-2009, 10:07 PM
azher azher is offline
 
Join Date: Oct 2001
Location: Chicago, IL
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

while these rules seem to work on the latest release (arcade version 2.68+/vb3.8), i noticed that it's not allowing you to save scores anymore. any updates for this?
Reply With Quote
  #19  
Old 01-26-2009, 08:40 PM
ForYou ForYou is offline
 
Join Date: Nov 2001
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where i can put these modify , please let me know
Reply With Quote
  #20  
Old 02-13-2009, 04:51 PM
goxy63 goxy63 is offline
 
Join Date: Oct 2008
Location: its like another planet:D
Posts: 657
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Me too

I would like to know where to place that code for VBSEO !?

New to all of this and just not shure....

Thanks guys
Reply With Quote
  #21  
Old 02-13-2009, 06:55 PM
Gemma's Avatar
Gemma Gemma is offline
 
Join Date: Apr 2004
Location: Scotland
Posts: 1,229
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by goxy63 View Post
Me too

I would like to know where to place that code for VBSEO !?

New to all of this and just not shure....

Thanks guys
Open your vBSEO control panel and look for the Custom Rewrite Rules section, copy and paste the code into 'Define Custom Rewrite Rules' and save the settings.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:01 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04848 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete