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)

tele955848 10-16-2012 07:57 PM

Quote:

Originally Posted by Gemma (Post 2373230)

oh sorry have no changed the board and forget it * shame *

find only in the index (from root) the following data?

Quote:

<?php
/*================================================= =====================*\
|| ################################################## ################## ||
|| # vBulletin 4.2.0 Patch Level 2 - Licence Number VBFE7884D8
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2000-2012 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/

/**
forum.php anweisen, zu der Standard-Seite weiterzuleiten, die
im Administrator-Kontrollzentrum unter "Navigiation verwalten"
festgelegt wurde.
*/
define('VB_REDIRECT', true);

/**
* Wenn Sie diese Datei im Hauptverzeichnis Ihrer Website ablegen moechten,
* geben Sie bitte in der Zeile unten den Verzeichnisnamen Ihres vBulletins
* ein und entfernen Sie die beiden '//' am Anfang der Zeile.
*
* Wenn Ihr vBulletin z.B. im Verzeichnis '/forum' installiert ist, sollte
* die Zeile so aussehen:
*
* define('VB_RELATIVE_PATH', 'forum');
*
* Hinweis: Es koennte sein, dass Sie den Cookie-Pfad in Ihren vBulletin-
* Einstellungen aendern muessen, damit sich die Benutzer auch im
* Hauptverzeichnis der Website anmelden koennen. Wenn Sie diese Datei in das
* Hauptverzeichnis Ihrer Website verschieben, vergewissern Sie sich bitte,
* dass als Cookie-Pfad '/' festgelegt ist:
*
* Administrator-Kontrollzentrum -> 'vBulletin-Einstellungen' -> 'Einstellungen'
* -> 'Cookies und HTTP-Header' -> 'Pfad, der in Cookies gespeichert wird'
*/

//define('VB_RELATIVE_PATH', 'forum');

// Ab hier bitte nichts mehr veraendern.
// Die Standard-Seite beim Aufruf der index.php koennen Sie im Administrator-
// Kontrollzentrum festlegen:
// Administrator-Kontrollzentrum -> 'vBulletin-Einstellungen' -> 'Navigation verwalten'

if (defined('VB_RELATIVE_PATH'))
{
chdir('./' . VB_RELATIVE_PATH);
}

require('forum.php');

/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: 20:42, Thu Oct 4th 2012
|| # CVS: $RCSfile$ - $Revision: 2589 $ 60957
|| ################################################## ##################
\*================================================ ======================*/

Gemma 10-16-2012 08:23 PM

Place it above require('forum.php');

So it should look like this:
Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
require('forum.php');

You might want to edit out your licence number from the post you made above :)

tele955848 10-17-2012 05:29 PM

it works thank you, it was the index.php (I was blind not seen it)

Vielen Dank

Subieforums 10-18-2012 10:00 PM

Can I upload game zip files to my server and do a mass install? I see the ibpro lets you do it with .tar files.

Thanks!

arcadejunkie 10-19-2012 08:30 AM

Quote:

Originally Posted by Subieforums (Post 2374111)
Can I upload game zip files to my server and do a mass install? I see the ibpro lets you do it with .tar files.

Thanks!

Uses the same games as ibpro. Upload the tar files to your admincp/games folder and install via your vbulletin admincp

Bob_R 10-26-2012 12:18 PM

Here's a PM I received from a member:

I just played Bang, House of Chocolates, and Rollercoaster Creator, and when it came time to submit my score, none of the games saved my score even though I beat my own high score. Instead it took me back to the main forums page.

How do I fix this?

Thanks.

Bob_R 10-26-2012 01:41 PM

Quote:

Originally Posted by Gemma (Post 2373230)

Quote:

Originally Posted by Gemma (Post 2373548)
Place it above require('forum.php');

So it should look like this:
Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
require('forum.php');


Which one? index.php or forum.php

And, which index.php? I have 2. One in forum root, one in forum directory.

Gemma 10-26-2012 06:10 PM

Quote:

Originally Posted by Bob_R (Post 2376110)
Which one? index.php or forum.php

