vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - v3 Arcade - Professional vBulletin Gaming (vB4) (https://vborg.vbsupport.ru/showthread.php?t=253211)

Gemma 04-14-2013 10:44 AM

Quote:

Originally Posted by LLent (Post 2416201)
yes they did see what happened is we made a move to a bigger server i wonder if its possible if things are corupt i get this when i try importing games

Fatal error: Call to a member function read() on a non-object in /home//public_html//v3arcade_admin.php on line 1354

so in your opinion do i have to un install and re install this i would hate to lose all my members scores and that ....

No need to uninstall anything, just re-upload all the files. Also, if you're getting errors importing games make sure all the correct folders are CHMOD 777 (admincp/games, images/arcade etc) and check with your host that mod_security isn't running on the server.

highlander_RD 05-04-2013 04:31 PM

Sorry, I installed v3 Arcade - Professional vBulletin Gaming (vB4) - Mod Version: 2.0.3A on vB4.2.1 Suite.
Pre-installed games are working fine and save scores.
Mochi new games do not record scores in vB database.
I receive a standard error message about permissions denied and a bizarre text above headers "OR != 1 OR" (I am the userid=1).
I extended session timeout from 900 to 9000. I have no adblocker.
I have crossdomain.xml in my main forum directory, and from ACP I already put on v3Arcade bridgeing options my secret key and publisher ID.
On my server root I also put mochi.html.
From ACP, adding new games, I can browse Mochi games, so i suppose I can connect to Mochi with full permissions.
My server is new:
Linux 3.2.0-41-generic #66-Ubuntu SMP Thu Apr 25 03:27:11 UTC 2013 x86_64
PHP Version 5.3.10-1ubuntu3.6
Hope you can suggest me a solution to overcome this malfunction.
Thank you.

Gemma 05-04-2013 04:39 PM

Quote:

Originally Posted by highlander_RD (Post 2419931)
Sorry, I installed v3 Arcade - Professional vBulletin Gaming (vB4) - Mod Version: 2.0.3A on vB4.2.1 Suite.
Pre-installed games are working fine and save scores.
Mochi new games do not record scores in vB database.
I receive a standard error message about permissions denied and a bizarre text above headers "OR != 1 OR" (I am the userid=1).
I extended session timeout from 900 to 9000. I have no adblocker.
I have crossdomain.xml in my main forum directory, and from ACP I already put on v3Arcade bridgeing options my secret key and publisher ID.
On my server root I also put mochi.html.
From ACP, adding new games, I can browse Mochi games, so i suppose I can connect to Mochi with full permissions.
My server is new:
Linux 3.2.0-41-generic #66-Ubuntu SMP Thu Apr 25 03:27:11 UTC 2013 x86_64
PHP Version 5.3.10-1ubuntu3.6
Hope you can suggest me a solution to overcome this malfunction.
Thank you.

The crossdomain.xml goes in your server root

Nirjonadda 05-04-2013 04:44 PM

Please any update for vB 4.2.1 Can auto add to Navigation Manager?

K4GAP 05-06-2013 05:27 AM

Where do I adjust the color of the tabs as shown in image below?

https://vborg.vbsupport.ru/external/2013/05/45.png

Gemma 05-06-2013 11:43 AM

Quote:

Originally Posted by GaryT (Post 2420160)
Where do I adjust the color of the tabs as shown in image below?

http://www.livinginkentucky.com/file...cadescreen.png

If I remember correctly it uses the same css as the tabs in MEMBERINFO? You may need to make a new class for tabs in v3ARCADE_MAIN, then make a copy of the code under /* LIGHT-TABS */ in vbulletin.css

For example, open v3ARCADE_MAIN and search for <dl class="tabslight"> and rename it <dl class="arcade_tabslight">

Then in vbulletin.css search for /* LIGHT-TABS */ and make an exact copy of all the code in that section, rename any references of tabslight to arcade_tabslight

You should then be able to locate the code for colours and change it accordingly

K4GAP 05-06-2013 05:43 PM

Quote:

Originally Posted by Gemma (Post 2420228)
If I remember correctly it uses the same css as the tabs in MEMBERINFO? You may need to make a new class for tabs in v3ARCADE_MAIN, then make a copy of the code under /* LIGHT-TABS */ in vbulletin.css

For example, open v3ARCADE_MAIN and search for <dl class="tabslight"> and rename it <dl class="arcade_tabslight">

Then in vbulletin.css search for /* LIGHT-TABS */ and make an exact copy of all the code in that section, rename any references of tabslight to arcade_tabslight

You should then be able to locate the code for colours and change it accordingly

Sounds almost to simple but, makes perfect sense. I'll give it a go and report back.

Thanks'

K4GAP 05-06-2013 06:11 PM

I have different instances of tabslight but none of just that phrase alone. For example ....

dl.tabslight

tabslight_border.borderWidth

tabslight_border.units

tabslight_size

tabslight_size.width

Change them all anyway?

Gemma 05-07-2013 07:25 AM

Quote:

Originally Posted by GaryT (Post 2420323)
I have different instances of tabslight but none of just that phrase alone. For example ....

dl.tabslight

tabslight_border.borderWidth

tabslight_border.units

tabslight_size

tabslight_size.width

Change them all anyway?

Do it this way, add this to your additional.css

Code:

/* LIGHT-TABS */

dl.arcade_tabslight {
    border-bottom:solid {vb:stylevar tabslight_border.borderWidth}{vb:stylevar tabslight_border.units} {vb:stylevar mid_border.borderColor};
    padding-{vb:stylevar left}:{vb:math {vb:stylevar padding} * 2};
    margin-bottom:1em;
    height:{vb:math {vb:stylevar tabslight_size.height} + {vb:stylevar tabslight_border.borderWidth}};
    margin-top:{vb:math {vb:stylevar padding}*1.5};
}

dl.arcade_tabslight dt {
    display:none;
}

dl.arcade_tabslight dd {
    float:{vb:stylevar left};
}

dl.arcade_tabslight dd a {
    font-size:{vb:stylevar small_fontSize};
    font-weight:bold;
    color:{vb:stylevar body_color};
    text-decoration:none;
    text-align:center;

    padding:0 {vb:stylevar padding};
    min-width:{vb:stylevar tabslight_size.width}{vb:stylevar tabslight_size.units};
    height:{vb:stylevar tabslight_size.height}{vb:stylevar tabslight_size.units};
    line-height:{vb:stylevar tabslight_size.height}{vb:stylevar tabslight_size.units};
    display:block;

    border:{vb:stylevar tabslight_border};
    background-color:{vb:stylevar blocksubhead_background.backgroundColor};

    margin-{vb:stylevar left}:-{vb:stylevar tabslight_border.borderWidth}{vb:stylevar tabslight_border.units};
    margin-bottom:-{vb:stylevar tabslight_border.borderWidth}{vb:stylevar tabslight_border.units};

    -moz-border-radius-top{vb:stylevar left}:5px;
    -moz-border-radius-top{vb:stylevar right}:11px;
    -webkit-border-top-{vb:stylevar left}-radius:3px;
    -webkit-border-top-{vb:stylevar right}-radius:11px;
    border-top-{vb:stylevar left}-radius:3px;
    border-top-{vb:stylevar right}-radius:11px;
}

html>/**/body dl.tabslight dd.selected a,
html>/**/body dl.tabslight dd.selected a:hover {
    position:relative;
    border-bottom: {vb:stylevar tabslight_border.borderWidth}{vb:stylevar tabslight_border.units} {vb:stylevar tabslight_border.borderStyle} transparent;
    background:{vb:stylevar tabslight_selected_background};
}
* dl.tabslight dd.selected a, * dl.tabslight dd.selected a:hover {
    border-bottom: {vb:stylevar tabslight_border.borderWidth}{vb:stylevar tabslight_border.units} {vb:stylevar tabslight_border.borderStyle} transparent;
    background:{vb:stylevar tabslight_selected_background};
}

dl.arcade_tabslight dd a:hover {
    color:{vb:stylevar linkhover_color};
    background:{vb:stylevar tabslight_selected_background};
}

Then within that code find this line
Code:

background-color:{vb:stylevar blocksubhead_background.backgroundColor};
Change the {vb:stylevar blocksubhead_background.backgroundColor}; to whatever color you want ie black;, #000; or #000000; etc then save the template.

Make sure you change <dl class="tabslight"> to <dl class="arcade_tabslight"> in v3ARCADE_MAIN

That should work.

highlander_RD 05-07-2013 08:53 AM

Have you got any idea why in my vb4.2.1 the v3arcade navtab links overlap main forum links? (If I click on Arcade navtab, is clicked the forum navtab either).

http://89.31.75.92/forum.egcommunity....it/arcade.php

Maybe the "Arcade Navbar Link" plugin doesn't assign an ID to the tab code <li class="selected"><a class="navtab" ....></li>
that should be <li id="tab_arcade" class="selected"> .... ?

Thanks


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

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02037 seconds
  • Memory Usage 1,758KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete