hello
i was using v3arcade v 1.0.8 as subdomain with little change that i did in the file arcade.php
and i put the arcade in subdomain and use for more than one year
but now after i upgrade vb4 and v3arcade i use the same manner and the file will be work but the links of the games still show the links ad main domain
what i did :
just open this arcade.php
and look for :
PHP Code:
'userinfosearch' => array(
'v3arcade_miniuserinfo'
)
);
then add :
PHP Code:
require_once('./dyna_config.php');
chdir($forumpath);
after that make file :
dyna_config.php
with those code:
PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
// ============================================
// Enter the full path to your forum here
// Example: /home/yoursite/public_html/forum
// ============================================
$forumpath = '/home/user99/public_html';
?>
after you write the coorect forum info it will work on the subdomain
the same way change all files that related to arcade on the level of the forum but put them on the subdomain
also you can fix the score submits with the same manner
this was work on the 1.0.8
but now it still show links of the games ,categories and others as from the main domain
for example
forum on :
http://www.site.com
the usual arcade url was :
http://www.site.com/arcade.php
after i did the changes
it will be :
http://games.site.com/arcade.php
but when i visit the links inside still show the main domain ,ex:
http://www.site.com/arcade.php?do=play&gameid=5171
and also all links for categories and others
i try to change the arcade url in style by replacement of :
<a href="arcade.php?{vb:raw session.sessionurl}
to
<a href="http://games.site.com/arcade.php?{vb:raw session.sessionurl}
but the result will be all links show :
http://www.site.com/games.site.com/arcade.php
and so on
how to fix this