Knowledge Base Article
How to move Dolphin to another folder?
In order to move your Dolphin application to another folder, there are several files which must be changed:
- inc/header.inc.php - change the values of the following variables to match the new paths:
$site['url'] = "http://yourdomain.com/old_folder";
to
$site['url'] = "http://yourdomain.com/new_folder";
and
$dir['root'] = "/home/cpanel_user/public_html/old_folder/";
to
$dir['root'] = "/home/cpanel_user/public_html/new_folder/";
- cupid.php, notifies.php, cmd.php located in the periodic folder; all of them have this line:
change it to:
require_once( '/home/cpanel_user/public_html/new_folder/inc/header.inc.php' );
Note: You also need to change the paths for each cron running for the above mentioned files.
- ray/modules/global/inc/header.inc.php
change the line:
include("/home/cpanel_user/public_html/old_folder/inc/header.inc.php");
to
include("/home/cpanel_user/public_html/new_folder/inc/header.inc.php");
Rating
|

