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)
-   -   Major Additions - [DBTech] vBArcade v2 (vB4) (https://vborg.vbsupport.ru/showthread.php?t=273181)

DragonByte Tech 05-27-2013 01:14 PM

Grant your other administrators Can Administer vBArcade via the Administrator Permissions page on the superadmin account.

Fillip

John Lester 05-27-2013 07:24 PM

Ty Filip :) Forgot all about that particular area :D

albibak 05-28-2013 06:49 PM

Fillip, this mod look good.
I'll test it soon.

But a question before (I didn't read all the pages, so, sorry if you answered), all the flash game are compatible with the mod?
I can download all the flash game I want?

DragonByte Tech 05-28-2013 06:51 PM

In theory, yes, but not all flash games will send scores.

There are a few game providers in the Lite version that has games that supports scores. vBArcade will do its best to support scores.

Fillip

kartheekb 08-06-2013 09:13 AM

does it effects site performance?

does this works well on shared hosting?

DragonByte Tech 08-07-2013 01:24 PM

That would depend on the particular server you're on, but generally it should not affect the performance of the site :)


Fillip

dog-tag 09-20-2013 01:32 AM

Everything is working on my end except for one thing -

After I installed re-imported all the old v3arcade games, but I don't see how to import all the old scores.

I'm pretty sure this question would have been answered already, but I can't find it. Cheers for any help Filip, DragonByte Tech always produce great stuff :)

John Lester 09-21-2013 04:34 PM

Not that it is a huge deal at this point, but none of my scores are being kept still :D I'll have more time next weekend to fiddle with it :D

DragonByte Tech 09-21-2013 06:23 PM

Quote:

Originally Posted by dog-tag (Post 2446815)
Everything is working on my end except for one thing -

After I installed re-imported all the old v3arcade games, but I don't see how to import all the old scores.

I'm pretty sure this question would have been answered already, but I can't find it. Cheers for any help Filip, DragonByte Tech always produce great stuff :)

Are you sure they were not imported along with the games?

Quote:

Originally Posted by John Lester (Post 2447114)
Not that it is a huge deal at this point, but none of my scores are being kept still :D I'll have more time next weekend to fiddle with it :D

Are you sure the games support local scoring and that scoring is enabled in the game settings?


Fillip

dog-tag 09-26-2013 02:19 AM

No the scores didn't update, but the games did import fine.

Is there anyway to re-import everything? Maybe it needs another run?

I personally don't mind, but my members have lost all their trophies and it would be nice to put them back. Does v3arcade need to be permanently un-installed for the old trophies to appear?

bhalkum 10-09-2013 05:56 AM

1 Attachment(s)
After updating to 4.2.2 my arcade throws a ton of errors. See the attachments.

DragonByte Tech 10-09-2013 02:03 PM

We are currently experiencing a high volume of support tickets due to a number of issues arising from the vBulletin 4.2.2 update.

Until we announce official support for vBulletin 4.2.2, please remain on 4.2.1 or lower.

Thank you for your patience, and we apologise for the inconvenience.

Fillip

bhalkum 10-10-2013 05:47 PM

Found the fix on the vbulletin.com forums

Quote:

Some further information on error displays in 4.2.2 ;

As part of the php compliance changes, error reporting in 4.2.2 was fixed to take account of the new strict & deprecated errors added in php 5.x
A side effect of this is that old (existing) errors that were not showing up may also now get displayed.

All of the errors we encounted during testing were corrected, but there may be more.
If you encounter such an error, then please log it in the vB4 Jira project, so we are aware of it.


If you need to disable error displays, there are several methods, depending on your circumstances and technical ability.

1. Add this line to your in your php.ini file (production sites should run like this anyway)
Code:

display_errors = Off


2. If you cannot access your php.ini file, add this line near the top of your config.php
Code:

ini_set('display_errors', 'Off');


3. Use the option added in 4.2.2 to suppress messages if you have products or hooks in use that still generate errors.

Goto : Settings > Options > Plugin/Hook System and then set the "PHP Compatability" setting to 'Yes'.

This will change the error reporting options within vBulletin on the first hook that is run.
If you have vBulletin Suite (i.e. Blogs / CMS) or you have the Panjo Product enabled, this setting will pretty much disable the Strict & Deprecated messages anywhere.
This is because all three of those products use the "init_startup" hook.

If you dont actually have any of those running, you can create a dummy plugin yourself - use the "init_startup" hook, and just put a comment in the php section.
Code:

// Dummy Hook //

. This will cause the option to suppress errors after init_startup has been called (which is at the start of almost all pages)


4. This is for those who feel comfortable with editing files.

In class_core.php locate lines 5683-5685
Code:

case E_NOTICE:
// Just ignore these completely //
break;

Add lines for Deprecated and/or Strict errors as required ;

Code:

case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;

This will bypass the additional error reporting.

bhalkum 10-10-2013 05:48 PM

^ After that, no more arcade issues.

ozzy47 10-10-2013 06:00 PM

Just a quick note, that just hides the errors, your mods stool should be updated.

bhalkum 10-10-2013 06:02 PM

Oh yea, def. But with the errors hid its still usable, which is good.

whitey92lx 10-11-2013 12:15 PM

Here's my error messages:

Quote:

Warning: Only variables should be passed by reference in ..../arcade.php on line 98

Warning: Only variables should be passed by reference in ..../arcade.php on line 98

Warning: Only variables should be passed by reference in ..../arcade.php on line 98

