Hey sun,

this is the issue:

The forum directory is not included to the url.
e.g. www.domain.com/drupal/forum is www.domain.com/drupal/
or www.domain.com/drupal/forum/showthread.php is www.domain.com/drupal//showthread.php

Comments

sun’s picture

Priority: Critical » Normal

Did you copy config.php from vB's includes directory into Drupal vB's module directory?

kasalla’s picture

yep, I did...

sun’s picture

Could you please add

echo "<pre>"; var_dump($config); echo "</pre>\n";

in front of the return $config; in drupalvb_get_config() in drupalvb.inc.php and post the output here?

kasalla’s picture

I changed some values due to security...

 array(6) {
  ["Database"]=>
  array(5) {
    ["dbtype"]=>
    string(5) "mysql"
    ["dbname"]=>
    string(13) "db_user"   //CAHNGED by Alex
    ["tableprefix"]=>
    string(3) "vb_"
    ["technicalemail"]=>
    string(17) "arcade@anstoss.de"
    ["force_sql_mode"]=>
    bool(false)
  }
  ["MasterServer"]=>
  array(5) {
    ["servername"]=>
    string(9) "localhost"
    ["port"]=>
    int(3306)
    ["username"]=>
    string(13) "db_user"   //CAHNGED by Alex
    ["password"]=>
    string(8) "db_pwd"    //CAHNGED by Alex
    ["usepconnect"]=>
    int(0)
  }
  ["SlaveServer"]=>
  array(5) {
    ["servername"]=>
    string(0) ""
    ["port"]=>
    int(3306)
    ["username"]=>
    string(0) ""
    ["password"]=>
    string(0) ""
    ["usepconnect"]=>
    int(0)
  }
  ["Misc"]=>
  array(6) {
    ["admincpdir"]=>
    string(6) "admincp"   //CAHNGED by Alex
    ["modcpdir"]=>
    string(5) "modcp"
    ["cookieprefix"]=>
    string(2) "bb"
    ["forumpath"]=>
    string(40) "...serverpath.../htdocs/1/arcade"     //CAHNGED by Alex
    ["maxwidth"]=>
    int(2592)
    ["maxheight"]=>
    int(1944)
  }
  ["SpecialUsers"]=>
  array(5) {
    ["canviewadminlog"]=>
    string(1) ""            //CAHNGED by Alex
    ["canpruneadminlog"]=>
    string(1) ""           //CAHNGED by Alex
    ["canrunqueries"]=>
    string(0) ""
    ["undeletableusers"]=>
    string(0) ""             //CAHNGED by Alex
    ["superadministrators"]=>
    string(1) ""             //CAHNGED by Alex
  }
  ["Mysqli"]=>
  array(1) {
    ["ini_file"]=>
    string(0) ""
  }
}
sun’s picture

Status: Active » Closed (duplicate)