APPLICATION_TITLE = vBulletin Notifier
HOME_URL =
http://xxxxxxxxx
VBULLETIN_URL =
http://xxxxxxxxx/forum.php/
VBULLETIN_XML_RPC_SERVER =
http://xxxxxxxxxxx/vbulletin-xml-rpc-server/
NOTIFICATION_WINDOW_TITLE = xxxxxxxx
PHP Code:
<?php
/**
* cd.php
*
* Changes working directory to where vBulletin is currently installed. <br/>
* Loads the vBulletin config (<b>{vBulletin_dir}</b>/includes/config.php) file and resets to original working directory.
*
* @author Sword^Fish <swordfish@nsuers.com>
* @version 1
* @since Release 1
* @package vbulletin-xml-rpc-server
* @see https://vborg.vbsupport.ru/showthread.php?t=173693
*
*/
$curdir = getcwd();
//chdir('C:\xampp\htdocs\nsuers\public_html\vbulletin');
//require_once('C:\xampp\htdocs\nsuers\public_html\vbulletin\includes\config.php');
chdir('/var/www/vhosts/xxxxxxxxx/httpdocs/'); /* change this to directory where your vBulletin is installed */
require_once('/var/www/vhosts/xxxxxx/httpdocs/includes/config.php'); /* change this to where you vBulletin config.php is located */
chdir($curdir);
?>