Warning: Only variables should be passed by reference in ..../arcade.php on line 98

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

Warning: Only variables should be passed by reference in ..../dbtech/vbarcade/functions_arcade.php on line 468

ozzy47 10-11-2013 01:15 PM

Go to their site and get the files from there, they have been patched.

whitey92lx 10-11-2013 01:49 PM

I'm only seeing v2.0.2 which would be the current version I am running.

ozzy47 10-11-2013 01:59 PM

That is correct, I said patch, not a new version. Patch means files have been updated.

whitey92lx 10-11-2013 02:05 PM

Actually you said files, that have been patched.. so In my mind Im looking for an attachment.

I will check for the patch instructions.

Thanks!

ozzy47 10-11-2013 02:55 PM

There really is no instructions, upload the files and just to be safe, import the XML. :)

DragonByte Tech 10-11-2013 09:46 PM

Update

Hotfix: PHP 5.4 Compatibility fixes


This does not guarantee the mod is error free on PHP 5.4, but it will take care of the reported errors. Thank you all for your reports :)



Fillip

jaffaman 10-12-2013 10:33 PM

Thanks for the update.

kylek 10-21-2013 06:55 PM

Fresh install of vbarcade 2.0.2 to vb 4.2.2

When you go to admincp - vbarcade:

vbarcade - import games:

Warning: Only variables should be passed by reference in ..../admincp/arcade_admin.php on line 1422

vbarcade - new permissions:

Warning: Only variables should be passed by reference in ..../admincp/arcade_admin.php on line 888

And you cant copy or create any new permissions as it shows the create new game stuff instead of the permission stuff.

edunite 10-21-2013 10:00 PM

I have same problem as kylek:

After importing xml file i get

Warning: Only variables should be passed by reference in ..../admincp/arcade_admin.php on line 1422

I think this program is not compatible with VB 4.2.2

Wajow-community 10-23-2013 01:00 PM

why i dont see games:

Currently the arcade has 0 games that have been played 0 times (0 today) for 0:00:00

i have installed the en upload the files what i do wrong?

kylek 10-23-2013 03:56 PM

If you did a new install the arcade does not come with any games.

DragonByte Tech 11-05-2013 11:27 AM

That's correct, by default there are no games included with the Arcade.

Fillip

TropicalFanta 11-12-2013 01:41 PM

Is there a thread for vB 3.8.x support? In the documentation here it states that this is compatible for 3.8.x and up but when importing the XML file I get a dependency error.

DragonByte Tech 11-13-2013 03:38 PM

That's an error, sorry about that. It's only compatible with vB4 at this time.

Fillip

popowich 11-24-2013 03:49 PM

I tried turning on both the post to specified forum and add reply to existing thread functionality while trying to get either of them to work. Neither creating new threads or having the arcade add new high scores to an existing thread works. I don't get any errors after a high score. No errors get logged in my php errors log. Any idea how to troubleshoot this? Thanks!

pcam 12-02-2013 12:50 AM

Fatal error: Cannot redeclare class vB_BlockType_DBTech_vBArcade in /var/www/site/includes/block/dbtech_vbarcade.php on line 174

4.2.2

DragonByte Tech 12-04-2013 01:15 PM

Quote:

Originally Posted by popowich (Post 2463371)
I tried turning on both the post to specified forum and add reply to existing thread functionality while trying to get either of them to work. Neither creating new threads or having the arcade add new high scores to an existing thread works. I don't get any errors after a high score. No errors get logged in my php errors log. Any idea how to troubleshoot this? Thanks!

Try checking the forum permissions for the forum you're having threads posted in. Try making sure all users can post and reply to threads in that forum.

Quote:

Originally Posted by pcam (Post 2465086)
Fatal error: Cannot redeclare class vB_BlockType_DBTech_vBArcade in /var/www/site/includes/block/dbtech_vbarcade.php on line 174

4.2.2

Are you trying to deploy more than one such block? Are you using a mod that may alter the sidebar in some way?


Fillip

Digital Jedi 12-12-2013 04:13 AM

Quote:

Originally Posted by DragonByte Tech (Post 2460432)
That's an error, sorry about that. It's only compatible with vB4 at this time.


Fillip

Is a 3.8 version being considered, by any chance?

DragonByte Tech 12-15-2013 02:06 AM

Not at this time, sorry :(


Fillip

My Dark Tower 12-27-2013 12:02 AM

I found this after I upgraded to 4.2.2. LIst of errors above the web page and no games showing down below

https://vborg.vbsupport.ru/external/2013/12/8.jpg


https://vborg.vbsupport.ru/external/2013/12/9.jpg

Anybody else having troubles with 4.2.2.?

ozzy47 12-27-2013 12:13 AM

Try grabbing the files from their site, they may be patched, http://www.dragonbyte-tech.com/demo/110-vbarcade/

ckgb 12-27-2013 09:30 AM

This mod needs to have a horizontal game line up template as well. Those game blocks use up too much space when you have a fixed width website, and there is not enough room for an extra block. You end up with big gaps between the game blocks.

Horizontal layout similar to v3Arcade would have greatly contributed to solving the issue.

I purchased a full version and now am pondering on how to solve the gap issue.

ozzy47 12-27-2013 09:35 AM

Discussions about the Pro version need to be asked on their site. :)


All times are GMT. The time now is 09:14 PM.

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.01506 seconds
  • Memory Usage 1,821KB
  • 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
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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