Joomla configuration.php file changes over time Updated on October 14, 2020 by Brad Markle 13 Minutes, 6 Seconds to Read Table of Contents In this tutorial: Sample Joomla Configuration Files Joomla 1.0.15 Joomla 1.5.0 Joomla 1.6.0 Joomla 1.7.0 Joomla 2.5.0 Joomla 3.0 Joomla 3.1 Joomla 3.2 Change Log In this tutorial: Sample Config Files Changelog Joomla’s configuration.php file has changed quite a bit over time. Some of the changes can cause compatibility concerns with upgrades to newer versions. I came across a change in Joomla 3.2 that has caused some problems with email. To help others troubleshoot problems possibly caused by configuration.php conflicts, I installed every major version of Joomla and examined the configuration file. Here, you can see example configuration.php files per version of Joomla, and you can also reference a table that shows every variable included through the years. Sample Joomla Configuration Files Click the buttons below to see the configuration.php file for the corresponding Joomla version. If you would like to see all of the variables listed in a table, click here. Joomla Version: 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 Joomla 1.0.15 <?php if(!defined('RG_EMULATION')) { define( 'RG_EMULATION', 0 ); } $mosConfig_offline = '0'; $mosConfig_host = 'localhost'; $mosConfig_user = 'db_user'; $mosConfig_password = 'db_pass'; $mosConfig_db = 'db'; $mosConfig_dbprefix = 'jos_'; $mosConfig_lang = 'english'; $mosConfig_absolute_path = '/home/userna5/public_html'; $mosConfig_live_site = 'https://example.com'; $mosConfig_sitename = 'Site Name Goes Here'; $mosConfig_shownoauth = '0'; $mosConfig_useractivation = '1'; $mosConfig_uniquemail = '1'; $mosConfig_offline_message = 'This site is down for maintenance. Please check back again soon.'; $mosConfig_error_message = 'This site is temporarily unavailable. Please notify the System Administrator'; $mosConfig_debug = '0'; $mosConfig_lifetime = '900'; $mosConfig_session_life_admin = '1800'; $mosConfig_session_type = '0'; $mosConfig_MetaDesc = 'Joomla - the dynamic portal engine and content management system'; $mosConfig_MetaKeys = 'Joomla, joomla'; $mosConfig_MetaTitle = '1'; $mosConfig_MetaAuthor = '1'; $mosConfig_locale = 'en_GB'; $mosConfig_offset = '0'; $mosConfig_offset_user = '0'; $mosConfig_hideAuthor = '0'; $mosConfig_hideCreateDate = '0'; $mosConfig_hideModifyDate = '0'; $mosConfig_hidePdf = '0'; $mosConfig_hidePrint = '0'; $mosConfig_hideEmail = '0'; $mosConfig_enable_log_items = '0'; $mosConfig_enable_log_searches = '0'; $mosConfig_enable_stats = '0'; $mosConfig_sef = '0'; $mosConfig_vote = '0'; $mosConfig_gzip = '0'; $mosConfig_multipage_toc = '1'; $mosConfig_allowUserRegistration = '1'; $mosConfig_link_titles = '0'; $mosConfig_error_reporting = -1; $mosConfig_list_limit = '30'; $mosConfig_caching = '0'; $mosConfig_cachepath = '/home/userna5/public_html/cache'; $mosConfig_cachetime = '900'; $mosConfig_mailer = 'mail'; $mosConfig_mailfrom = '[email protected]'; $mosConfig_fromname = 'Site Name Goes Here'; $mosConfig_sendmail = '/usr/sbin/sendmail'; $mosConfig_smtpauth = '0'; $mosConfig_smtpuser = ''; $mosConfig_smtppass = ''; $mosConfig_smtphost = 'localhost'; $mosConfig_back_button = '1'; $mosConfig_item_navigation = '1'; $mosConfig_secret = 's3ZJL6akojubS7el'; $mosConfig_pagetitles = '1'; $mosConfig_readmore = '1'; $mosConfig_hits = '1'; $mosConfig_icons = '1'; $mosConfig_favicon = 'favicon.ico'; $mosConfig_fileperms = ''; $mosConfig_dirperms = ''; $mosConfig_helpurl = 'https://help.joomla.org'; $mosConfig_multilingual_support = '0'; $mosConfig_editor = 'tinymce'; $mosConfig_admin_expired = '1'; $mosConfig_frontend_login = '1'; $mosConfig_frontend_userparams = '1'; $mosConfig_itemid_compat = '0'; setlocale (LC_TIME, $mosConfig_locale); ?> Joomla 1.5.0 <?php class JConfig { /* Site Settings */ var $offline = '0'; var $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; var $sitename = 'Site Name Goes Here'; var $editor = 'tinymce'; var $list_limit = '20'; var $legacy = '0'; /* Debug Settings */ var $debug = '0'; var $debug_lang = '0'; /* Database Settings */ var $dbtype = 'mysql'; var $host = 'localhost'; var $user = 'db_user'; var $password = 'db_pass'; var $db = 'db_name'; var $dbprefix = 'jos_'; /* Server Settings */ var $secret = 'gP5UyskyATHIBmzF'; var $gzip = '0'; var $error_reporting = '-1'; var $helpurl = 'https://help.joomla.org'; var $xmlrpc_server = '1'; var $ftp_host = '127.0.0.1'; var $ftp_port = '21'; var $ftp_user = ''; var $ftp_pass = ''; var $ftp_root = ''; var $ftp_enable = '0'; /* Locale Settings */ var $offset = '0'; var $offset_user = '0'; /* Mail Settings */ var $mailer = 'mail'; var $mailfrom = '[email protected]'; var $fromname = 'Site Name Goes Here'; var $sendmail = '/usr/sbin/sendmail'; var $smtpauth = '0'; var $smtpuser = ''; var $smtppass = ''; var $smtphost = 'localhost'; /* Cache Settings */ var $caching = '0'; var $cachetime = '15'; var $cache_handler = 'file'; /* Meta Settings */ var $MetaDesc = 'Joomla! - the dynamic portal engine and content management system'; var $MetaKeys = 'joomla, Joomla'; var $MetaTitle = '1'; var $MetaAuthor = '1'; /* SEO Settings */ var $sef = '0'; var $sef_rewrite = '0'; var $sef_suffix = '0'; /* Feed Settings */ var $feed_limit = 10; var $log_path = '/home/userna5/public_html/logs'; var $tmp_path = '/home/userna5/public_html/tmp'; /* Session Setting */ var $lifetime = '15'; var $session_handler = 'database'; } ?> Joomla 1.6.0 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'cnom6_'; public $live_site = ''; public $secret = 'HeVfojxfQFH5WNje'; public $gzip = '0'; public $error_reporting = '-1'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = '127.0.0.1'; public $ftp_port = '21'; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = '0'; public $offset = 'UTC'; public $offset_user = 'UTC'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = ''; public $MetaKeys = ''; public $MetaTitle = '1'; public $MetaAuthor = '1'; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Joomla 1.7.0 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'cnom6_'; public $live_site = ''; public $secret = 'aj9IlvptjH3twgdh'; public $gzip = '0'; public $error_reporting = '-1'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = '127.0.0.1'; public $ftp_port = '21'; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = '0'; public $offset = 'UTC'; public $offset_user = 'UTC'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = ''; public $MetaKeys = ''; public $MetaAuthor = '1'; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Joomla 2.5.0 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $display_offline_message = '1'; public $offline_image = ''; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $captcha = '0'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'cnom6_'; public $live_site = ''; public $secret = 'BK9W5YgX1CsDy2zE'; public $gzip = '0'; public $error_reporting = 'default'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = '127.0.0.1'; public $ftp_port = '21'; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = '0'; public $offset = 'UTC'; public $offset_user = 'UTC'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = ''; public $MetaKeys = ''; public $MetaTitle = '1'; public $MetaAuthor = '1'; public $robots = ''; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Joomla 3.0 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $display_offline_message = '1'; public $offline_image = ''; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $captcha = '0'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'gs82l_'; public $live_site = ''; public $secret = 'kV46ItSyS9DuRLeg'; public $gzip = '0'; public $error_reporting = 'default'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = ''; public $ftp_port = ''; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = ''; public $offset = 'UTC'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = 'Site Description Goes Here'; public $MetaKeys = ''; public $MetaTitle = '1'; public $MetaAuthor = '1'; public $MetaVersion = '0'; public $robots = ''; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Joomla 3.1 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $display_offline_message = '1'; public $offline_image = ''; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $captcha = '0'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'w3xkj_'; public $live_site = ''; public $secret = 'w6mMzG7gLfNlTQM0'; public $gzip = '0'; public $error_reporting = 'default'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = ''; public $ftp_port = ''; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = ''; public $offset = 'UTC'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = 'Description Goes Here'; public $MetaKeys = ''; public $MetaTitle = '1'; public $MetaAuthor = '1'; public $MetaVersion = '0'; public $robots = ''; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Joomla 3.2 <?php class JConfig { public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $display_offline_message = '1'; public $offline_image = ''; public $sitename = 'Site Name Goes Here'; public $editor = 'tinymce'; public $captcha = '0'; public $list_limit = '20'; public $access = '1'; public $debug = '0'; public $debug_lang = '0'; public $dbtype = 'mysqli'; public $host = 'localhost'; public $user = 'db_user'; public $password = 'db_pass'; public $db = 'db_name'; public $dbprefix = 'mj58o_'; public $live_site = ''; public $secret = 'M4CoKReTb8RutGUo'; public $gzip = '0'; public $error_reporting = 'default'; public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = ''; public $ftp_port = ''; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = ''; public $offset = 'UTC'; public $mailonline = '1'; public $mailer = 'mail'; public $mailfrom = '[email protected]'; public $fromname = 'Site Name Goes Here'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = 'localhost'; public $smtpsecure = 'none'; public $smtpport = '25'; public $caching = '0'; public $cache_handler = 'file'; public $cachetime = '15'; public $MetaDesc = 'Description Goes Here'; public $MetaKeys = ''; public $MetaTitle = '1'; public $MetaAuthor = '1'; public $MetaVersion = '0'; public $robots = ''; public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; public $feed_limit = '10'; public $log_path = '/home/userna5/public_html/logs'; public $tmp_path = '/home/userna5/public_html/tmp'; public $lifetime = '15'; public $session_handler = 'database'; } Change Log Below you will find a table showing the variables contained within Joomla's config file based upon the Joomla version. A red ✗ means that variable was not included, and a green check mark ✓ means it was included. Please note that in Joomla 1.0, the variable names began with $mosConfig. For the purposes of this table, $mosConfig has been removed from those variable names. Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $offline ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $host ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $user ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $password ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $db ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $dbprefix ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $lang ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $absolute_path ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $live_site ✓ ✗ ✓ ✓ ✓ ✓ ✓ ✓ $sitename ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $shownoauth ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $useractivation ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $uniquemail ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $offline_message ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $error_message ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $debug ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $lifetime ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $session_life_admin ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $session_type ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $MetaDesc ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $MetaKeys ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $MetaTitle ✓ ✓ ✓ ✗ ✓ ✓ ✓ ✓ $MetaAuthor ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $locale ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $offset ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $offset_user ✓ ✓ ✓ ✓ ✓ ✗ ✗ ✗ $hideAuthor ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $hideCreateDate ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $hideModifyDate ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $hidePdf ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $hidePrint ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $hideEmail ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $enable_log_items ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $enable_log_searches ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $enable_stats ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $sef ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $vote ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $gzip ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $multipage_toc ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $allowUserRegistration ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $link_titles ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $error_reporting ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $list_limit ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $caching ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $cachepath ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $cachetime ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $mailer ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $mailfrom ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $fromname ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $sendmail ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $smtpauth ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $smtpuser ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $smtppass ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $smtphost ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $back_button ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $item_navigation ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $secret ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $pagetitles ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $readmore ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $hits ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $icons ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $favicon ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $fileperms ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $dirperms ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $helpurl ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $multilingual_support ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $editor ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $admin_expired ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $frontend_login ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $frontend_userparams ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $itemid_compat ✓ ✗ ✗ ✗ ✗ ✗ ✗ ✗ $legacy ✗ ✓ ✗ ✗ ✗ ✗ ✗ ✗ $debug_lang ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $dbtype ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $xmlrpc_server ✗ ✓ ✗ ✗ ✗ ✗ ✗ ✗ $ftp_host ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $ftp_port ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $ftp_user ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $ftp_pass ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $ftp_root ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $ftp_enable ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $cache_handler ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $sef_rewrite ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $sef_suffix ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $feed_limit ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $log_path ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $tmp_path ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $session_handler ✗ ✓ ✓ ✓ ✓ ✓ ✓ ✓ $access ✗ ✗ ✓ ✓ ✓ ✓ ✓ ✓ $smtpsecure ✗ ✗ ✓ ✓ ✓ ✓ ✓ ✓ Joomla Version 1.0.15 1.5 1.6 1.7 2.5 3.0 3.1 3.2 $smtpport ✗ ✗ ✓ ✓ ✓ ✓ ✓ ✓ $unicodeslugs ✗ ✗ ✓ ✓ ✓ ✓ ✓ ✓ $display_offline_message ✗ ✗ ✗ ✗ ✓ ✓ ✓ ✓ $offline_image ✗ ✗ ✗ ✗ ✓ ✓ ✓ ✓ $captcha ✗ ✗ ✗ ✗ ✓ ✓ ✓ ✓ $robots ✗ ✗ ✗ ✗ ✓ ✓ ✓ ✓ $MetaVersion ✗ ✗ ✗ ✗ ✗ ✓ ✓ ✓ $mailonline ✗ ✗ ✗ ✗ ✗ ✗ ✗ ✓ Share this Article Related Articles Intro to Migrating your WordPress Site Data Migrating your WordPress Database Migrating WordPress Files Configuring WordPress After a Migration Testing your WordPress website after Migration How to Move WordPress from a Subfolder to the Root Directory What to expect during a mass server migration Move Your WordPress Site to a New Server Moving Websites Built with Older Technology into WordPress How to Export Your WordPress Sites