= Frequently Asked Questions = '''[http://www.boonex.com/trac/dolphin/wiki/GenFAQ#Ineedtotransfermysitetoanotherfolderonmyserver.WhatdoIneedtodo I need to transfer my site to another folder on my server. What do I need to do?]''' ---- == '''''I need to transfer my site to another folder on my server. What do I need to do?''''' == 1) First of all, you need to move the whole structure of the Dolphin installation directory to the folder you like. You can use the "move" command in your FTP client or use {{{ cd DOLPHIN_FOLDER mv * DESTINATION_FOLDER }}} command in your SSH account, where ''DOLPHIN_FOLDER'' is the folder where Dolphin is installed and ''DESTINATION_FOLDER'' is the folder where it needs to be placed. 2) Then you need to edit the paths in the file '''inc/header.inc.php''': change the values of the following variables according to your current settings: {{{$site['url']}}} and {{{$dir['root']}}} 3) Then change the path to dolphin directory in your crons. You can do that in your host's control panel account (for example, CPanel or Plesk) or in your SSH client by running this command: {{{ crontab -e }}} 4) And the last step is to clean '''/cache/''' and '''/cache_public/''' folders. ----