And, which index.php? I have 2. One in forum root, one in forum directory.

Not really sure why you have two index.php files, can you post the contents of them (in Code BBcode tags and without any licence info) if you don't mind?

Bob_R 10-26-2012 08:44 PM

Quote:

Originally Posted by Gemma (Post 2376146)
Not really sure why you have two index.php files, can you post the contents of them (in Code BBcode tags and without any licence info) if you don't mind?

The one in the domain root

PHP Code:

<?php

/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.0.2 - Licence Number
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2000-2010 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # [url]http://www.vbulletin.com[/url] | [url]http://www.vbulletin.com/license.html[/url] # ||
|| #################################################################### ||
\*======================================================================*/

/**
 * If you want to move this file to the root of your website, change this 
 * line to your vBulletin directory and uncomment it (delete the //).
 *
 * For example, if vBulletin is installed in '/forum' the line should 
 * state:
 *
 *    define(VB_RELATIVE_PATH, 'forum');
 *
 * Note: You may need to change the cookie path of your vBulletin 
 * installation to enable your users to log in at the root of your website.
 * If you move this file to the root of your website then you should ensure 
 * the cookie path is set to '/'.
 *
 * See 'Admin Control Panel
 *    ->Cookies and HTTP Header Options
 *      ->Path to Save Cookies
 */

define(VB_RELATIVE_PATH'forums');


// Do not edit.
if (defined('VB_RELATIVE_PATH'))
{
    
chdir('./' VB_RELATIVE_PATH);
}


/**
 * You can choose the default script here.  Uncomment the appropriate line 
 * to set the default script.  Note: Only uncomment one of these, you must 
 * add // to comment out the script(s) that you DO NOT want to use as your 
 * default script.
 *
 * You can choose the default script even if you do not plan to move this 
 * file to the root of your website.
 */

/**
 * Use the CMS as the default script:
 */

require('content.php');


/**
 * Use the forum as the default script:
 */

// require('forum.php');


/*======================================================================*\
|| ####################################################################
|| # Downloaded: 08:41, Thu Feb 18th 2010
|| # CVS: $RCSfile$ - $Revision: 31201 $
|| ####################################################################
\*======================================================================*/

The one in the forum directory/root

PHP Code:

<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.2.0 Patch Level 2 - Licence Number
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2000-2012 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

/* Tell forum.php to redirect 
to the default url as defined 
in the navigation manager */
define('VB_REDIRECT'true);

/**
 * If you want to move this file to the root of your website, change the 
 * line below to your vBulletin directory and uncomment it (delete the //).
 *
 * For example, if vBulletin is installed in '/forum' the line should
 * state: define('VB_RELATIVE_PATH', 'forums');
 *
 * Note: You may need to change the cookie path of your vBulletin
 * installation to enable your users to log in at the root of your website.
 * If you move this file to the root of your website then you should ensure
 * the cookie path is set to '/'.
 *
 * See 'Admin Control Panel
 *    ->Cookies and HTTP Header Options
 *      ->Path to Save Cookies
 */

//define('VB_RELATIVE_PATH', 'forums');

// Do not edit anything below //
if (defined('VB_RELATIVE_PATH'))
{
    
chdir('./' VB_RELATIVE_PATH);
}

require(
'forum.php');


/*======================================================================*\
|| ####################################################################
|| # Downloaded: 09:53, Fri Oct 12th 2012
|| # CVS: $RCSfile$ - $Revision: 60724 $
|| ####################################################################
\*======================================================================*/


Gemma 10-26-2012 09:00 PM

Since one of the index.php files is much older than the other (version 4.0.2 and the other is the newer 4.2.0pl2), I'll assume you should only be using the newer one.

Replace:
Code:

require('forum.php');
With:
Code:

require_once('./includes/v3arcade_vbsuite_index_compatibility.php');
require('forum.php');

Save and upload the index.php. See if that solves your scoring issues.


All times are GMT. The time now is 07:41 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.02126 seconds
  • Memory Usage 1,795KB
  • 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
  • (4)bbcode_code_printable
  • (2)bbcode_php_printable
  • (7)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