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:
require_once( '/home/cpanel_user/public_html/old_folder/inc/header.inc.php' );

 

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

Please indicate if this article was helpful for you.

rating :  5.0 from 5
views :  907
votes :  1

Haven't found what you are looking for? Suggest an article HERE.

powered by

Valid XHTML 1.0 Strict Valid CSS!