Spostare un'installazione di Joomla: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
 
Line 1: Line 1:
Per migrare un'installazione di Joomla da un server all'altro:
Per migrare un'installazione di Joomla da un server all'altro:
==Articolo recente==
*[http://www.howtojoomla.net/20090208101/how-tos/installation/how-to-move-your-joomla-15-site-to-a-new-server How to Move Your Joomla! 1.5 Site to a New Server-How To Joomla!]


==Altro articolo==
* Backup and then restore your database - perhaps using phpmyadmin or SSH/command line<br>(this step only needed if moving site from one server to another.)
* Backup and then restore your database - perhaps using phpmyadmin or SSH/command line<br>(this step only needed if moving site from one server to another.)



Latest revision as of 23:28, 18 August 2011

Per migrare un'installazione di Joomla da un server all'altro:

Articolo recente

Altro articolo

  • Backup and then restore your database - perhaps using phpmyadmin or SSH/command line
    (this step only needed if moving site from one server to another.)
  • Edit your configuration.php file to reflect the new values. Specifically the following:
      $mosConfig_user = 'joomla_joomla';
      $mosConfig_password = 'password';
      $mosConfig_db = 'joomla_joomla';
      $mosConfig_absolute_path = '/home/joomla/public_html';
      $mosConfig_live_site = 'http://www.joomla.org';
      $mosConfig_cachepath = '/your absolute path/cache';

Note: You may also need to ensure you have configured your .htaccess file in the new location.

Of course with the release of Joomla! it will no longer be $mosConfig_ but $josConfig

Riferimenti