Problem moving from localhost to remote server - Joomla! Forum - community, help and support
i've run problems transferring joomla site local wamp server remote server. uploaded joomla files via ftp exported , imported joomla database , updated configuration.php file.
the home page looks fine - http://www.recoverytoday.net
the calendar link, read more links , rss link give 404 error messages others seem work pages aren't styled.. they're somehow separated stylesheets. try clicking "home" new page.
the free subscription link yielded 404 before reuploaded components, plugins , modules folders.
i'll attach old , new config files if helps.
i have no idea here.. i'm newb @ , thought did right. appreciate help.
(btw, web host listed joomla joomla-compatible, don't think that's issue)
(one more thing - matter if joomla database has prefix, prefix_joomla?)
here's old config
new config file
the home page looks fine - http://www.recoverytoday.net
the calendar link, read more links , rss link give 404 error messages others seem work pages aren't styled.. they're somehow separated stylesheets. try clicking "home" new page.
the free subscription link yielded 404 before reuploaded components, plugins , modules folders.
i'll attach old , new config files if helps.
i have no idea here.. i'm newb @ , thought did right. appreciate help.
(btw, web host listed joomla joomla-compatible, don't think that's issue)
(one more thing - matter if joomla database has prefix, prefix_joomla?)
here's old config
code: select all
<?php
class jconfig {
var $offline = '0';
var $editor = 'jce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '1';
var $sef_rewrite = '0';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = '***** (not sure if important - starring out anyway)';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '0';
var $log_path = 'c:\\wamp\\www\\joomla\\logs';
var $tmp_path = 'c:\\wamp\\www\\joomla\\tmp';
var $live_site = '';
var $force_ssl = '0';
var $offset = '0';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1';
var $ftp_port = '21';
var $ftp_user = '*****';
var $ftp_pass = '*****';
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = '*****';
var $db = 'joomla';
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = '***@***.com';
var $fromname = 'recovery today online';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $metaauthor = '1';
var $metatitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = '*****';
var $sitename = 'recovery today online';
var $metadesc = 'recovery today online - resource latest topics in research, treatment, professional interests, training , employment needs in recovery field.';
var $metakeys = '';
var $offline_message = 'this site down maintenance. please check again soon.';
}
?>new config file
code: select all
<?php
class jconfig {
var $offline = '0';
var $editor = 'jce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '1';
var $sef_rewrite = '0';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = '*****';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '0';
var $log_path = 'http://www.recoverytoday.net/logs';
var $tmp_path = 'http://www.recoverytoday.net/tmp';
var $live_site = '';
var $force_ssl = '0';
var $offset = '0';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1'; /*should changed?*/
var $ftp_port = '21';
var $ftp_user = '*****';
var $ftp_pass = '*****';
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost'; /*should changed?*/
var $user = 'newuser (this isnt new user name)';
var $db = 'newdb';
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = 'email@email.com';
var $fromname = 'recovery today online';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $metaauthor = '1';
var $metatitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = '******';
var $sitename = 'recovery today online';
var $metadesc = 'recovery today online - resource latest topics in research, treatment, professional interests, training , employment needs in recovery field.';
var $metakeys = '';
var $offline_message = 'this site down maintenance. please check again soon.';
}
?>
with confiuration file saying
why have built database not match ?var $dbprefix = 'jos_';
Comments
Post a Comment