Quote:
Originally Posted by SnowBot
Question
If you have to files with same name but in 2 seperate directories how would you add them?
For example
forum/index.php
/links/index.php
|
Unless you rewrote partly how vbulletin does this stupid, I dont believe that is possible. Vbulletin automatically finds filename by using REGEX to determine base filename, and then compares it doesnt look for which directory it is located in, as everything in its eyes are relative to itself (online.php)
Maybe try renaming one of them to a slightly different name, ie index2.php this can be done easily enough in vbulletins configuration files plus the
// Example
define('THIS_SCRIPT','index2.php');
directive at the top of each script name, helps the script know what its current filename is, when it referrs to itself.