Working on 4.1.11.
@Warnick, the way to get it working on separate servers is to have the irc.php and the nicklicklist.txt and the eggdrop all on the 1 server so they can write/read each other, then
just change:
Quote:
ob_start();
require_once('/path/to/your/forum/irc.php');
$php_include = ob_get_contents();
ob_end_clean();
vB_Template:: preRegister('FORUMHOME',array('php_include' => $php_include));
|
to this:
Quote:
ob_start();
require_once('http://<domain/ip the eggdrop is hosted on>.com/irc.php');
$php_include = ob_get_contents();
ob_end_clean();
vB_Template:: preRegister('FORUMHOME',array('php_include' => $php_include));
|
Basically so the vBulletin only needs to read the remote PHP file. So you will need web
installed on the server the eggdrop is on so you can connect via http