View Full Version : ibProArcade Fixes
Hippy
08-22-2010, 01:17 PM
layout fix & store css as files fix
Orginal post is how to store css as files without messing ibProArcade layout ? (https://vborg.vbsupport.ru/showpost.php?p=2087507&postcount=2)today is your lucky day then ;)
over write your ARCADE template with this
{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}
{vb:cssfile ARCADE.css}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
{vb:raw arcadeheader}
{vb:raw maincontent}
{vb:raw footer}
</div>
</body>
</html>
Click save
No longer needed with the above template..
Now open up the ARCADE.css and copy it completely
close it out, no need to save.
now paste it into the additional.css
click save...
next go to
Plugins & products > plugin manager > Product : ibProArcade for vBulletin click open ibProArcade: ARCADE CSS
and select no for "Plugin is Active" ...
save
thats it
you can turn store css as a file back on ;)
enjoy
for those that are just trying to fix there log / banner
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.
Spacing between icon and title fix
Original Post is Spacing between icon and title (https://vborg.vbsupport.ru/showpost.php?p=2075555&postcount=5)ok
I had a litte time so I found a fix for this
open /arcade/functions/functions.php
search for // we are on vB 4 or later WHOHOOO
Just under it on line 1380 you'll see
$navbits = $output_array['NAV'];
move it under
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
enjoy
If you don't want to edit it yourself I attached it here
leaderbord issue closing <form> code
Orginal Post Leaderboard issue (https://vborg.vbsupport.ru/showthread.php?t=247263)
Score Not Saving / Missing tokenvb suite users
if adding this code to your index.php don't work below as stated in your arcade zip file you downloaded
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 (https://vborg.vbsupport.ru/member.php?u=3597) 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.php?p=1751696&postcount=83
I also have a version of this from
stangger5 (https://vborg.vbsupport.ru/member.php?u=100434)
Posted in the new updated Ibproarcade fixes (https://vborg.vbsupport.ru/showthread.php?t=282802)
Fatal error: Allowed memory / uploading in bulk
If you run into this memory issue, you need to increase the size of the Memory in your php.ini file, normally found in your /public_html/.
First make a COPY of the PHP.INI file, so you can RESTORE it.
Open "EDIT" the file and do a search for MEMORY, you should see the max allowed, increase it to handle a bit more than the error states it needs. Save it and re-upload the file. Should work fine now.
EXAMPLE:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 600 ; Maximum execution time of each script, in seconds
max_input_time = 600 ; Maximum amount of time each script may spend parsing request data
memory_limit = 96M ; Maximum amount of memory a script may consume (16MB) Go back to the PHP.INI file and put it back the way it was. Shared servers don't like you to have this over 64mb I believe.
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
Hippy
08-25-2010, 12:51 AM
~snipped~ no longer worked
Hippy
08-26-2010, 08:30 PM
couldn't find who posted this originally but this is the postbit & or
postbit_legacy fix
change from this
<dt>{vb:raw post.crowns}{vb:raw post.champtext}</dd>
to this
<dd>{vb:raw post.crowns} {vb:raw post.champtext}</dd>
full scroll on postbit scrolling crown
https://vborg.vbsupport.ru/showpost.php?p=2310649&postcount=6645
members getting logged out when submitting score?
delete the contents of holdsession.php or comment it all out and save then upload..
there are 2 other other wways if you would like to try
I have not tested them
fixes are here in this quoted post but I am not 100% sure vb4 needs them
this was originally for vb3
I'm new to all this stuff, and I don't claim to understand most of what the arcade code does. But I was tracking down a problem with scores not saving in IE and I found that the problem was related to the code around line 3375, which seems to be some sort of fix for a problem with IE. Around line 3439 or so there's a check that looks like it determines if the amount of time the game was played is reasonable, but I was finding that the time was 0 and so I was getting an "Error #005" 'your score will not be saved' message. This seems to be related to the fix at 3375 which sets the game start time to the current time. The problem is that the game end time is also the current time. I "fixed" this by subtracting 1 from the game start time around line 3375, so the code in that area now reads:
$vs['sessd'] = 1;
$vs['start'] = $gametime - 1.0;
$vs['randchar1'] = $randomchar;
$vs['randchar2'] = $randomchar2;
$genscore = $player_score * $vs['randchar1'] ^ $vs['randchar2'];
Maybe this is server-dependent so that it doesn't happen for everyone.
--------------- Added 1256259354 at 1256259354 ---------------
Another problem I found with scores not saving is that people get logged out while playing, then their browser "hangs" when it tries to save the score (assuming they haven't checked "remember me" when loggin in). I found that the "holdsession.php" file wasn't working to keep the user logged in, for two different reasons. One is that there's an error in the file. On the last line starting with "echo", there's an extra backslash right after 'URL=', so after URL there should be no backslash between the '=' and the double quotes.
Also, at least in version 3.8.3 of vB, the session was still not being held because the 'lastactivity' time was never getting written to the database. I tracked this down to the fact that it's done using "shutdown_query", which doesn't execute the query until the end of the page request, but since "holdsession.php" doesn't use any of the vB output functions, the query never gets executed. I fixed this by adding a call to "exec_shut_down();" as the last line in holdsession.php.
Bob_R
08-30-2010, 02:03 PM
could find who posted this originally but this is the postbit & or
postbit_legacy fix
change from this
<dt>{vb:raw post.crowns}{vb:raw post.champtext}</dd>
to this
<dd>{vb:raw post.crowns} {vb:raw post.champtext}</dd>
Thanks. But, one quick question.
Where in the postbit legacy? Meaning can you show me before and/or after which piece of existing code
Hippy
08-30-2010, 06:58 PM
in your ibProArcade2.7.0+.zip file. you'll see a bunch of html files and text files..
Open up Installation - vBulletin 3.5.x-3.8.x + 4.x - english.html
you'll see where it needs to go
I posted above assuming everyone has read the instructions for installation..
this is why everything is not in detail
--------------- Added 1283198473 at 1283198473 ---------------
Start off by uploading all the files needed.
The entire /arcade folder to your forum's root directory
The files in the /admincp folder to your forum's /admincp folder
The files in /includes/xml folder to your forum's /includes/xml folder
arcade.php and holdsession.php to your forum's root folder
Now CHMOD the /arcade directory and all its subfolders to 0777
Make sure that there is no installer.php in your forum's root directory, if so -> delete them !
Open your AdminCP and do the following:
Open the Menu Plugin-System
Click Manage Products
Click [Add/Import Product]
Enter the path to the Product-XML-File: ./includes/xml/product-ibproarcade.xml and click IMPORT
Confirm the Import of that Product
Ready - the Hack is installed !
Now you have to change some templates:
Stay in the AdminCP:
Open the Menu Styles & Templates
Click Style Manager
Select "Edit Templates" in the Dropdown-Menu
Scroll down and double-click on Postbit Templates
Choose postbit and click CUSTOMIZE in the right menu
vBulletin 3.x - Search for:
<td valign="top" nowrap="nowrap">
Below add:
<div class="smallfont">$post[crowns]$post[champtext]<br /></div>
vBulletin 4.x - Search for:
<dl class="userstats">
Below add:
{vb:raw post.crowns}{vb:raw post.champtext}<br />
Click SAVE and edit the Template postbit_legacy
vBulletin 3.x - Search for:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
Above add:
$post[crowns]$post[champtext]<br />
vBulletin 4.x - Search for:
<vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></vb:if>
Above add:
<dt>{vb:raw post.crowns}{vb:raw post.champtext}</dd><br />
click SAVE and edit the Template navbar (below "Navigation/Breadcrumb Templates")
In this navbar-Template search for:
vBulletin 3.x
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
Below add:
<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td>
vBulletin 4.x
<li><a href="calendar.php{vb:raw session.sessionurl_q}">{vb:rawphrase calendar}</a></li>
Below add:
<li><a href="arcade.php{vb:raw session.sessionurl_q}">Arcade</a></li>
click SAVE.
Now you should:
Expand the menu "Arcade" in the left AdminCP-menu
Click Group Permissions
Adjust the permissions the way you wantCheck out the Arcade Main Settings if everything fits your ideas. Click Categories in the left menu, click SAVE - there is no need to change anything, just save the settings once.
Finally click on INFORMATION and check if there is a notice about any .php-file to be adapted.
Garamond
09-04-2010, 10:16 AM
So many fixes :( when is the author gonna implement those into the default product?
newsoftw
09-08-2010, 12:29 PM
hi every one...
first i don't understand on ARCADE template.
1. how i can overwrite ARCADE template means is this upload to forum folder or other do ?
2. where i find out the " additional.css " for past the code.
secondly i done the editing in arcade/functions/functions.php but still i have problem.
thirdly set the group permission for all group as " can view and play " but still no any game play.
http://www.newsoftworld.com/forum/arcade.html
fourthly mistakenly i remove the product-ibproarcade.xml from Plugins & products and after that i re add the product-ibproarcade.xmlbut after that my all record is destroy and all game are not present on my ibproarcade board but all game with files are present in arcade folder in my forum so how i can make all these game again in use.
plz help on these issues.
thanks
Hippy
09-08-2010, 07:26 PM
over write means to go to your admincp.. on the left side you'll see Styles & Templates
after you open that you'll see Style Manager , here you''ll see your templates..on the right click the drop arrow and click edit templates..
in there click open the ARCADE template highlight it and delete it and paste the new one in and save..
down a little you'll see CSS template click that open the very top one is additional.css
just a little bit down you'll find the ARCADE.css as well..
removing the arcade from Plugins & products un-installs it adding it back I am sure you noticed everything was gone..
you said you did the function fix for the navbit.. but I looked at your site and looks to me like you never did it or you didn't do it correctly..
biggeorge
09-11-2010, 03:55 AM
I've applied all the fixes listed... thank you.
But honestly, isn't there a simple method to edit/customize the template?
1. For example, I would like to have the "Highscore Champions" title centered.
2. And I would like the "King of Arcade" and the "Leader of Leaderboard" title to be center over the members avatar.
3. I would also like a break between the Game Rating and the Title... it all seems to flow together a bit busy in the current design.
Any help with this, or maybe directing me to a different template would be appreciated.
121793
121794
Hippy
09-11-2010, 01:14 PM
no easy way I recoded my arcade...
I see your screen shots , It don't look like you did all the edits..
it sould look more or less like my screen shot
biggeorge
09-11-2010, 02:20 PM
Somehow I messed up the additional.css template edit. I fixed it and now everything is clean!
Thank you for your help!
121812
Hippy
09-11-2010, 02:30 PM
welcome
biggeorge
09-11-2010, 02:50 PM
I spoke too soon...
The only problem I see is with the "Highscore Champions" and the "King of Arcade" and the "Leader of Leaderboard" titles are still not centered over the members avatar. What do you think I missed?
Thank you for your help!
121813
Hippy
09-11-2010, 03:18 PM
did some testing for you
in your skin_arcade.php in your skins folder
look for and
change this code
<div class='tborder'>
<table width='100%' border='0' cellspacing='0' cellpadding='2'>
<tr>
<th width='50%' align='center' nowrap='nowrap' class='tcat' colspan='1'><img src="./arcade/images/crown.gif" border="0" alt="" /> {$ibforums->lang['grand_champions']} <img src="./arcade/images/crown.gif" border="0" alt="" /></th>
<th width='50%' align='center' nowrap='nowrap' class='tcat' colspan='1'>{$ibforums->lang['leagueleader']}</th>
</tr>
to this
<div class='tborder'>
<table width='100%' border='0' cellspacing='0' cellpadding='2'>
<tr>
<td width='50%' align='center' nowrap='nowrap' class='tcat' colspan='1'><img src="./arcade/images/crown.gif" border="0" alt="" /> {$ibforums->lang['grand_champions']} <img src="./arcade/images/crown.gif" border="0" alt="" /></td>
<td width='50%' align='center' nowrap='nowrap' class='tcat' colspan='1'>{$ibforums->lang['leagueleader']}</td>
</tr>
then look for this
<div class='tborder'>
<table width='100%' border='0' cellspacing='0' cellpadding='4'>
<tr>
<th width='100%' align='center' nowrap='nowrap' class='tcat' colspan='3'><img src="./arcade/images/trophy.gif" border="0" alt="" />{$ibforums->lang['infobox_top3title']}<img src="./arcade/images/trophy.gif" border="0" alt="" /></th>
</tr>
and change to this
<div class='tborder'>
<table width='100%' border='0' cellspacing='0' cellpadding='4'>
<tr>
<td width="100%" nowrap="nowrap" class="tcat" colspan="3" align='center' ><img src="./arcade/images/trophy.gif" border="0" alt="" />{$ibforums->lang['infobox_top3title']}<img src="./arcade/images/trophy.gif" border="0" alt="" /></td>
</tr>
this will center it out for you
enjoy
biggeorge
09-11-2010, 03:47 PM
Outstanding! That worked. Thank you very much for your help with my problems.
Hippy
09-11-2010, 03:49 PM
welcome
mmackinnon
09-14-2010, 06:56 PM
Hey all
Ok i followed the directions above but am still getting some funky look...
Here is what i see now..
What do i do?
MyZurna
09-15-2010, 07:01 AM
Hey all
Ok i followed the directions above but am still getting some funky look...
Here is what i see now..
What do i do?
+1
I have the same problem
Hippy
09-15-2010, 06:58 PM
Hey all
Ok i followed the directions above but am still getting some funky look...
Here is what i see now..
What do i do?
tons of people have done this I get many pms thanking me..
you may of missed something like the template change .. or moving the arcade.css contents..
peek here to see if this helps
https://vborg.vbsupport.ru/showthread.php?p=2098436#post2098436
MyZurna
09-15-2010, 07:42 PM
tons of people have done this I get many pms thanking me..
you may of missed something like the template change .. or moving the arcade.css contents..
peek here to see if this helps
https://vborg.vbsupport.ru/showthread.php?p=2098436#post2098436
ARCADE.css
.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; }
Hippy
09-15-2010, 08:07 PM
also replace the contents of the ARCADE template.(not css this time )
with this one
https://vborg.vbsupport.ru/showpost.php?p=2087507&postcount=2
I just looked at your site ..
you need to do these edits to all the style..
the default style looks correct..
if doing these edits to your other styles.. and it's still not good you will need to look into the styles to see what it affection this..
I you should also do the navbit edit I posted in the arcade fixes thread .. one of your styles (the blue) that should fix that issue..
MyZurna
09-15-2010, 10:20 PM
other themes error :(
Hippy
09-15-2010, 10:33 PM
Like I said above try this
open /arcade/functions/functions.php
search for // we are on vB 4 or later WHOHOOO
Just under it on line 1380 you'll see
$navbits = $output_array['NAV'];
move it under
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
see if it helps that blue style
Hippy
09-15-2010, 10:45 PM
this style I took the screen shot of..
it don't look like you changed the template
you must change all the styles templates..as well
MyZurna
09-16-2010, 05:42 AM
Like I said above try this
open /arcade/functions/functions.php
search for // we are on vB 4 or later WHOHOOO
Just under it on line 1380 you'll see
$navbits = $output_array['NAV'];
move it under
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
see if it helps that blue style
No benefit
blue style (FunkyFresh) additional.css
mmackinnon
09-16-2010, 06:29 AM
Hmm
Im confused. If i have it set to only display in one style why would i have to change em all?
Hippy
09-16-2010, 06:55 PM
No benefit
blue style (FunkyFresh) additional.css
you got to be kidden' me (no benefit)
the edit above It don't look like it was done
but the others you did fixed the headers etc ..
the problem with freakyfresh lies with that style..
I will look at the source to see what could be causing that.
you should compare your styles before you started adding these fixes ..
before you say no benefit...
I see a huge change........
I also see a change in the funkyfresh style..
look at the screen shot here https://vborg.vbsupport.ru/showpost.php?p=2098853&postcount=24
compared to the one attached here
:eek:
Just looked at your additional.css
the conflict is with .tcat..
..I would open up your skin_v3Arcade.php and your skin_Arcade.php
with your editer do a search for tcat.... and replace them all with blockhead
have a back up file to revert back if necessary
Hippy
09-16-2010, 06:56 PM
Hmm
Im confused. If i have it set to only display in one style why would i have to change em all?
yes . if you have more than one style .. then you must edit each style..
different set of templates ..
so this is why you must do each style
MyZurna
09-16-2010, 09:53 PM
you got to be kidden' me (no benefit)
the edit above It don't look like it was done
but the others you did fixed the headers etc ..
the problem with freakyfresh lies with that style..
I will look at the source to see what could be causing that.
you should compare your styles before you started adding these fixes ..
before you say no benefit...
I see a huge change........
I also see a change in the funkyfresh style..
look at the screen shot here https://vborg.vbsupport.ru/showpost.php?p=2098853&postcount=24
compared to the one attached here
:eek:
Just looked at your additional.css
the conflict is with .tcat..
..I would open up your skin_v3Arcade.php and your skin_Arcade.php
with your editer do a search for tcat.... and replace them all with blockhead
have a back up file to revert back if necessary
thank you... You're so cool :) :)
mmackinnon
09-16-2010, 11:40 PM
So just out of curiosity...
Can i delete all the other styles including the VB default one it comes with without a problem? I only use one and would that then fix the issue?
yes . if you have more than one style .. then you must edit each style..
different set of templates ..
so this is why you must do each style
Hippy
09-16-2010, 11:52 PM
just disable them so your users can't use them and only fix the one you use..
I can't tell you with out looking at it if you can delete the default one..
but you can delete any others you added or made.
I would keep the default style .
Just disable it
mmackinnon
09-17-2010, 12:18 AM
Hey when you say disable I assume you mean uncheck in the style manager? If that is the case, they are all unchecked except for the one i use...
Hippy
09-17-2010, 12:21 AM
Hey when you say disable I assume you mean uncheck in the style manager? If that is the case, they are all unchecked except for the one i use...
;) then you only need to edit the style you use..
mmackinnon
09-17-2010, 12:36 AM
Hippy
thank you so much. You totally solved my issue and it was awesome!!
Id have never figured out the tcat -> blockhead fix!
TazDevilLooney
09-18-2010, 12:22 AM
Thankyou soo much for your hard work Hippy. This saved me a lot of problems with my additional.css and arcade.css conflicting. (Big Thumbs Up!).
Keep up the good work buddy.
Taz
Gn_Snake
09-19-2010, 06:44 PM
I see that this discussion is very useful for us users ibproarcade!
I also have a problem with the page layout of the games, I attach a picture to understand better.
The writings are not centered and each set of games is not divided by borders.
Any idea?
Hippy
09-19-2010, 06:51 PM
do the fieldset edit ;)
Gn_Snake
09-19-2010, 07:11 PM
[QUOTE = Hippy ; 2100641 ] do the fieldset edit ;) [/ QUOTE]
Very Thanks Man!!
: up:
Hippy
09-19-2010, 07:20 PM
;) enjoy my friend
Juggernaut
09-19-2010, 11:22 PM
Thank you for all your work Hippy :D
youssef87
09-21-2010, 08:29 PM
thank you Hippy!
Krusty1231
09-22-2010, 04:38 PM
Just looked at your additional.css
the conflict is with .tcat..
..I would open up your skin_v3Arcade.php and your skin_Arcade.php
with your editer do a search for tcat.... and replace them all with blockhead
have a back up file to revert back if necessary
THANK YOU......THIS worked like a charm for two custom templates that were messed up.
My thanks.
Dutch_Boy
09-24-2010, 08:40 PM
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 :(
.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; }
Hippy
09-24-2010, 11:00 PM
they all have problems..
do this
"first replace in both styles" your ARCADE template.. with this one
{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>
then open up your ARCADE.css in each of your styles
and replace each one with this one
.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
Dutch_Boy
09-25-2010, 07:54 AM
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 :'(
Hippy
09-25-2010, 10:52 AM
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
Dutch_Boy
09-25-2010, 12:23 PM
Oke working now:
.alt1, .alt1Active
{
background: #;
color: #1b1b1b;
}
.alt2, .alt2Active
{
background: #;
color: #1b1b1b;
If removed the background stuff and it usses the color code now i added.
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
Hippy
09-25-2010, 02:06 PM
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
Dutch_Boy
09-25-2010, 02:25 PM
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.
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!
Already did this.
Hippy
09-25-2010, 04:02 PM
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 ..
Dutch_Boy
09-25-2010, 06:04 PM
Call me nuts call me crazy but there are no #0000 in the css :S
I thinks thats because i changed them to #ffff Thats whit.
Hippy
09-25-2010, 08:48 PM
see if this arcade.css makes a difference replace it in your additional.css
I'm not sure what else to do
I have a dark custom style and I didn't have to do anything to that font it changed globally..
could be something in your Style Variable as well.
.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: {vb:stylevar forumhead_color};
text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
color: {vb:stylevar forumhead_color};
text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
color: #FFFF66;
text-decoration: underline;
}
.alt1, .alt1Active
{
background: {vb:stylevar forumrow_background};
color: {vb:stylevar blocksubhead_color};
}
.alt2, .alt2Active
{
background: {vb:stylevar forumrow_background};
color: {vb:stylevar blocksubhead_color};
}
/* ***** 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; }
Dutch_Boy
09-26-2010, 10:09 AM
Your the best !!
What did you change?
I wanna make the text a little bit whiter, so you can read it better.
Check arcade and you see what i mean.
Hippy
09-26-2010, 11:57 AM
if you use a compare program ( something like compareit) you can compare this one I posted to the orginal one and see the changes I made..
most are changes where to vb stylevars so they will change when you make changes in the admincp..
as far as the color..
the arcade looks fantastic.. I wouldn't change it but you would need to find a stylevar you like the color of and change it
the problem we had before is that you made changes and I made changes ..
so we where not on the same page (so to speak)
try this one.. over write the one you added before
see what one is better for you
I would also use it on your other stlye ;)
.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: {vb:stylevar forumhead_color};
text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
color: {vb:stylevar forumhead_color};
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; }
Dutch_Boy
09-27-2010, 07:26 PM
Tobad i cant give you thanks :(
Many thanks!! Works fine now!
kga10734
09-28-2010, 02:41 AM
I have checked around and searched a bunch for an answer but can't find one. I have checked all the settings in my Admin CP and nothing.
Is there a way to list games in different categories but still have them all listed in a "All" category at the same time? I would like all the games show up under the categories, not just the ones listed in the category I have set for default.
I'm probably overlooking something. That is usually what my problem is.
Hippy
09-28-2010, 06:35 PM
I don't think there is any option like this ..
ssslippy
09-29-2010, 05:28 AM
We are getting a weird issue our bars are not showing up any advice?
http://immortal-guild.net/arcade.php
Hippy
09-30-2010, 01:07 AM
your ARCADE.css is missing the tcat for some reason..
if you had edited restore it ..
if for some reason that don't work..
open up your skin_arcade.php
and with your editor search and replace all the tcat with blockhead..
there are tons
so if you have the option to replace all.. use it ;)
ssslippy
09-30-2010, 02:21 AM
tried the replace with blockhead is failed and tcat is the addition.css
.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: #000000;
}
.alt2, .alt2Active
{
background: #E1E4F2;
color: #000000;
}
/* ***** 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; }
Hippy
09-30-2010, 12:02 PM
what version of vb are you using ? If your using vb4 then blockhead could be missing some how from your vbulletin.css
you'll need to check and if it's missing add it back ..
check the default css template for the code..
notice in your arcade.css the tcat is using blockhead..
.blockhead is in the vbulletin.css
make sure it's there.
just looked at your site...
for some reason ( i don't know)
blockhead is not being used
looks like it's using
blocksubhead
in your arcade.css change blockhead to blocksubhead
also noticed your other style. you'll need to move the arcade.css contents to the addition.css and change the template as you did with the other style
m55629
10-05-2010, 07:05 PM
Hi,
what is my problem?
http://forum.sanobar.ir/arcade.php
my version is 4.0.7
can u help me?
Hippy
10-05-2010, 07:23 PM
like I send before over write the arcade template..with the one in the first post of this thread
in your case your using save css as a file via admincp
so you Will need to also copy your ARCADE.css contents to your additional.css
as stated in the first post of this thread..
we will see how it goes from there..
--------------- Added 1286310970 at 1286310970 ---------------
getting there :)
now do the Fieldset fix from the first post
m55629
10-05-2010, 07:55 PM
thanks hippy!
i do this. it is very good Tips. but there is few problem.
see again my forum, my language is persian (RTL) I think these problems for this.
i dont know what is must change to correct it.
Excuse me to was long time
Hippy
10-05-2010, 08:11 PM
as far as the corners go .. no fix unless you recode the mod.. it still uses tcat and tables the new vb4 doesn't ..
the language issue I'm sorrry I don't have a clue..
do the fiedset edit from the first post and the nav fix..
you can also do the atl1 and alt2 fix as well.. posted here https://vborg.vbsupport.ru/showthread.php?p=2106866#post2106866
I sugest start a new thread about the language issue here ibProArcade (https://vborg.vbsupport.ru/forumdisplay.php?f=170)
m55629
10-05-2010, 08:16 PM
+
i want to games are separated by vertical line.
AND OTHER THAT SHOW IN PIC.
m55629
10-05-2010, 08:18 PM
I DO IT.
Ok I Am Looking For U.
Thanks A Lot.
Hippy
10-05-2010, 08:39 PM
centering the games is not supposed to be ..if you like that youll have to recode it
do this fix and see how things look
most of your problems seem like a language problem..
see what this does
•Fieldset fix
Go into your skin_Arcade.php
Search for
Code:
<fieldset>
Replace them all with...
Code:
<fieldset class="fieldset">
as far as the (( I never ever seen that before has to be a language thing
m55629
10-06-2010, 10:08 AM
Dear Hippy!
Ur tips Very useful and was help me.
I change some things in Arcade_skin.php to repaire my problem. but not complete yet.
--------------- Added 1286363585 at 1286363585 ---------------
what version of vb are you using ? If your using vb4 then blockhead could be missing some how from your vbulletin.css
you'll need to check and if it's missing add it back ..
check the default css template for the code..
notice in your arcade.css the tcat is using blockhead..
.blockhead is in the vbulletin.css
make sure it's there.
just looked at your site...
for some reason ( i don't know)
blockhead is not being used
looks like it's using
blocksubhead
in your arcade.css change blockhead to blocksubhead
also noticed your other style. you'll need to move the arcade.css contents to the addition.css and change the template as you did with the other style
Can you explain step by step for me?
Thanks.
--------------- Added 1286365544 at 1286365544 ---------------
i do this but nothing change.
Hippy
10-06-2010, 09:32 PM
step by step for what fix ?
R4Z0R49
10-06-2010, 10:09 PM
Hello Guys,
Can anyone tell me how to edit the font colour of these
options
best Score of all Time
actual Highscore Champion
personal best Score
Statistics
Game-Rating
<td class="alt1">
<fieldset class="fieldset">
<legend><b>{$ibforums->lang['gamebox_options']}</b></legend>
My Background is black as well as each one of thoise sections how do i change the font color of each one?
Also thanks Hippy your posts helped me alot today getting this mod working again Thank You
Hippy
10-07-2010, 01:01 AM
you got me stumped
that should change globally with the forum..
I believe .legend controls size color etc
I have 2 styles
when I did the styles I focused on the forum and the arcade changed as well.
image attached
did you do the alt1 and alt2 edits in your ARCADE.css, posted here or in on of the threads in this arcade help forum..
do you have a screen shot of it .. or a link ?
R4Z0R49
10-07-2010, 06:24 AM
Oh sorry i forgot to add our link here you go
http://thebritishguards.co.uk/main/arcade.php
Also i notice you have a good list of games how do i get thoise games?
Hippy
10-07-2010, 11:05 AM
atm i am on my cell phone so i cant see well did you make the changes to the arcade.css ? The alt1 and alt2 . Did you do the fieldset fix? I will be able to get a better look when i get home.
R4Z0R49
10-07-2010, 11:28 AM
.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};
}
Yes both have been done added the .css section just to make sure i have the correct one
Hippy
10-07-2010, 11:59 AM
looks correct im not sure off hand but in the usercp and general settings @ the bottom check the font color. Thats also .legend see if that font is legible
R4Z0R49
10-07-2010, 12:15 PM
Hippy, Ive looked at that but its a gray color font not black.
Ive even tested using the normal default theme and thoise sections are still soild black fonts
Where can i find the .legend section? (Attached Thumbnails is also using legend and is also black)
--------------- Added 1286458441 at 1286458441 ---------------
Hippy,
Ive fixed it now thank you i just edited the reset-fonts.css and changed the legend{color:#000;}
So next problem on the Tournament Ladder View how do i change the white box's :-(
Thanks for your help Hippy
Hippy
10-07-2010, 08:47 PM
tournament ? I am not sure what you mean ..
the ladder it black graphic if thats what your talking about .. you would have to make new ones..
if you can post a screenshot
Did you mean the white box around the crown.gif ?
if so find this code in your skin_arcade.php
<td align="center" style="background-color:#ffffff;">
<img src="./arcade/images/crown2.gif" alt="" /><br />
<big><b>{$champion}</b></big>
change the #ffffff
Jack12
10-08-2010, 05:09 AM
Orginal post is how to store css as files without messing ibProArcade layout ? (https://vborg.vbsupport.ru/showpost.php?p=2087507&postcount=2)
for those that are just trying to fix there log / banner
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.
Massive thanks for this snippet of information. I was scratching my head, trying to figure out why it had broken my custom header, then I found this. Cheers:up:
R4Z0R49
10-08-2010, 06:44 AM
Hippy,
Yes got that for crown but for users who sign up im unable to locate where to change that background
Thanks
Hippy
10-08-2010, 11:27 AM
You lost me . Please post a screen shot
R4Z0R49
10-08-2010, 12:41 PM
Hello Hippy,
lol Not sure how i lost you there but here
http://thebritishguards.co.uk/main/arcade.php?&do=viewtourney&tid=3
as you can see the crown background is now black but for users there background is still white i need to change that white background.
cheers
Hippy
10-08-2010, 07:45 PM
for some reason that color is in the tables of the DB..
TABLE_PREFIX . "games_settings ADD `ladder_empty_color` VARCHAR(10) DEFAULT 'FFFFFF' NOT NULL");
or you could try and edited it here in arcade.php
$ladderhtml = "
<!-- CSS Stylesheet -->
<style type='text/css' id='tournament_css'>
<!--
.empty
{
background: #{$this->arcade->settings['ladder_empty_color']};
}
.qual
{
background: #{$this->arcade->settings['ladder_qual_color']};
}
.elim
{
background: #{$this->arcade->settings['ladder_elim_color']};
}
.disqual
{
background: #{$this->arcade->settings['ladder_disqual_color']};
}
-->
</style>
<!-- / CSS Stylesheet -->
this line
.empty
{background: #{$this->arcade->settings['ladder_empty_color']};
}
welcome jack12
R4Z0R49
10-08-2010, 07:50 PM
Hippy your a start thank you worked perfect cheers :-)
jalmz
10-31-2010, 02:59 AM
Thanks..
mod. please stick this one..
RitaW
11-12-2010, 08:58 AM
Hippy. Thank you for these fixes. Really appreciate the time and effort you put into this.
Bob_R
11-27-2010, 01:06 PM
Though I have it set up in my arcade settings to display trophies in the postbit legacy. Nothing shows. :confused:
Hippy
11-27-2010, 01:33 PM
Open the Menu Styles & Templates
Click Style Manager
Select "Edit Templates" in the Dropdown-Menu
Scroll down and double-click on Postbit Templates
Choose postbit and click CUSTOMIZE in the right menu
vBulletin 3.x - Search for:
<td valign="top" nowrap="nowrap">
Below add:
<div class="smallfont">$post[crowns]$post[champtext]<br /></div>
vBulletin 4.x - Search for:
<dl class="userstats">
Below add:
{vb:raw post.crowns}{vb:raw post.champtext}<br />
Click SAVE and edit the Template postbit_legacy
vBulletin 3.x - Search for:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
Above add:
$post[crowns]$post[champtext]<br />
vBulletin 4.x - Search for:
<vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></vb:if>
Above add:
<dd>{vb:raw post.crowns}{vb:raw post.champtext}</dd><br />
click SAVE and edit the Template navbar (below "Navigation/Breadcrumb Templates")
argothiusz
12-04-2010, 07:33 AM
Updated to 4.1PL2 and it stopped working. For some reason, members keep getting "score cannot be submitted" and its automatically log them out. BUT, it works just fine for admin lol.
- Tried All the fixed
- All my permission are set correctly.
akxt660
12-04-2010, 11:51 PM
Anyone can explain to me how this happened?
See the image bellow:
https://vborg.vbsupport.ru/external/2010/12/74.jpg
I use the latest version! 2.7.0
VB 4.03 Version
LLent
12-08-2010, 02:42 AM
when i play game and it ends it takes me back to forum home what can i do to remedy this what did i do wrong....
Hippy
12-08-2010, 08:00 PM
never head of this...
so redirect you may have set ?
how long was the arcade installed ?
when did this start happening ?
what version are you running ?
forum or suite ?
LLent
12-08-2010, 08:50 PM
i am using vb version 4.0.7 along with 2.7.0 for arcade i followed all directions but must went wrong somewhere i installed it 4 days ago and has done it since then takes me back to main forum after game finishes when i click submit score ...where would i change redirect if thats the case ...
thanks for fast response
HeLLCiTo
12-09-2010, 05:59 AM
i think this is for the changes in de index.php, i hace this problem too.
--------------- Added 1291881997 at 1291881997 ---------------
i have those problem, i think it is for the changes in the index.php
Hippy
12-09-2010, 08:06 PM
yep do the portal / index edit .. found in the zip archive..
LLent
12-11-2010, 04:38 AM
i see the index php but what am i changing to stop the redirect and what do i put in as new code ...thanks in advance
Hippy
12-12-2010, 07:05 PM
INFO - vbadvanced or another Portal.txt
If you are using vbAdvanced Portal and your /index.php is not the original one from vBulletin,
you have to edit your alternate index.php:
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 :)
LLent
12-15-2010, 12:40 AM
many thanks hippy that did it funny thing it was recording my scores too but we are good now thanks....
Rich_Princess
12-15-2010, 03:49 AM
Hey guys, Im having a problem with score submission/log out on submission of scores with this mod. I am running 4.1 as well. I have noticed that the arcade works fine for some of my members, but not for others. I did also notice all scores were erased when I made upgrade from 4.0.8 to 4.1.... There seems to be no usergroup discrimination either with this no permission/ not saving score issue. One of my admins are having trouble, while I am fine(admin).... I have looked through most of the files, but I am still fairly new here, lol. My members are getting a bit restless for the arcade and Im hoping someone can help :) Thanks for any help in advance guys!
Hippy
12-15-2010, 08:17 PM
Hi Rich_Princess .. as far as the scores being erased, the upgrade had nothing to do with it to my knowledge.. the only thing that would od that would be a un-install.. or manualy editing the database via phpmyadmin etc..
the user groups can be edited admincp usergroups..
as far as score saving ..
Do you run the suite or the forum?
Do you use the index.php for the forum or forum.php?
Do you use vbadvanced ?
Did you add the code to your index file ? if your forum address is ending in forum.php?
Rich_Princess
12-16-2010, 07:49 AM
Hey there, I am using suite version :) My addy ends in forums.php.. The code is added to my index.php as well.. Also my users are reporting that it is a 50/50 thing with this error too. Im am clueless at this point lol. I def do know that the arcade was running great without any complaints. Then the day after I updated to new version, I had 100 members saying they were having issues.. Hmmm, Id have to think it was from the update... Oh also, I am only one with access to phpmyadmin, CP, etc... Thank you so much for your insight, and I'm praying for a fix soon lol.. Thanks again and ttys!
Hippy
12-16-2010, 08:15 PM
we can try a couple things ..
do you use MSN ?
if so add me as a contact.. my info is in my profile here ..
Rich_Princess
12-17-2010, 07:27 PM
Added and msg sent! Thanks Hippy!!!!
Digital Jedi
12-18-2010, 02:45 AM
This thread has kind of become one big long support thread, with no single subject. It kind of defeats the purpose of having a support forum if everyone is asking all their questions in one thread. While I think Hippy is doing a great job, having each of these questions in individual threads will help other users down the road when doing searches. It's tough to find information when it's all strewn in a long thread, and this one doesn't seem to have an exact focus. People are just asking random arcade related questions, which is counterintuitive when you have a whole forum set aside for that purpose.
I recommend everyone direct their questions to the support forum as separate threads if you cant find it elsewhere. I'm sure Hippy and others will still be happy to help you and offer support more easily and keep everything more organized.
Hippy
12-18-2010, 06:11 PM
yes Digital_Jeti
would be great if this was used for what it was intended for..
Only mod for this forum is Mrzeropage.. wish he was around again..
I read these forums all the time and If I can help I will reply to your threads..
This was not meant for a support thread .. It's for the bug fixes that got lost in the arcade mod thread etc.. I will address any questions about the topic on hand or if you have trouble adding any of the fixes post..
Happy Arcading
jagg97
12-26-2010, 06:24 PM
I did the modification to the index.php and still not working Yesterday I did the upgrade from 4.0.8 to 4.1 and I´m having the same problems with the scores ( Not recorded after the uprade ) Another ideas ??
Hippy
12-26-2010, 07:56 PM
if you did the edit to the index.php and still not saving make sure you have rememeber me ticked when you log to the forum..
Pocket Aces
01-07-2011, 05:23 AM
The current ibProArcade really needs an update. Apply those fixes. If the original coder, MrZeropage can't do it then maybe someone can ask his permission to release a new one with those fixes.
Digital Jedi
01-07-2011, 06:49 AM
The current ibProArcade really needs an update. Apply those fixes. If the original coder, MrZeropage can't do it then maybe someone can ask his permission to release a new one with those fixes.
While some of these fixes can be included in an update, the major "fixes" are not due the mod needing updating, but because they require edits on the back end. Something MrZeroPage would not have access to. Things like missing token or CSS issues are not in the developer's purview.
MAdotcom
01-23-2011, 01:43 AM
Anyone know how to fix this?
Hippy
01-23-2011, 10:21 AM
<a href="https://vborg.vbsupport.ru/showpost.php?p=2090028&postcount=3" target="_blank">https://vborg.vbsupport.ru/showp...28&postcount=3</a>
MAdotcom
01-23-2011, 03:21 PM
Very cool thank you :up:
floggerss
02-03-2011, 11:42 PM
yes Digital_Jeti
would be great if this was used for what it was intended for..
Only mod for this forum is Mrzeropage.. wish he was around again..
I read these forums all the time and If I can help I will reply to your threads..
This was not meant for a support thread .. It's for the bug fixes that got lost in the arcade mod thread etc.. I will address any questions about the topic on hand or if you have trouble adding any of the fixes post..
Happy Arcading
I have the same problem, can i add you to my msn.. some members cant submit their score
Crogge
02-04-2011, 02:03 AM
I was able to fix all critical issues of the Arcade with the help of this useful thread, thanks :)
I have only two bigger "visual" issues left, just have a look at the included attachment.
Hippy
02-04-2011, 01:54 PM
I have the same problem, can i add you to my msn.. some members cant submit their score
yes
I was able to fix all critical issues of the Arcade with the help of this useful thread, thanks :)
I have only two bigger "visual" issues left, just have a look at the included attachment.
first.. open up yyour skin_arcade.php
search for thead
replace them all with blockhead..
as far as the issue with the tournament blocks i will have to test...
will post back
Crogge
02-05-2011, 02:50 AM
...
first.. open up yyour skin_arcade.php
search for thead
replace them all with blockhead..
as far as the issue with the tournament blocks i will have to test...
will post back
Thank you for the fast reply :)
I replaced all cases where it said "class="thead"" with "class="blockhead"", "Game / Options" and "Top Scores" is shown correctly now. Just the best score part has still the strange frame on the left side of the user avatar.
Hippy
02-05-2011, 12:37 PM
Thank you for the fast reply :)
I replaced all cases where it said "class="thead"" with "class="blockhead"", "Game / Options" and "Top Scores" is shown correctly now. Just the best score part has still the strange frame on the left side of the user avatar.
screen shot or a like to view it
Hippy
02-05-2011, 12:41 PM
this space is normal
Crogge
02-05-2011, 02:01 PM
this space is normal
Well that's what I meant, didn't know that it is normal.
Hippy
02-05-2011, 02:11 PM
will look into moving it over to the left if you like..
Hippy
02-06-2011, 05:02 PM
logging out when submitting score?
I updated this post with some new info
enjoy
https://vborg.vbsupport.ru/showpost.php?p=2090028&postcount=3
BellyBelly
02-07-2011, 10:36 PM
I tried to follow your instructions for centering the text but seem to have messed some of it up, can you please help? Here's a screen shot.
Hippy
02-07-2011, 11:53 PM
replace your skin_arcade.php with the one from this thread
https://vborg.vbsupport.ru/showpost.php?p=2154103&postcount=18
you moved something to the wrong place..
what post where you following ?
merk_aus
03-04-2011, 11:18 AM
Sorry to everyone for posting - Hippy I have attempted to follow all of your fixes however got easily confused.
I am running vb4.1.2 and have the lusterous theme from forumthemes.com and am having issues on my arcade page that hopefully you will be able to help me with.
http://www.sports-force.net.au/forums/arcade.php
Please help if you can.
EDIT: I had to remove the part about additional.css as it was messing up my forum theme.
Hippy
03-04-2011, 12:16 PM
replace your skin_arcade.php with this one and let me know how things look
https://vborg.vbsupport.ru/attachment.php?attachmentid=126053&d=1295919489
just do the ARCADE template change ..
instead of the template and the css
merk_aus
03-04-2011, 10:06 PM
worked a charm thanks mate looks absolutely awesome.
Hippy
03-04-2011, 10:47 PM
;) welcome
NAZIA
03-05-2011, 05:23 AM
Bug in ibProArcade v2.7.0+
Extended vBulletin-Version ? MrZeropage
https://vborg.vbsupport.ru/external/2011/03/45.png
Received this mail
https://vborg.vbsupport.ru/external/2011/03/46.png
See BSIT07-01 and Zeshan Rana
BSIT07-01 has played 1 game and didn't played 2nd try... But Zeshan didn't played anything... after 7 days BSIT07-01 got disqualified....
This problem occurs again and again in lot of tournaments...
Kottonmouth801
03-06-2011, 05:12 AM
Hello,
I have been receiving a 404 error when I originally go to the arcade and click a link in Firefox or Safari.
If I refresh arcade.php page after it has loaded the links are fine and go right to the games.
Here is an example of the 404 error url I receive. (If you notice the path repeats itself but the seesion ID dissapears when I post In here)
/forum//forum/arcade.php?&act=Arcade&do=play&gameid=3694
Here is an example of the url that works after I refresh the arcade.php .
/forum/arcade.php?&act=Arcade&do=play&gameid=3694
It appears to be repeating twice...
Can anyone help?
P.S.
I have donation for help.
To see my problem click on my signature and go to arcade and click on a game in safari or firefox.
You will notice that it takes you to a 404 and the file path is doubled?
After you arrive at the 404 go back to arcade and refresh browser and click on a game and it will work.???
Check it out it is a strange bugg...... It repeats the session ID twice and the /forum/ path.
Hippy
03-09-2011, 07:50 PM
I can't view your arcade or forum for that matter with the link in your sig
floggerss
03-10-2011, 11:24 AM
Where is the fox for the submit score when you have two opened games?
Kottonmouth801
03-11-2011, 03:56 AM
I can't view your arcade or forum for that matter with the link in your sig
Can I PM you the arcade link?
Or did you click on the Battle Zone Image? It should take you there.
:)
Hippy
03-11-2011, 12:39 PM
Can I PM you the arcade link?
Or did you click on the Battle Zone Image? It should take you there.
:)
user groupd does not have permission to view..
send me a pm..
temp detail to log and view..
--------------- Added 1299854448 at 1299854448 ---------------
Where is the fox for the submit score when you have two opened games?
I read a thread posted and at German vb.org has the fix there..
use google translator to read..
The fix it not here because I can't reproduce the issue to test the info posted..
dmark101
03-20-2011, 04:59 PM
i am getting this error:
ERROR: Cannot find database <database_VB3>
There is a SQL error.
You can contact the board administrator by clicking here
Error Returned:
mySQL query error: SELECT arcade_access, p_require FROM usergroup WHERE usergroupid = 1
mySQL error:
mySQL error code:
this after upgrading to vB 3.8.7 [not the beta]. what gives?
i'm getting a ton of db connection errors as well, but that's another issue entirely, or at least i hope.
stangger5
03-20-2011, 07:29 PM
Where is the fox for the submit score when you have two opened games?
Read here : https://vborg.vbsupport.ru/showpost.php?p=1934815&postcount=23
Somesite
03-25-2011, 10:35 PM
I'm having a terrible time with my leaderboards as you can see here ... http://www.randomgaming.org/arcade.php?do=stats&gameid=1
Another issue is with a specific users stats in the arcade as seen here ...
http://www.randomgaming.org/arcade.php?&act=Arcade&module=report&user=1
if you could possibly help, I'd be deeply grateful! Thanks.
ps. I tried the </form> tag fixes already.
Hippy
03-27-2011, 08:24 PM
leaderboards says 10..
it's 10 for every high score..
you have one high score ??
I am confused.
the /form a different fix.. by the way
gregory_clayton
03-28-2011, 08:31 PM
Hi I am having an issue with my Arcade.
If you view: http://wwehq.com/forum/arcade.php
I dont have any other problems with any other mods except the Arcade one :/
Anyone fancy helping me :)
Hippy
03-28-2011, 08:47 PM
first off
did you try anything from this thread ?
change your ARCADE template to this one
{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>
</html>
then lets see what it looks like..
in this thread too
fnd the arcade.css to relace ..
and you can replace you your skin_arcade.php with the one posted ..
gregory_clayton
03-28-2011, 08:57 PM
Hi,
Changed to the code you pasted through but still the same. Where abouts is the arcade.css in this thread? Tried looking, probs cos I have been up almost 24 hours I have gone blind :P
Thanks for your help
* Edit*
Put that code in the wrong place before, the arcade has now been slightly fixed. Just some issues with the navbars.
http://wwehq.com/forum/arcade.php
Thanks
Hippy
03-28-2011, 09:36 PM
replace your skin_arcade.php with the one from here
https://vborg.vbsupport.ru/showpost.php?p=2159990&postcount=123
or direct skinarcade-fix.zip (https://vborg.vbsupport.ru/attachment.php?attachmentid=126053&d=1295919489)
--------------- Added 29 Mar 2011 at 10:40 ---------------
Hi,
Changed to the code you pasted through but still the same. Where abouts is the arcade.css in this thread? Tried looking, probs cos I have been up almost 24 hours I have gone blind :P
Thanks for your help
* Edit*
Put that code in the wrong place before, the arcade has now been slightly fixed. Just some issues with the navbars.
http://wwehq.com/forum/arcade.php
Thanks
the post above is a fix for the same issue your having for the ibpro_arcade_skin..
I see your using the v3-arcade_skin..
I will apply the fixes to that skin file and post it back for you when I get home from work,,
for now tho add that file and see how that style looks ...
ok here's the v3 style file..
let me know how you make out
VBIran
04-03-2011, 12:03 PM
Hi ,
I have this errors in top of the page :
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: navbar in [path]/includes/functions.php on line 4055
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: footer in [path]/includes/functions.php on line 4055
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: ARCADE in [path]/includes/functions.php on line 4055
How can i fix it?
Hippy
04-03-2011, 12:57 PM
first off what version of vb are you using ..?
what did you do right before this error started ?
in this post https://vborg.vbsupport.ru/showpost.php?p=2178507&postcount=139
replace your ARCADE template with the one posted
then report back
VBIran
04-07-2011, 09:44 AM
http://im.gg/uploaded/07042011-807873.png
I change it and get this error . Games and blocks ( all of the boards ) were gone ! :(
Using (vBulletin 4.1.0 Patch Level 2) !
Hippy
04-07-2011, 06:50 PM
send me a link to your board..
what I said to do should of fixed it..
Jack.D
04-08-2011, 12:15 PM
i have a white page in arcade.php
Hippy
04-08-2011, 12:23 PM
screen shot..??
but you probably have save css as a file..
so you'll need to move your ARCADE.css to additional.css
and change your ARCADE template to this
{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>
Jack.D
04-08-2011, 12:32 PM
here is the screenshot
https://vborg.vbsupport.ru/attachment.php?attachmentid=128040&stc=1&d=1302269529
Jack.D
04-08-2011, 12:35 PM
tried the above still the blank page
Hippy
04-08-2011, 03:00 PM
was this a fresh install ?
If not what did you do before this happened?
what version of vb are you running ?
did you MAKE sure you uploaded the files to the correct directory ?>
did you re-import the xml file and allow overwrite ?
Open the zip file up and grab everything in the upload folder in that zip file and drop it all in your forum root dir to make sure they files are placed in the correct place..
fukdawrld
05-13-2011, 07:06 AM
Hi I'm running 4.1.3. I have a very large post table and I believe it causes it to hang on installation. My browser just quits and says done in the middle of installing. Any suggestions?
Hippy
05-20-2011, 01:06 PM
I don't think it has anything to do with large post tables..
sounds like a server time out ??
cowcowcow
06-05-2011, 10:17 AM
Hey Hippy,
Ive been searching for the fourms for 3 hours now and still can't find a fix for my problem. FYI I am using vBadvanced and vb 3.8
Problem 1:
Im getting the common redirected to the index page and score is not saved after playing a game. I have added the fix as suggested in the OP at the top of index.php but nothing has changed.
I cannot do the alternate renaming of index/forum step because i do not have a fourm.php file. Under my forum home page options the "Script Name for Forum Home Page" has already been set to index before installing this mod.
Problem 2:
The arcade isn't integrated fully in width, it only takes up 70% of the page. I normally will try to edit the template manually to make the table width =100% when this happens but in this case i cant find the template to edit.
My site can be viewed at
Thank you so much for your help, you have been an amazing help to many people in this forum.
Hippy
06-05-2011, 12:04 PM
yeah these fixes have only been tested on vb4.
been a longgggg time since I used vb3.
I also never seen vbadvanced intgrated with the arcada..
vb3 does not have forums and index in the forum root dir.. only index.php so you must of renamed it.
before you change index to forums manualy in your Script Name for Forum Home Page
rename you forums.php or copy the forums.php and rename it to index.php and upload it.so you have both files with the same content in it but the index.php file will have the arcade portal edit
or
you can change it back.
and make a redirect forums.php to the index.php
or have the same file with 2 names like i said above
I downloaded a fresh copy of vb3.8 and and there is a index.php file in the forums root dir but no forums.php try what I said above and add the portal arcade edit there..
what browser are you using .. the arcade page was 100% for me with IE but not firefox..
this can be edited in the skinaracade.php file in your aracde skins folder..
with out having a vb3 to test this out on I my have to test it out by you..
hope something here helps you out ..
cowcowcow
06-05-2011, 02:12 PM
hey hippy,
for 1) tried having 2 copies and it didnt work still.
i read something about it maybe being .htaccess and how it might be redirecting the index page away but i cant even find my .htaccess file! arghh :(
https://vborg.vbsupport.ru/showthread.php?t=171430&page=3
(lol thats how far i went back searching)
there are people who have used vbadvanced and seem to have got it working properly. if you could find a solution forVB3 with that fix ill be so grateful, i really have no idea what to do still :(
Update:
are comments supposed to be displayed with the scores? as of now i cant see any comments with the scores, but the scores still register correctly. just that the redirect to main page is really annoying for members having to go the main page all over again, i guess its not working as intended, hope that helps in finding whats causing the problem.
for 2) yeap i get the exact same scenario! its fine in IE but in firefox it displays weirdly and i dont know what to edit the .php seems massive and i cant understand it my limited coding knowledge. i see a 75% and 25% width but i dont think thats causing the problem and its strange it only affects firefox.
update: this error is probably vbA related you can ignore it unless you have an easy way to solve it. im getting this width error on other pages like but on my normal pages (e.g forums, other modules) it is totally fine
let me know what i could do, will be more than happy for u to test it out by me
cowcowcow
06-10-2011, 06:04 AM
bump!
still having trouble with it.. is there any support still for this mod?
LLent
06-13-2011, 10:34 PM
i installed 4.1.4 and my arcade has vanished i still have all changes to templates ect how do i get it back .....
Hippy
06-14-2011, 12:11 AM
vanished??????????
with out seeing it
I would re import the xml file.. allow over write
then do the template edites
--------------- Added 1308014030 at 1308014030 ---------------
bump!
still having trouble with it.. is there any support still for this mod?
sorry I have not had a vb3 to test this one everyone I help has vb4..
when I come across a fix for you I will post back
cowcowcow
06-16-2011, 06:40 PM
thanks hippy, i will be eagerly awaiting your reply
LLent
06-22-2011, 07:09 PM
thanks hippy i reloaded everything and redid the templates working perfect on 4.1.4
bunnykins
06-26-2011, 03:02 PM
Does this fix the issue I have been having.
The issue I have is if users do not check the remember me button when logging in they get logged out when submitting scores.
teach1st
07-31-2011, 09:45 PM
Thanks for your hard work with this, Hippy. I'm on 4.1.5, and thanks to this thread, ibProArcade is humming along nicely. You rock!
Hippy
07-31-2011, 11:44 PM
glad to be of help..
enjoy
fireglow305
08-03-2011, 08:29 AM
Hello everyone. I updated my vB from 3.8.7 to 4.1.5 and there is a little problem with the Style (Footer).
There is a little space at the Footer. How can i fix this?
Hippy
08-03-2011, 04:44 PM
replace your ARCADE template with the one i have posted here
fireglow305
08-03-2011, 07:32 PM
Thanks a lot :)
One more question. In the Tab of my Browser i can see the complete URL to the Arcade what can I do to see the Name of it?
Hippy
08-03-2011, 07:43 PM
I am not sure but I think your talking about the titlte of the game and or arcade in the top of your browser ?
if so my first post explains how to fix..
https://vborg.vbsupport.ru/showpost.php?p=2087815&postcount=1
hope this helps if this is not what your taking about .. post a screen shot so I have a better idea of what your talking about
fireglow305
08-03-2011, 07:51 PM
Here a Screen of the Tab.
I would like that only the Word "Spielhalle" stands there
Hippy
08-03-2011, 08:37 PM
<a href="https://vborg.vbsupport.ru/showthread.php?p=1972723#post1972723" target="_blank">https://vborg.vbsupport.ru/showt...23#post1972723</a>
fireglow305
08-03-2011, 08:41 PM
Yes, that's it. Thank you for helping. ;)
Hippy
08-03-2011, 08:55 PM
welcome
tidus78
08-09-2011, 07:00 PM
Is there a system to resize or disable gamer's avatars in Best score,King of leaderboard ecc ecc?
http://www.console-planet.it/arcade.php
Beautiful mod
No members have liked this post.
Edit/Delete Message
Hippy
08-09-2011, 07:12 PM
no but I can edit it so there are no avatars..
Let me peek at the code and I will let you know what to do or I will add the file here..
tidus78
08-09-2011, 08:06 PM
no but I can edit it so there are no avatars..
Let me peek at the code and I will let you know what to do or I will add the file here..
Thanks Hippy :)
Hippy
08-09-2011, 08:41 PM
open up your skin folder with in your aracde folder
remove this code from skin_Arcade.php and skin_v3Arcade.php files
<tr>
<td width='33%' align='center' nowrap='nowrap' class='alt1' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode1']}</td>
<td width='33%' align='center' nowrap='nowrap' class='alt1' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode2']}</td>
<td width='33%' align='center' nowrap='nowrap' class='alt1' valign='middle'>{$Highscorechamp['ArcadeChampionAvatarCode3']}</td>
</tr>
and this code
<tr>
<td width='50%' align='center' nowrap='nowrap' class='alt1' valign='middle'>
{$Champion['ArcadeChampionAvatarCode1']}
</td>
<td width='50%' align='center' nowrap='nowrap' class='alt1' valign='middle'>
{$tourneyinfo['champavatar']}
</td>
</tr>
if you have trouble attach your files (if you have edites in them allready) other wise I can edit 2 stock skin files and attach them for you..
you need to do this to both skin_Arcade.php and skin_v3Arcade.php
tidus78
08-09-2011, 09:56 PM
Ouch!
I lost highscoreschamp's name.....
Hippy
08-09-2011, 10:09 PM
:) I fixed it up for ya
added both style files
enjoy
tidus78
08-09-2011, 10:26 PM
mmm i don't undertand..
Yes there aren't avatars in highscorechamp but also champ's names disapperar :confused:
http://www.console-planet.it/arcade.php
Hippy
08-09-2011, 11:02 PM
name is gone .. let me look at it again I will reupload them once I fix .. wife is calling for dinner atm.. so 30 min or so..
both styles ?
tidus78
08-09-2011, 11:21 PM
Only v3arcade ;)
I add 2 questions :
1) I can't view username in viewtournament http://www.console-planet.it/arcade.php?&do=viewtourney&tid=8
2) I don't find <dt>{vb:raw post.crowns}{vb:raw post.champtext}</dd>
in my postbit or postbit_legacy for fix it....
Don't hurry i'm very patient :up:
Hippy
08-09-2011, 11:30 PM
you must of uploaded your file..
I just tested the files again
--------------- Added 1312936510 at 1312936510 ---------------
this is the postbit edit you mentioned before
code should be changed to
<dd>{vb:raw post.crowns}{vb:raw post.champtext}</dd>
this is to change the font color in your tournament tree
this code needs to be manually added
in your arcade.css ( in your style templates
change the ALT1 color
from color: #ffffff
to color: #000000
tidus78
08-09-2011, 11:48 PM
Sorry I've confused....I mean only skin_arcade.....
Hippy
08-09-2011, 11:53 PM
the post (attachment) above shows you the 2 files I upload to my post here
https://vborg.vbsupport.ru/showpost.php?p=2231518&postcount=177
unzip them and upload to your server ...over writing yours
your page is showing your edites like you posted before...
not the files I did for you
my zip files I added work like you want.. look at the attachment just above your post to see..
also in the post above yours are the fix for the tournament font fix and the postbit fix
tidus78
08-10-2011, 12:04 AM
OOOkkkk now it works greatly!
Last question and i disappear for ever........:o :
Where I have to add <dd>{vb:raw post.crowns}{vb:raw post.champtext}</dd> in my postbit?In which position?:confused:
Hippy
08-10-2011, 12:13 AM
postbit template
and or if you use
postbit_legacy template
add it just above <vb:if condition="$post['joindate']"><dt>{vb:rawphrase join_date}</dt>
tidus78
08-10-2011, 03:34 PM
Now everything it's ok :)
Is it also possible to center phrases like this post?https://vborg.vbsupport.ru/showpost.php?p=2096753&postcount=14
I don't find the second part to change.........
Hippy
08-10-2011, 06:34 PM
what happened to forever :D just joking..
I am not sure of what you mean please post a screen shot of what you need centered
and I will do my best to make it happen for you
that code posted there will make everything thats pointed out here centered
https://vborg.vbsupport.ru/showpost.php?p=2096742&postcount=13
if you mean something else let me know..
if you want that and can't figure it out I will post them here for you
tidus78
08-10-2011, 08:09 PM
It's exactly what I want,centered high score champion-king of arcade-leader of leaderbord
Excuse me for the promise eheh but you're a wizard of this mod!
Hippy
08-10-2011, 08:35 PM
I have to take my daughter to cheer leading and my other 2 out to eat.. I will post them asap ;)
Hippy
08-11-2011, 12:11 AM
ok bud
save the files from the first edit.. (just in case) since I deleted them in that post ..
here are the new ones..
enjoy
Hippy
08-11-2011, 07:07 PM
tidus78 looks like it worked ..
I see you didn't find the tourtment color..
if you want PM me details I will fix it for you..
tidus78
08-12-2011, 09:20 AM
Oh yeah it works :)
Founded the tournament color but i don't like the combination,I want to make some attempts :p
Thanks for all ;)
A question : is there a plugin in the first post of ibproarcade download available on vb 4.1.5.?
Hippy
08-12-2011, 11:36 AM
you lost me pal..
tidus78
08-12-2011, 08:32 PM
you lost me pal..
:confused:
Hippy
08-12-2011, 10:55 PM
like I said you lost me I have no idea what you mean by plugin in the first post of ibproarcade download available on vb 4.1.5.
tidus78
08-12-2011, 11:09 PM
I refer to the addons,but I'm certainly off-topic here :o
I will ask in the appropriate threads,my fixes are completed now,thanks for tremendous help :up:
rinkrat
08-14-2011, 02:27 PM
I am getting the security token error, can you point me to the fix for that?
Hippy
08-14-2011, 03:42 PM
Score Not Saving / Missing token
https://vborg.vbsupport.ru/showpost.php?p=2087815&postcount=1
tidus78
08-20-2011, 10:02 PM
Sometimes users are logged out submitting scores,is there a fix for this?I read this post https://vborg.vbsupport.ru/showpost.php?p=2090028&postcount=3 but I don't understand where replace the code
Hippy
08-20-2011, 11:07 PM
you need to let your members know to remember to tick remember me .. or use this post to edit the templates to make the remember me box ticked (default)
https://vborg.vbsupport.ru/showpost.php?p=2227860&postcount=2
this is a work around .. there is no fix nor do I think there will be one..
ice.Prince
08-21-2011, 04:48 PM
wie kann ich mein Problemm lössen ?
VB 4.1.5
Header und fooder
was kann ich blos machen
bitte um Hilfe...........
how can I loesses my Problemm?
VB 4.1.5
Header and food
I can only make
please help ...........
Hippy
08-21-2011, 07:04 PM
replace your ARCADE template with
ersetzen Sie die ARCADE-Vorlage mit dieser
{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>
lass es mich wissen
let me know ;)
ice.Prince
08-21-2011, 07:46 PM
Header und fooder ist da
aber der rest ist nicht gut
sorry für Mein englisch
Header, and since food is
But the rest is not good
My English for thrush
bitte hilfeeeeeeeeeeee
ice.Prince
08-22-2011, 09:46 AM
Hippy Du hast eine PN
bitte helfe mir
ich bekomme es nicht hin
bitteeeeeeeeeeeeeeee:confused:
schau auf bild 2
Hippy
08-22-2011, 06:28 PM
Fixed my friend...
let me know all is well..
ice.Prince
08-22-2011, 07:25 PM
:up::up:P e r f e k t !:up::up::up:
DANKT SUPER
Jaaaaaaaaaaaaaaa.................:up:
Hapyyyyyyyyyyyyyyyyyy:D
big Thx :D
From Germany Hamburg :up:
Hippy the Best :up:
Hippy
08-22-2011, 08:21 PM
:) your welcome from the US
your welcome mein Freund, wann immer Sie Hilfe brauchen einfach fragen
--------------- Added 1314049180 at 1314049180 ---------------
[QUOTE]:up:QUOTE]
sorry bout those avatars I fixed them
Leider Kampf den Avataren ich fest davon
jaffaman
08-30-2011, 06:41 PM
I have a custom dark theme and in the additional.css it already has lots of code see below.
I think there's a conflict when i add the arcade.css to it as it does not keep in style with the rest of the site I have a few themes and they are all ok but there additional.css was already blank.
The additional.css that is already there. Would i just copy the origanal Arcade.ccs and paste it on the top?
.social-top {
background: #000000;
width: 250px;
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 4px;
-webkit-border-bottom-left-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
-moz-border-radius-bottomleft: 8px;
-moz-border-radius-bottomright: 8px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.toplinks .logindetails {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.toplinks ul.nouser li a {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.navtabs .popupbody {
background-color: #101519;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.threadbit .sticky {
border-bottom: 1px dotted #5F9BBF;
}
.threadbit .deleted {
border-bottom: 1px dotted #EA5C50;
}
.toolsmenu .popupgroup .popupbody a, .toolsmenu .popupgroup .popupbody li label {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.attachments {
background: #1F313D;
color: #FFF;
border: 1px solid #000;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
legend {
color: #FFF;
}
#forum_icon_legend {
border: 0px solid;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.notices li {
background: #000 url({vb:stylevar imgdir_misc}/important.png) no-repeat top left;
padding-left: 88px;
padding-top: 13px;
padding-bottom: 13px;
}
.top-header-info{
position:absolute;
z-index: 2000;
top:0px;
right:-20px;
padding-left: 12px;
padding-top: 8px;
padding-right: 6px;
padding-bottom: 0px;
margin-top: -0px;
height: auto;
width:320px;
color:#A7B5BF;
background: url({vb:stylevar imgdir_misc}/frow-bg.png) repeat-x top left;
font: 12px verdana;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-bottomleft: 8px;
border-bottom-left-radius: 8px;
border-left: 1px solid #5F9BBF;
border-right: 0px solid #5F9BBF;
border-bottom: 1px solid #5F9BBF;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
box-shadow: 0 0 0px #888;
}
#fb_icon {
margin-right: 11px !important;
margin-top: -17px !important;
margin-bottom: 2px !important;
z-index: 10000 !important;
}
.fbpp-link {
background-color: #3b5998 !important;
outline: none; color: #FFF !important;
text-decoration: none !important;
text-align: center !important;
}
.fbpp-link:hover {
background-color: #627aad !important;
}
.fbpp-link:active {
background-color: #2a4280 !important;
}
.navtabs li a.navtab {
text-transform: uppercase;
margin: 0 0 auto 5px;
}
.navtabs li.selected a.navtab {
-webkit-border-top-left-radius: 12px;
-webkit-border-top-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-topright: 12px;
-webkit-border-bottom-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-bottomleft: 12px;
-moz-border-radius-bottomright: 12px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.navtabs li a.navtab:hover {
-webkit-border-top-left-radius: 12px;
-webkit-border-top-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-topright: 12px;
-webkit-border-bottom-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-bottomleft: 12px;
-moz-border-radius-bottomright: 12px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.memberaction_body.popupbody {
background: #000;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.body_wrapper {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.postbitlegacy .userinfo {
text-transform: uppercase;
}
.postbitlegacy .userinfo .username_container, .postbitlegacy .userinfo .rank, .postbitlegacy .userinfo .imlinks {
text-align:center;}
.postbitlegacy .userinfo .postuseravatar, .postbitlegacy .userinfo .postuseravatar img{
float:none;
text-align:center;}
.postcontainer .username_container .popupmenu a.popupctrl {
font-size:13px;}
.postingo{
background:#0A161F;
border:1px solid #000;
color:#FFF;
font-family:Tahoma, Geneva, sans-serif;
font-size:11px;
padding:5px 5px 20px 5px;
margin-top:2px;
margin-bottom: 5px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
}
.post-user{
background:#0A161F;
border:1px solid #000;
color:#FFF;
font-family:Tahoma, Geneva, sans-serif;
font-size:11px;
padding:5px 5px 5px 5px;
margin-top:2px;
margin-bottom: 5px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
}
.postbitlegacy .userinfo .userinfo_extra {
display: block;
position: relative;
float: left;
}
.usertitle {
padding-top: 2px;
padding-bottom: 2px;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
width: 14%;
}
.tborder {
background-color:{vb:stylevar doc_backgroundColor};
border: 1px solid #c4c4c4;
font-size: {vb:stylevar font-size};
}
Thanks in advance................Paul
Hippy
08-30-2011, 06:42 PM
I have a custom dark theme and in the additional.css it already has lots of code see below.
I think there's a conflict when i add the arcade.css to it as it does not keep in style with the rest of the site I have a few themes and they are all ok but there additional.css was already blank.
The additional.css that is already there. Would i just copy the origanal Arcade.ccs and paste it on the top?
.social-top {
background: #000000;
width: 250px;
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 4px;
-webkit-border-bottom-left-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
-moz-border-radius-bottomleft: 8px;
-moz-border-radius-bottomright: 8px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.toplinks .logindetails {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.toplinks ul.nouser li a {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.navtabs .popupbody {
background-color: #101519;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.threadbit .sticky {
border-bottom: 1px dotted #5F9BBF;
}
.threadbit .deleted {
border-bottom: 1px dotted #EA5C50;
}
.toolsmenu .popupgroup .popupbody a, .toolsmenu .popupgroup .popupbody li label {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.attachments {
background: #1F313D;
color: #FFF;
border: 1px solid #000;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
legend {
color: #FFF;
}
#forum_icon_legend {
border: 0px solid;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.notices li {
background: #000 url({vb:stylevar imgdir_misc}/important.png) no-repeat top left;
padding-left: 88px;
padding-top: 13px;
padding-bottom: 13px;
}
.top-header-info{
position:absolute;
z-index: 2000;
top:0px;
right:-20px;
padding-left: 12px;
padding-top: 8px;
padding-right: 6px;
padding-bottom: 0px;
margin-top: -0px;
height: auto;
width:320px;
color:#A7B5BF;
background: url({vb:stylevar imgdir_misc}/frow-bg.png) repeat-x top left;
font: 12px verdana;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-bottomleft: 8px;
border-bottom-left-radius: 8px;
border-left: 1px solid #5F9BBF;
border-right: 0px solid #5F9BBF;
border-bottom: 1px solid #5F9BBF;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
box-shadow: 0 0 0px #888;
}
#fb_icon {
margin-right: 11px !important;
margin-top: -17px !important;
margin-bottom: 2px !important;
z-index: 10000 !important;
}
.fbpp-link {
background-color: #3b5998 !important;
outline: none; color: #FFF !important;
text-decoration: none !important;
text-align: center !important;
}
.fbpp-link:hover {
background-color: #627aad !important;
}
.fbpp-link:active {
background-color: #2a4280 !important;
}
.navtabs li a.navtab {
text-transform: uppercase;
margin: 0 0 auto 5px;
}
.navtabs li.selected a.navtab {
-webkit-border-top-left-radius: 12px;
-webkit-border-top-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-topright: 12px;
-webkit-border-bottom-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-bottomleft: 12px;
-moz-border-radius-bottomright: 12px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.navtabs li a.navtab:hover {
-webkit-border-top-left-radius: 12px;
-webkit-border-top-right-radius: 12px;
-moz-border-radius-topleft: 12px;
-moz-border-radius-topright: 12px;
-webkit-border-bottom-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
-moz-border-radius-bottomleft: 12px;
-moz-border-radius-bottomright: 12px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.memberaction_body.popupbody {
background: #000;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.body_wrapper {
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
}
.postbitlegacy .userinfo {
text-transform: uppercase;
}
.postbitlegacy .userinfo .username_container, .postbitlegacy .userinfo .rank, .postbitlegacy .userinfo .imlinks {
text-align:center;}
.postbitlegacy .userinfo .postuseravatar, .postbitlegacy .userinfo .postuseravatar img{
float:none;
text-align:center;}
.postcontainer .username_container .popupmenu a.popupctrl {
font-size:13px;}
.postingo{
background:#0A161F;
border:1px solid #000;
color:#FFF;
font-family:Tahoma, Geneva, sans-serif;
font-size:11px;
padding:5px 5px 20px 5px;
margin-top:2px;
margin-bottom: 5px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
}
.post-user{
background:#0A161F;
border:1px solid #000;
color:#FFF;
font-family:Tahoma, Geneva, sans-serif;
font-size:11px;
padding:5px 5px 5px 5px;
margin-top:2px;
margin-bottom: 5px;
-moz-box-shadow: 0 2px 6px #5F9BBF;
-webkit-box-shadow: -1px 2px 2px #5F9BBF;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;
}
.postbitlegacy .userinfo .userinfo_extra {
display: block;
position: relative;
float: left;
}
.usertitle {
padding-top: 2px;
padding-bottom: 2px;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
width: 14%;
}
.tborder {
background-color:{vb:stylevar doc_backgroundColor};
border: 1px solid #c4c4c4;
font-size: {vb:stylevar font-size};
}
Thanks in advance................Paul
yes :D
tborder may conflict might wan too if so remove it from the arcade.css and legend may as well...
jaffaman
08-30-2011, 06:59 PM
Thanks alot :)
docvader
08-31-2011, 12:46 AM
Score not saving: Missing token..
Me too, after upgrade to 2.71. tried adding the code to index.php as you suggested in post one, get this error:
Parse error: syntax error, unexpected T_DEC, expecting T_STRING or T_VARIABLE or '$' in /home/username/public_html/forum/index.php on line 2
I'm not too keen on renaming forum to index and vice versa, etc, not because I can't do it, but because I'll completely forget about this once vbulletin gets upgraded, which seems to be fairly frequently, not to mention the google site searching changes. Any other fix for this? In a way that can keep this whole process functional and simple?
Hippy
08-31-2011, 12:53 AM
Score not saving: Missing token..
Me too, after upgrade to 2.71. tried adding the code to index.php as you suggested in post one, get this error:
Parse error: syntax error, unexpected T_DEC, expecting T_STRING or T_VARIABLE or '$' in /home/username/public_html/forum/index.php on line 2
I'm not too keen on renaming forum to index and vice versa, etc, not because I can't do it, but because I'll completely forget about this once vbulletin gets upgraded, which seems to be fairly frequently, not to mention the google site searching changes. Any other fix for this? In a way that can keep this whole process functional and simple?
right after
<?php
add the code
so the top of your index.php file will look like this
<?php
// 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
the the rest of the index code will be under // end of ibProArcade
hope this helps ..
you can pm me if you get stuck..
will help you out
I am off to bed tho ATM so it will be tomorrow
enjoy
Thanks alot :)
welcome
glad to help
docvader
08-31-2011, 04:21 AM
That worked! Thanks.
(Was that code different than the first post, or did I just make a really stupid mistake....)
Appreciate it.
Hippy
08-31-2011, 08:31 AM
it was the same ..
enjoy
akxt660
09-01-2011, 10:22 PM
After i upgrading, the background color of the tables were transparent, how do i change now? Tks.
Hippy
09-01-2011, 10:24 PM
I'm not sure where you mean post a screen shot..if you can..
akxt660
09-01-2011, 10:54 PM
I'm not sure where you mean post a screen shot..if you can..
Look man:
http://img11.imageshack.us/img11/1387/ibproarcadelayouterror.jpg
Hippy
09-01-2011, 11:53 PM
in your arcade css change the background color for alt1 and alt2
to background: transparent;
well looking now at the new ARCADE.css the background was removed .. so just add that line above color:#000000;
so it looks like this
.alt1, .alt1Active
{
background: transparent;
color: #000000;
}
.alt2, .alt2Active
{
background: transparent;
color: #000000;
}
akxt660
09-02-2011, 12:27 AM
Perfect my dear. Many thanks! :)
Mickie D
09-07-2011, 05:50 PM
Hi Hippy,
I am having a style issue with my forum.
Something is conflicting in the css I am sure.
This is the CSS with your modification (fix).
@charset UTF-8;
.loginLeft #fb_loginbtn {
position:relative;
top:4px;
}
.popupbody li > a,.popupbody li > label {
background:#fff;
padding:8px 10px;
}
.forumdescription {
padding-top:3px;
}
.verticalAlign {
vertical-align:middle;
}
html[xmlns] .clearfix {
display:block;
}
* html .clearfix {
height:1%;
}
#fb_headerbox {
padding-right:5px;
}
.wgo_block {
margin:0;
}
.navbar {
-moz-border-radius-bottomleft:0!important;
-moz-border-radius-bottomright:0!important;
-webkit-border-bottom-left-radius:0!important;
-webkit-border-bottom-right-radius:0!important;
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navBG.gif) repeat-x top left;
position:relative;
height:80px;
font:12px "Trebuchet MS",Verdana,sans-serif;
color:#005393;
width:100%;
margin:0;
padding:0;
}
.announcements {
margin-top:10px;
}
.highlight {
background-image:none;
}
.navlinksBox {
text-align:center;
color:#5d5d5d;
font-size:11px;
font-weight:700;
margin-top:8px;
margin-bottom:0;
width:100%;
clear:both;
}
.forumrow .forumtitle a:link,.forumrow .forumtitle a:visited {
color:#15315f;
font-size:16px;
}
.forumrow .lastposttitle a:link,.forumrow .lastposttitle a:visited {
color:#882155;
font-weight:700;
}
.forumrow .lastposttitle a:hover {
color:#15315f;
}
#forums .lastpostby a.username {
color:#1d79a5;
}
.bodyWrap {
background:#fff;
margin:0 2px;
}
.body_wrapper {
margin:0;
padding:10px 0;
}
.above_body {
background:none;
margin:0;
padding:0;
}
.threadbit .sticky,.threadbit .nonthread,.threadbit .nonsticky,.threadbit .deleted,.threadbit .discussionrow,.threadbit .ignored {
border-top:0;
}
body {
background:#123356 url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/pageBG.gif) repeat-x top left;
width:auto;
min-width:990px;
max-width:auto;
margin:0;
}
#pageWrapper,.pageWrap {
width:auto;
margin:0 50px;
}
.pageTop,.pageWrap {
padding:0 4px;
}
#topBar {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/topBarBG.gif) repeat-x top left;
height:47px;
}
.searchBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchBG.gif) no-repeat left;
float:left;
height:31px;
padding-left:33px;
position:absolute;
top:5px;
left:2px;
}
.searchBox li {
float:left;
margin:0;
padding:0 7px 0 0;
}
.searchInputBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchInput.gif) no-repeat top left;
width:186px;
height:31px;
float:left;
}
.searchInput {
background:transparent;
border:0;
color:#959595;
width:170px;
height:31px;
line-height:31px;
margin:0;
padding:0 8px;
}
.registerButton {
position:absolute;
top:7px;
right:5px;
}
.doc_header {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/headerBG.jpg) no-repeat top left;
height:114px;
position:relative;
}
#logo {
position:absolute;
top:0;
left:0;
}
#memberBox {
float:right;
color:#f8d8d1;
padding:11px 4px 0 0;
}
#memberBox h3 {
color:#f8d8d1;
font-size:15px;
font-weight:700;
text-transform:uppercase;
margin:0;
padding:0 0 4px;
}
.memberBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxBG.png) repeat-x top left;
height:94px;
float:left;
}
.memberBoxLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxLeft.png) no-repeat top left;
height:94px;
}
.memberBoxRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxRight.png) no-repeat top right;
height:74px;
padding:10px 14px;
}
.loginBoxInput {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/loginBoxInput.gif) no-repeat top left;
width:116px;
height:22px;
}
.loginInput {
background:transparent;
border:0;
color:#a7a7a7;
height:22px;
line-height:22px;
width:106px;
font-size:12px;
margin:0;
padding:0 5px;
}
.inputPad {
padding:0 6px 0 0;
}
#memberBox label {
padding:0;
}
.memberBottom {
height:16px;
position:relative;
}
.rememberMe {
position:absolute;
top:5px;
left:3px;
}
.submitButton {
position:absolute;
top:6px;
right:0;
}
#welcomeBox {
background:#151515 url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBG.gif) repeat-x top left;
border:1px solid #040404;
padding:18px 20px;
}
.welcomeBoxBottom {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBottomBG.gif) repeat-x top left;
height:7px;
font-size:0;
margin-bottom:5px;
}
.welcomeBoxBL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBL.gif) no-repeat top left;
height:7px;
}
.welcomeBoxBR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBR.gif) no-repeat top right;
height:7px;
}
#welcomeBox h2 {
font-size:15px;
font-weight:700;
color:#fff;
text-transform:uppercase;
margin:0;
padding:0 0 8px;
}
#welcomeBox p {
color:#c6ac8d;
line-height:18px;
margin:0;
padding:0;
}
#welcomeBox a:link,#welcomeBox a:visited {
color:#ef9507;
font-weight:700;
}
#welcomeBox a:hover {
color:#9c4764;
}
#contentMain {
background:#fff url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTopBG.gif) repeat-x top left;
margin-bottom:7px;
}
.contentWrap {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBottomBG.gif) repeat-x bottom left;
}
.contentLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentLeft.gif) repeat-y top left;
}
.contentRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentRight.gif) repeat-y top right;
}
.contentTL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTL.gif) no-repeat top left;
}
.contentTR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTR.gif) no-repeat top right;
}
.contentBL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBL.gif) no-repeat bottom left;
}
.contentBR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBR.gif) no-repeat bottom right;
}
.contentBodyWrap {
padding:23px 17px;
}
#footerNav {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavBG.gif) repeat-x bottom left;
}
.footerNavLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavLeft.gif) no-repeat bottom left;
}
.footerNavRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavRight.gif) no-repeat bottom right;
padding:5px 23px 13px 0;
}
#footerNav li {
float:left;
height:32px;
line-height:32px;
font-weight:700;
font-size:15px;
padding:0 21px;
}
#footerNav a:hover {
color:#fefeff;
}
#footerLogo {
float:right;
}
#footerMain {
padding:15px 21px;
}
#footerMain .copyright a:link,#footerMain .copyright a:visited {
color:#d5d9ff;
font-weight:700;
}
a:link.backTop,a:visited.backTop {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/backTop.png) no-repeat right;
float:right;
color:#d5d9ff;
font-weight:700;
padding-right:16px;
text-transform:uppercase;
}
#toplinks,.toplinks {
text-align:left;
line-height:20px;
top:6px;
right:0;
}
.toplinks .notifications a.popupctrl {
color:#fff;
-moz-border-radius:5px!important;
-webkit-border-radius:5px!important;
}
.toplinks .notifications a.popupctrl:hover,.toplinks .nonotifications a.popupctrl:hover,.toplinks .nonotifications a.popupctrl.active,.toplinks ul.isuser li a:hover {
-moz-border-radius:5px!important;
-webkit-border-radius:5px!important;
}
.memberBox .welcomeUser {
font-weight:700;
font-size:11px;
float:left;
}
.memberBox .toplinks {
padding:2px 0 0 3px;
}
.navLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navLeft.gif) no-repeat top left;
height:80px;
}
.navRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navRight.gif) no-repeat top right;
height:80px;
padding:0 6px;
}
#navtabs li.selected ul.floatcontainer {
margin-top:5px;
}
#navtabs li.selected ul.floatcontainer a:link,#navtabs li.selected ul.floatcontainer a:visited {
line-height:27px;
height:27px;
}
.navtabs ul li:first-child {
text-indent:0;
}
.navtabs {
background:none;
padding-left:0;
}
.navtabs ul {
position:absolute;
top:44px;
left:0;
width:100%;
direction:ltr;
}
.navtabs li {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navSplit.gif) no-repeat top right;
padding-right:2px;
float:left;
}
.navtabs ul li {
border-right:0;
position:relative;
}
.navtabs li a {
height:44px;
line-height:44px;
}
.navtabs li a.navtab {
display:block;
min-width:60px;
width:auto!important;
_min-width:75px;
_width:auto!important;
text-align:center;
color:#005393;
font-size:15px;
text-decoration:none;
line-height:41px;
height:41px;
font-weight:700;
padding:2px 15px 0;
}
.navtabs li a.navtab:hover {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navBG_hover.gif) repeat-x top left;
color:#1e3648;
}
.navtabs li.selected {
color:#1e3648;
height:44px;
}
.navtabs li.selected a.navtab {
color:#1e3648;
position:relative;
top:0;
padding-top:px;
z-index:10;
}
.navtabs li.selected li a,.navbar_advanced_search li a {
text-decoration:none;
font:12px "Trebuchet MS",Verdana,sans-serif;
line-height:27px;
}
.navtabs li.selected li {
padding:0 5px;
}
.navtabs li.selected li li {
padding:0 2px;
}
.navtabs li.selected li a {
color:#d5d9ff;
font-weight:400;
padding:2px 5px;
}
.navbar_advanced_search li {
height:27px;
display:block;
clear:both;
}
.navbar_advanced_search li a:hover {
color:#1e3648;
text-decoration:none;
}
.navtabs li.selected li a:hover {
color:#fff;
text-decoration:none;
}
.navtabs li.selected .popupbody li > a {
text-indent:0;
color:#000;
padding:0 10px;
}
.navtabs li.selected li a.popupctrl {
-moz-border-radius:3px;
-webkit-border-radius:3px;
border:solid 1px transparent;
_border:none;
background:transparent url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/misc/arrow.png) no-repeat right center;
padding-right:15px;
_background-image:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/misc/arrow.gif);
color:#d5d9ff;
}
.breadcrumb {
height:38px;
position:relative;
color:#617eb4;
font-weight:700;
margin-bottom:6px;
}
.bcLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcLeft.png) no-repeat bottom left;
height:38px;
}
.bcRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcRight.png) no-repeat bottom right;
height:38px;
padding:0 16px;
}
.bcBody {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcBG.png) repeat-x bottom left;
height:32px;
padding-top:6px;
}
.breadcrumb .navbit > a,.breadcrumb .lastnavbit span {
border:1px solid transparent;
}
.breadcrumb .navbit a:link,.breadcrumb .navbit a:visited {
font-weight:400;
color:#617eb4;
}
.breadcrumb .navbit a:hover {
background:#617eb4;
color:#fff;
border:1px solid transparent;
}
#breadcrumb .searchBoxMain {
position:absolute;
top:13px;
right:6px;
float:right;
}
#breadcrumb .searchText {
line-height:26px;
}
#breadcrumb .searchBoxMain li {
float:left;
color:#393939;
margin:0;
padding:0 7px 0 0;
}
#breadcrumb .searchInputBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchInput.gif) no-repeat top left;
width:149px;
height:26px;
float:left;
}
#breadcrumb .searchInput {
background:transparent;
border:0;
color:#6a848f;
width:139px;
height:26px;
line-height:26px;
margin:0;
padding:0 5px;
}
.tcat {
height:37px;
clear:both;
margin-top:8px;
float:left;
width:100%;
font:normal 12px Tahoma,Calibri,Verdana,Geneva,sans-serif;
color:#fff;
background:#20406b url(http://www.digitalworldz.co.uk/images/buttons/newbtn_middle.png) repeat-x;
border:1px solid #253761;
-moz-border-radius-topright:5px;
-moz-border-radius-topleft:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
padding:4px 10px;
}
.tcatLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/tcatLeft.gif) no-repeat top left;
height:37px;
}
.tcatRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/tcatRight.gif) no-repeat top right;
height:37px;
}
.tcat .tcatDesc {
font-size:11px;
font-weight:400;
}
.tcat h2 {
font-size:15px;
line-height:37px;
float:left;
font-weight:700;
padding:0 0 0 16px;
}
.tcat .tcatCollapse {
float:right;
position:absolute;
top:10px;
right:10px;
}
.tcat_threadlist_controls {
float:right;
padding-right:8px;
}
.forumdisplaypopups,#forumdisplaypopups {
clear:both;
}
.tcat_threadlist_controls h6 {
height:37px;
line-height:37px;
display:block;
font-size:11px;
padding:0;
}
.forumdisplaypopups a.popupctrl,.forumdisplaypopups.popupgroup .popupmenu a.popupctrl,.postlist_popups h6 a.popupctrl,.postlist_popups.popupgroup .popupmenu h6 a.popupctrl {
background:none;
display:block;
_display:37px;
height:37px;
line-height:37px;
font-family:arial,helvetica,sans-serif;
font-weight:700;
font-size:12px;
color:#1e3648;
border:0;
float:left;
clear:right;
padding:0 7px;
}
.forumdisplaypopups a:hover.popupctrl,.forumdisplaypopups.popupgroup .popupmenu a:hover.popupctrl,.postlist_popups h6 a:hover.popupctrl,.postlist_popups.popupgroup .popupmenu h6 a:hover.popupctrl {
border:0;
color:#1e3648;
text-decoration:underline;
}
#postlist_popups a,.postlist_popups a {
color:#1e3648;
_border:none;
}
#postlist_popups a:hover,.postlist_popups a:hover {
color:#1e3648;
text-decoration:underline;
}
#postlist_popups ul li {
color:#4e4e4e;
}
#postlist_popups ul li a,.postlist_popups ul li a {
color:#4e4e4e;
_border:none;
}
#postlist_popups ul li a:hover,.postlist_popups ul li a:hover {
color:#4e4e4e;
text-decoration:underline;
}
#forumdisplaypopups ul a,.forumdisplaypopups ul a {
color:#3e3e3e;
}
.thead_bar .theadrow {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
display:block;
width:100%;
float:left;
position:relative;
line-height:24px;
font-size:12px;
border:1px solid #253761;
color:#d5d9ff;
}
.thead_bar .padding {
padding-left:12px;
}
.thead_bar .forumhead span.forumlastpost {
width:23%;
}
.thead_bar {
float:left;
position:relative;
width:100%;
display:block;
}
.thead_bar .forumhead .forumtitle {
width:76%;
}
.thead_bar .foruminfo {
width:53%;
min-width:30%;
float:left;
clear:right;
}
.thead_bar .foruminfo .forumdata {
width:100%;
_width:99%;
padding:0;
}
.thead_bar .forumstats,.thead_bar .forumstats_2 {
display:block;
float:left;
clear:right;
width:16%;
margin-right:2%;
}
.thead_bar .foruminfo .forumdata .datacontainer {
float:left;
width:86%;
padding:0 0 0 68px;
}
.thead_bar .forumactionlinks {
width:5%;
display:block;
float:left;
clear:right;
}
.thead_bar .forumactionlink {
display:block;
width:18px;
overflow:hidden;
float:right;
clear:left;
background:transparent none no-repeat;
position:relative;
}
.thead_bar .forumstats li,.thead_bar .forumstats_2 li {
font-size:12px;
text-align:right;
padding-right:20px;
display:block;
}
.thead_bar .forumlastpost {
display:block;
float:left;
clear:right;
}
.thead_bar .theadrow .forumlastpost {
width:22%;
}
.forumbitBody {
padding-right:2px;
clear:both;
}
.threadlist {
margin-top:0;
}
#threadlist .threadlisthead {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
display:block;
width:100%;
float:left;
position:relative;
font-size:12px;
border:1px solid #253761;
color:#d5d9ff;
font-weight:400;
margin:0;
padding:4px 0;
}
.postbit .posthead,.postbitlegacy .posthead,.eventbit .eventhead {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
clear:both;
display:block;
float:left;
width:100%;
font:normal 12px "Trebuchet MS",Verdana,sans-serif;
border:1px solid #253761;
color:#d5d9ff;
font-weight:400;
margin:-1px -1px 0;
padding:4px 0;
}
.postbit .posthead .date,.postbitlegacy .posthead .date,.eventbit .eventhead .date {
padding-left:17px;
}
.wgo_subblock .whatspace {
padding-left:55px;
}
.wgo_subblock .whaticon {
position:absolute;
top:25%;
left:10px;
}
#postlist .userinfo {
padding-top:10px;
}
.username_container {
text-align:center;
padding:2px 0;
}
.username_container .username strong {
font-size:16pt;
font-weight:400;
}
.usertitle,.rank {
text-align:center;
}
.usercenter {
padding-top:5px;
text-align:center;
}
.post_field {
background:#fff;
color:#4d5153;
border:1px solid #bcb6ad;
margin-top:2px;
text-align:left;
padding:3px 3px 3px 10px;
}
.post_field strong {
color:#ea7904;
}
.post_field dt {
color:#ea7904;
font-weight:700;
}
.postbit,.postbitlegacy,.eventbit {
margin-bottom:0;
}
.postfoot {
border:1px solid #d3dadb;
border-bottom:0;
border-left:0;
}
.postfootWrap {
border-right:1px solid #d3dadb;
}
#thread_info a.collapse {
position:absolute;
top:9px;
}
.bottomBar {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bottomBarBG.gif) repeat-x top left;
height:4px;
font-size:0;
clear:both;
}
#notices .restore {
border:1px solid #cfbe7f;
color:#3c3a22;
-moz-border-radius:5px!important;
-webkit-border-radius:5px!important;
padding:10px;
}
h1.header,h2.header {
text-transform:capitalize;
}
#searchtypeswitcher {
border-bottom:4px solid #5a1f51;
}
#searchtypeswitcher li a {
background-color:#89337c;
color:#FFF;
}
.tborder {
border:1px solid #c4c4c4;
}
.tcat a:hover,.tcat a:active,.tcat_ahover {
text-decoration:underline;
}
td.thead,th.thead,div.thead {
padding:4px;
}
.pagenav td {
padding:2px 4px;
}
.tcat .shade,.thead .shade,.tfoot .shade {
color:#DDD;
}
.fieldset {
border:1px solid #c4c4c4;
margin:0 2px;
padding:5px;
}
.fieldset,.fieldset td,.fieldset p,.fieldset li {
font-size:11px;
}
.memberBox .toplinks ul.isuser .popupbody li,.formsubmit label {
color:#3a3a3a;
}
zz.toplinks #fb_loginbtn,.lastPostIMG,.cb_cookieuser_navbar {
position:relative;
top:2px;
}
img,#postlist_popups .popupmenu:hover a.popupctrl,#postlist_popups .popupmenu:hover .popupctrl a.popupctrl.active,.postlist_popups .popupmenu:hover a.popupctrl,.postlist_popups .popupmenu:hover .popupctrl a.popupctrl.active {
border:0;
}
.forumrow .forumtitle a:hover,#forums .lastpostby a.username:hover {
color:#882155;
}
.pageWrap,.wgo_subblock {
position:relative;
}
.searchBox ul,#memberBox ul,.memberBox ul,#footerNav ul,#breadcrumb .searchBoxMain ul {
list-style:none;
margin:0;
padding:0;
}
#memberBox li,.memberBox li,#toplinks .isuser,.thead_bar .theadrow .forumdata {
float:left;
}
#footerNav a:link,#footerNav a:visited,#footerMain .copyright,#threadlist .threadlisthead a,#threadlist .threadlisthead a:hover,#posts .posthead a:link,#posts .posthead a:visited,#posts .posthead a:hover,#posts .posthead .time,#posts .nodecontrols {
color:#d5d9ff;
}
#footerMain .copyright a:hover,a:hover.backTop {
color:#ed8a06;
}
#toplinks .welcomelink,.tcat .forumtitle {
font-weight:700;
}
.navbar a,.navbar_advanced_search li a {
color:#005393;
}
.navbar a:hover,.tcat a:link,.tcat a:visited {
color:#1e3648;
}
.navtabs li li,.bbcode_container .bbcode_quote_container,.forum_info_block,.forum_i nfo_form,#sidebar_home #sidebar_container li li {
background:none;
}
.navtabs li.selected li:hover a.popupctrl.active,.navtabs li.selected li a.popupctrl.active,.navtabs li.selected li a:hover.popupctrl,.block .searchlisthead,.block .searchlisthead a {
color:#fff;
}
#searchtypeswitcher li.selected a,#searchtypeswitcher li a:hover {
background-color:#5a1f51;
}
.tcat a:link,.tcat_alink,.tcat a:visited,.tcat_avisited,.pagenav a {
text-decoration:none;
}
.alt1,.alt1Active,.alt2,.alt2Active {
color:#000;
}
http://www.digitalworldz.co.uk/arcade.html
Hippy
09-07-2011, 06:04 PM
it's your style..
open up your skin/skin_arcade.php and skin_v3arcade.php
and do a search and replace
find all tcat and replace with blockhead..
will fix ya up
--------------- Added 1315426185 at 1315426185 ---------------
also just noticed the style your using has alt1 and alt2
in that style you should remove the alt1 and alt2 .. but your other styles leave the arcade.css contents the same when you move it ..
you can also remove all the tact stuff .. it will no longer be needed after editing those 2 style files..
Mickie D
09-09-2011, 06:39 PM
it's your style..
open up your skin/skin_arcade.php and skin_v3arcade.php
and do a search and replace
find all tcat and replace with blockhead..
will fix ya up
--------------- Added 1315426185 at 1315426185 ---------------
also just noticed the style your using has alt1 and alt2
in that style you should remove the alt1 and alt2 .. but your other styles leave the arcade.css contents the same when you move it ..
you can also remove all the tact stuff .. it will no longer be needed after editing those 2 style files..
Thanks so much hippy that looks better already.
When you say remove the alt1 and alt2, is that from the additional css that I have made for that style?
Thanks again, that is top quality support mate!
Regards
Mick
Hippy
09-09-2011, 06:48 PM
yes your moving the contents from the arcade.css corrrect to the additional css
well you custom style uses alt1 and alt2 so I would remove the one from the arcade.css before moving itto the additional css :)
and your more than welcome.
I am glad it worked out..
remember this on your other styles keep the alt1 and alt2 when moving the contents from the arcade .css to the additional css ..;)
enjoy
tidus78
09-13-2011, 08:25 PM
I upgraded to 2.7.1 becouse not install more games but ....images of the games have disappeared and I still can not install new games ......sigh sobh help
http://www.console-planet.it/arcade.php
--------------- Added 1315949765 at 1315949765 ---------------
EDIT
games are disapperead....:(
Malcolm-X
09-16-2011, 01:05 PM
I attach the screen picture after playing the game.
What is the problem?
Thanks for your help
Hippy
09-16-2011, 06:57 PM
is it all games >?
did you add the index edit ? after upgrading to vb4.1.5 ?
can be a few things..
contact me on msn my contact info is in my profile..
goxy63
09-18-2011, 08:46 AM
Hi, can you share with us how did you menage this?
Check picture, its one of yours in this thread which I edited to show...
http://img825.imageshack.us/img825/6189/arcade1.jpg
1. how and where to do a change to place desired number of latest scores
2. Is there any way to have same spacing on left and right side?
Thank you
Hippy
09-18-2011, 11:30 AM
1st.. Latest Arcade Score edit change it from 1 to 5
open up your arcade.php and do the following
This was posted some wheres here years ago ..
I forgot who posted it
but anyway
arcade.php
Find:
PHP Code:
//latest score and champions
//Added g.decpoints after g.title
$DB->query("SELECT s.*, g.gtitle, g.decpoints, c.password FROM ibf_games_scores AS s, ibf_games_list AS g, ibf_games_cats AS c WHERE s.gid=g.gid AND g.gcat=c.c_id AND g.active=1 AND trim(password)='' ORDER BY datescored DESC LIMIT 0,5");
$newest_score = $DB->fetch_row();
//$newest_score['score'] = $this->arcade->t3h_format($newest_score['score']);
// Replaced
$newest_score['score'] = $this->arcade->do_arcade_format($newest_score['score'],$newest_score['decpoints']);
if ($this->arcade->settings['use_announce'])
{
$announce = $this->arcade->settings['announcement_parsed'];
$tourneyinfo['announcement'] = $this->html->generalbox($ibforums->lang['arcade_announcements'], $announce);
}
else
$tourneyinfo['announcement'] = "";
$latestinfo = $ibforums->lang['newest_score'];
$latestinfo = preg_replace("/<% NAME %>/i" , $newest_score['name'] , $latestinfo);
$latestinfo = preg_replace("/<% SCORE %>/i" , $newest_score['score'] , $latestinfo);
$latestinfo = preg_replace("/<% GAME %>/i" , $newest_score['gtitle'] , $latestinfo);
Replace with:
PHP Code:
//latest score and champions
//Added g.decpoints after g.title
$newest_score_query = $DB->query("SELECT s.*, g.gtitle, g.decpoints, c.password FROM ibf_games_scores AS s, ibf_games_list AS g, ibf_games_cats AS c WHERE s.gid=g.gid AND g.gcat=c.c_id AND g.active=1 AND trim(password)='' ORDER BY datescored DESC LIMIT 0,5");
while ($newest_score = $DB->fetch_row($newest_score_query))
{
$newest_score['score'] = $this->arcade->do_arcade_format($newest_score['score'],$newest_score['decpoints']);
if ($this->arcade->settings['use_announce'])
{
$announce = $this->arcade->settings['announcement_parsed'];
$tourneyinfo['announcement'] = $this->html->generalbox($ibforums->lang['arcade_announcements'], $announce);
}
else
$tourneyinfo['announcement'] = "";
$tmplatestinfo = $ibforums->lang['newest_score'];
$tmplatestinfo = preg_replace("/<% NAME %>/i" , $newest_score['name'] , $tmplatestinfo);
$tmplatestinfo = preg_replace("/<% SCORE %>/i" , $newest_score['score'] , $tmplatestinfo);
$tmplatestinfo = preg_replace("/<% GAME %>/i" , $newest_score['gtitle'] , $tmplatestinfo);
$latestinfo[] = $tmplatestinfo;
$this->arcade->make_links($newest_score['gid'] , $newest_score['gtitle']);
$click_links[] = $this->arcade->links['click'];
}
$viewerav = "";
$this->arcade->links['click'] = $click_links;
Find:
PHP Code:
//header
$this->arcade->make_links($newest_score['gid'] , $newest_score['gtitle']);
$viewerav = "";
Replace with:
PHP Code:
//header
//$this->arcade->make_links($newest_score['gid'] , $newest_score['gtitle']);
//$viewerav = "";
skin_Arcade.php im am using the blockstyle (check in our arcade) so this modification will only work if you are using also the blockstyle.
Edit: skin_v3Arcade.php is the same. Do the same steps.
Find (in the function start()):
PHP Code:
$totalstext = $totalstext . $ibforums->lang['infobox_title7'];
Add below:
PHP Code:
for ($i = 0, $count = count($latestinfo); $i < $count; $i++)
{
$latestscores .= "<tr>
<td align=\"left\">
" . $latestinfo[$i] . "<br />
</td>
<td align=\"right\">
" . $clicktoplay['click'][$i] . "
</td>
</tr>";
}
Find (in the "return <<<EOF" part):
PHP Code:
<tr>
<td align="left">
{$latestinfo}<br />
</td>
<td align="right">
{$clicktoplay['click']}
</td>
</tr>
Replace with:
PHP Code:
{$latestscores}
2nd
the spaces may look even there but they aren't ..
I have tried for a long time to make it even with out luck..
sorry.
enjoy
goxy63
09-18-2011, 12:36 PM
Thanks
Thanks
Thanks
it works great :)
Now maybe I ask to much, but here it is :o
Check attached pic:
http://img535.imageshack.us/img535/9725/problemi.gif
Within arcade I got this problem (problem is only within arcade pages) that my chatbox (MGC chatbox) is as you can see way above arcade, that spacing is looking like sh**t that would be my last "problem" with arcade
Thank you:)
Hippy
09-18-2011, 12:41 PM
send me a link to your site .. via pm and I will see what is causing the issue
goxy63
09-18-2011, 09:34 PM
Thanks once again
All of my troubles were fixed with ur help :)
https://vborg.vbsupport.ru/showthread.php?p=2087507#post2087507
HeLLCiTo
09-20-2011, 06:05 PM
in your arcade css change the background color for alt1 and alt2
to background: transparent;
well looking now at the new ARCADE.css the background was removed .. so just add that line above color:#000000;
so it looks like this
.alt1, .alt1Active
{
background: transparent;
color: #000000;
}
.alt2, .alt2Active
{
background: transparent;
color: #000000;
}
where is arcade.css, not in the folder Arcade
Hippy
09-20-2011, 06:38 PM
in your style templates
murrtex
09-21-2011, 11:25 AM
Hello Hippy,
I click submit score button but it doesn't work, there is no error , nothing happens, just swf becomes black color.
What should I do? thanks
my version: vbulletin 4.1.5
Edit: I changed index.php it's okey now.
Hippy
09-21-2011, 06:31 PM
glad you got it figured out ...
HeLLCiTo
09-30-2011, 08:22 PM
Hello Hippy,
finally found the file Arcade.css, I added the changes now I show you a snapshot of how the arcade are
http://img40.imageshack.us/img40/4738/sshot1ac.png
how I can change the background #38609D?
thanks very much
Hippy
09-30-2011, 09:05 PM
alt1 and alt 2 in the css..
HeLLCiTo
10-01-2011, 09:10 AM
alt1 and alt 2 in the css..
modifying arcade.css alt1 or alt2 only changes the color of the font but not the background
Hippy
10-01-2011, 12:42 PM
oh your using the latest css arcade
in alt1 and alt2 add above color
example..
.alt1, .alt1Active
{
background: #38609D;
color: #000000;
}
.alt2, .alt2Active
{
background: #38609D;
color: #000000;
HeLLCiTo
10-01-2011, 04:37 PM
oh your using the latest css arcade
in alt1 and alt2 add above color
example..
.alt1, .alt1Active
{
background: #38609D;
color: #000000;
}
.alt2, .alt2Active
{
background: #38609D;
color: #000000;
thanks very much :up:
infnity8x3
10-01-2011, 04:50 PM
I have been getting this since the update
Warning: Missing argument 3 for skin_v3Arcade::copyright(), called in [path]/arcade/modules/mod_modcp.php on line 567 and defined in [path]/arcade/skins/skin_v3Arcade.php on line 1880
IDK cause i never messed with the copyright.
Hippy
10-01-2011, 04:55 PM
thanks very much :up:
welcome
--------------- Added 1317491826 at 1317491826 ---------------
I have been getting this since the update
IDK cause i never messed with the copyright.
you may of missed a file replacing them .. try and reupload ALL files .. then re import the xml file in the admincp and allow over wirte..
should fix ya up..
infnity8x3
10-01-2011, 05:28 PM
Fresh re-install still same problem made no file edits what so ever. I get this error when I got to the arcademodcp and try to edit score comments. That is the msg that pops up when i click the edit button.
Warning: Missing argument 3 for skin_v3Arcade::copyright(), called in [path]/arcade/modules/mod_modcp.php on line 567 and defined in [path]/arcade/skins/skin_v3Arcade.php on line 1880
This is my line 567 in mo_modcp.php
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']);
and here is line 1880 in skin_v3Arcade.php well the whole function.
function copyright($version,$country,$BFL) {
//
// if you had BRANDING FREE before ibProArcade v2.7.1+
// please contact me via mail -> ibproarcade@gmail.com
// to get the new instructions for BRANDING FREE - more easy now!
// !! DO NOT CHANGE THE CODE IN HERE ANYMORE !!
//
$text = "
<div align='center' style='font-size: 8pt;'>
ibProArcade v{$version}<br />";
if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version © MrZeropage (<a href='http://www.vbulletin-germany.org/forumdisplay.php?f=28' target='_blank' title='www.vbulletin-germany.org'>www.vbulletin-germany.org</a>)<br />"; }
else { $text = $text . "Extended vBulletin-Version © MrZeropage (<a href='https://vborg.vbsupport.ru/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }
$text = $text . "</div><br />";
return ($BFL ? "" : $text);
}
Ok... nice I figured it out. Commenting out line 567 in mod_modcp.php
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']);
Fixed the error as a side effect it also removed branding. I don't think it really matters much because it only effects an area moderators can see. But if this bug effects other sections of the hack then the dev may want to look into it.
Hippy
10-01-2011, 07:03 PM
I still think some files are not getting over writen'
does it do the same thing for the other skin ?
skin_arcade.php? it must
because the line in your mod_modcp.php file should be
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1'],$main->BFL);
instead of commenting this line out
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']);
change it to
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1'],$main->BFL);
infnity8x3
10-01-2011, 08:55 PM
That is a proper working fix thanks. I for the sake of trying to save my sanity re re downloaded the mod from the release thread. Opened it and went right to mod_modcp.php and the edit has to be done there to. So I know i overwrote everything this is actually a small bug in the code.
https://vborg.vbsupport.ru/showthread.php?t=101554
Hippy
10-01-2011, 09:01 PM
it didnt over write if thats the line in the file you posted...
infnity8x3
10-01-2011, 09:31 PM
Thank you for your help. And I guess this problem only pertains to me... But.
http://www.youtube.com/watch?v=mxMHZSNxybs
Hippy
10-01-2011, 09:50 PM
dude sorry I did PM zeropage about that I found that the day released ...
and I fixed my file and pmed him about it ...
your 100% correct that line should of been the same as the otehr line .. simply change it to the above , whatI posted and your fixed ...
Hippy
10-13-2011, 12:27 AM
been doing some testing .. with this issue of being logged out if you don't have remember me checked when logging to the forum.
A little info on what I did
I completely removed holdesession.php
and anything and everything to do with holdsession.php in the files, skins etc and also in one of the ibProArcade plugins
I logged to the board with remember me not checked..
I played alot of games.. paused for few min, finished the game, submitted score .. no issues
played long games..10 15 min. played short games..
worked 100% and the best part is no errors in the apache log file..
and you don't get logged out of the arcade /forum
works with or with out remember me checked..
I think now after this testing that the holdsession is no longer needed with vb4.08 and newer.
tested on vb4.1.7
going to test some more and consult with a few..
will keep ya posted
Hippy
10-16-2011, 11:16 PM
still working with out a hitch..
with out editing every file .. just delete everything in your holdsession.php and upload it ..
yes it will be blank..
but it's just about the same this is how I stumbled across this..
anyone wants to help test this out let me know..
been doing some testing .. with this issue of being logged out if you don't have remember me checked when logging to the forum.
A little info on what I did
I completely removed holdesession.php
and anything and everything to do with holdsession.php in the files, skins etc and also in one of the ibProArcade plugins
I logged to the board with remember me not checked..
I played alot of games.. paused for few min, finished the game, submitted score .. no issues
played long games..10 15 min. played short games..
worked 100% and the best part is no errors in the apache log file..
and you don't get logged out of the arcade /forum
works with or with out remember me checked..
I think now after this testing that the holdsession is no longer needed with vb4.08 and newer.
tested on vb4.1.7
going to test some more and consult with a few..
will keep ya posted
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.