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.phpnotifies.phpcmd.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");

You need help with an application? hostlantern is specialized in hosting and supporting more than 200 scripts. Sign up for our web hosting services and let us help you with your application, 24/7!

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

“fail” error when adding dashlets in SugarCRM

If you add chart dashlets to your SugarCRM home page, but they are empty and you get a pop up...

How to set up separate outgoing email accounts in SugarCRM

With the latest version of SugarCRM you can allow your users to set their own Outgoing Email...

How to set up the HiveMail Email Gateway to use the PIPE method with cPanel

Configuring the PIPE Email Gateway method is probably the hardest part of a HiveMail setup, so in...

How to set an e-mail account for the EGroupware application?

In order to send/receive mails through EGroupware, the mail settings for the user should be...

How to change the administrator password in Omeka?

In order to change the password for your Omeka application you need to login to your cPanel ->...