The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
ibProArcade Fixes Details »» | ||||||||||||||||||||||||||||||
Quote:
or Full width Forum logo mod the above ARCADE template will work alone this template should be changed anyway.. the arcade is so out of date. it's calling the old template ARCADE instead of ARCADEVB4 I just copied the ARCADEVB4 template and added it to the ARCADE template with a couple small changes If you are still using the stock ARCADE template soon or later it's going to stop working.
Quote:
if adding this code to your index.php don't work below as stated in your arcade zip file you downloaded Code:
open index.php At the very beginning of the File, right after: ---------------------------------------------------------- <?php ---------------------------------------------------------- you have to insert: ---------------------------------------------------------- // ibProArcade if($_POST['module'] == "pnFlashGames") { require_once('./global.php'); switch($_POST['func']) { case "storeScore": $_GET['act'] = "Arcade"; $_GET['module'] = "arcade"; $_GET['do'] = "pnFStoreScore"; break; case "saveGame": $_GET['do'] = "pnFSaveGame"; break; case "loadGame": $_GET['do'] = "pnFLoadGame"; break; case "loadGameScores": $gid = $vbulletin->input->clean_gpc('p', 'gid', TYPE_INT); $uid= $vbulletin->userinfo['userid']; $game = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1"); $scores = $game[score]; if($scores != false) { //Return true print "&opSuccess=true&gameScores=$scores&endvar=1"; //send endvar to keep opSuccess separate from all other output from PostNuke } else { print "&opSuccess=false&error=Error&endvar=1"; } break; } } $act = $_GET[act]; $autocom = $_GET[autocom]; $showuser= $_GET[showuser]; if($act == "Arcade" || $autocom=="arcade") { include "arcade.php"; exit(); } if(!empty($showuser) && $showuser >= 1) { $u = $showuser; $_GET[u] = $showuser; include "member.php"; exit(); } // end of ibProArcade ---------------------------------------------------------- Otherwise your scores won't be recorded :) If the Above edit does not work Pitman posted a rewrite that does the same things with out editing the index.php or of you don't have one https://vborg.vbsupport.ru/showpost....6&postcount=83 I also have a version of this from stangger5 Posted in the new updated Ibproarcade fixes Fatal error: Allowed memory / uploading in bulk Quote:
I tried to add all the bug fixes in one thread to make it easy for people to find them.. If I forgot any feel free to post them here.. Hope this helps out enjoy Download Now
Show Your Support
|
Comments |
#42
|
|||
|
|||
thank you Hippy!
|
#43
|
||||
|
||||
Quote:
My thanks. |
#44
|
|||
|
|||
I have done everthing you sayed. But it didnt help for me.
I got 2 templates on my forum. 1 without problems. The other one is complete custom template. http://forum.highflow.nl/arcade.php At the bottem us the brave template. If tried to change the background collor but it didnt work Code:
.tborder { background-color:{vb:stylevar doc_backgroundColor}; border: 1px solid #c4c4c4; font-size: {vb:stylevar font-size}; } .tcat { font:{vb:stylevar blockhead_font}; color:{vb:stylevar blockhead_color}; background:{vb:stylevar blockhead_background}; padding:{vb:stylevar blockhead_padding}; border:{vb:stylevar blockhead_border}; -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; } .tcat a:link, .tcat_alink { color: #ffffff; text-decoration: none; } .tcat a:visited, .tcat_avisited { color: #ffffff; text-decoration: none; } .tcat a:hover, .tcat a:active, .tcat_ahover { color: #FFFF66; text-decoration: underline; } .alt1, .alt1Active { background: #F5F5FF; color: #1b1b1b; } .alt2, .alt2Active { background: #E1E4F2; color: #1b1b1b; } /* ***** small padding on 'thead' elements ***** */ td.thead, th.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } .tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { padding: 5px; font-size: {vb:stylevar font-size}; border: 1px solid #c4c4c4; margin: 0 2px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } |
#45
|
||||
|
||||
they all have problems..
do this "first replace in both styles" your ARCADE template.. with this one Code:
{vb:stylevar htmldoctype} <html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html"> <head> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="-1" /> <meta http-equiv="Cache-Control" content="no-cache" /> <title>{vb:raw ibprotitle}</title> {vb:raw headinclude} {vb:raw headinclude_bottom} </head> <body> {vb:raw header} {vb:raw navbar} {vb:raw arcadeheader} {vb:raw maincontent} {vb:raw footer} </div> </body> and replace each one with this one Code:
.tborder { background-color:{vb:stylevar doc_backgroundColor}; border: 1px solid #c4c4c4; font-size: {vb:stylevar font-size}; } .tcat { font:{vb:stylevar blockhead_font}; color:{vb:stylevar blockhead_color}; background:{vb:stylevar blockhead_background}; padding:{vb:stylevar blockhead_padding}; border:{vb:stylevar blockhead_border}; -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; } .tcat a:link, .tcat_alink { color: #ffffff; text-decoration: none; } .tcat a:visited, .tcat_avisited { color: #ffffff; text-decoration: none; } .tcat a:hover, .tcat a:active, .tcat_ahover { color: #FFFF66; text-decoration: underline; } .alt1, .alt1Active { background:{vb:stylevar formrow_background.backgroundColor}; color: {vb:stylevar blocksubhead_color}; //-moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius}; //-moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius}; //-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius}; //-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius}; //-moz-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color}; //-webkit-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color}; //margin-bottom: {vb:stylevar padding}; } .alt2, .alt2Active { background-color:{vb:stylevar content3_background.backgroundColor}; color: {vb:stylevar blocksubhead_color}; //-moz-box-shadow: -1px 1px 1px 1px {vb:stylevar forumbits_shadow_color}; //-webkit-box-shadow: -1px 1px 1px 1px{vb:stylevar forumbits_shadow_color}; //margin-bottom: {vb:stylevar padding}; } /* ***** small padding on 'thead' elements ***** */ td.thead, th.thead, div.thead { padding: 4px; } /* ***** basic styles for multi-page nav elements */ .pagenav a { text-decoration: none; } .pagenav td { padding: 2px 4px 2px 4px; } .tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; } /* ***** define margin and font-size for elements inside panels ***** */ .fieldset { padding: 5px; font-size: {vb:stylevar font-size}; border: 1px solid #c4c4c4; margin: 0 2px; } .fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; } make sure your over writing them don't not add. enjoy |
#46
|
|||
|
|||
Didnt work I also removed the code that i added in vbulletin.css. After doing this the arcade template went back to ++++ed up
If added the arcade.css in the vbulletin.css again. But it only works for the breeze style The brave style is still ++++ed up :'( |
#47
|
||||
|
||||
do you have save .css as a file turned on ?
these are details I need to know anyway if you are , then the ARCADE.css is no longer BEING use!!!! if you add the ARCADE .css contents to the vbulletin.css.. []b]revert it back[/b].. then add the code ARACDE.css I posted above to your additional.css any edites now being made tot he arcade MUST be made to the additional.css! being you changed the ARCADE template allready I see, "because the footer is fixed" .. this will call the correct css.. once you get this correct .. report back we can change all the tcat in your skin files (2 files)... to blockhead |
#48
|
|||
|
|||
Oke working now:
Code:
.alt1, .alt1Active { background: #; color: #1b1b1b; } .alt2, .alt2Active { background: #; color: #1b1b1b; But i still need to change allot. Text color is black Edit: http://forum.highflow.nl/arcade.php?act=Arcade How do i change the text color? Its black now so you cant read it :S |
#49
|
||||
|
||||
that text color is global..
I am not sure of the changes you are making but if you did what I have posted it works.. you need to see the changes you made and remove them.. that alt1 and alt2 you removed did you replace it with the alt1 and lt2 I posted in the other ARCADE.css? this will change the BG to a different color so you can read the txt |
#50
|
|||
|
|||
i read some where that you need to turn off the Product : ibProArcade for vBulletin -> arcade.css. I did this.
And im using additional.css thats in the brave template. There i removed some of the background css to make sure it uses the right background color. Quote:
|
#51
|
||||
|
||||
something is not correct in the css..
I have to think about this one.. for now tho try changing any #000000 in the css to #E2E2E2 if thats your font color.. test each one on there .. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|