ok il problema mi sembra non risieda in joomla ma in smf.
Hai cambiato il path anche nel file di configurazione di smf?
Ricordo che in fase di installazione chiede il path, quindi devi aggiornare anche quello.
Prova a vedere se queste impostazioni risiedono nel file Settings.php di SMF
EDIT: ora ho aperto il mio e vedo che
in $boarddir chiede il percorso dell'absolute path
in Database Info cambia i valori con quelli nuovi
in Directories/Files cambia il path
########## Forum Info ##########
$mbname = 'pippo Forums'; # The name of your forum.
$language = 'english'; # The default language file set for the forum.
$boardurl = 'http://localhost/Forum'; # URL to your forum's folder. (without the trailing /!)
$webmaster_email = 'pippo@gmail.com'; # Email address to send emails from. (like noreply@yourdomain.com.)
$cookiename = 'SMFCookie113'; # Name of the cookie to set for authentication.
########## Database Info ##########
$db_server = 'localhost';
$db_name = 'joomla';
$db_user = 'root';
$db_passwd = '';
$db_prefix = 'smf_';
$db_persist = 0;
$db_error_send = 1;
########## Directories/Files ##########
# Note: These directories do not have to be changed unless you move things.
$boarddir = 'f:/programmi/easyphp1-8/www/Forum'; # The absolute path to the forum's folder. (not just '.'!)
$sourcedir = 'f:/programmi/easyphp1-8/www/Forum/Sources'; # Path to the Sources directory.
########## Error-Catching ##########
# Note: You shouldn't touch these settings.
$db_last_error = 0;
# Make sure the paths are correct... at least try to fix them.
if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt'))
$boarddir = dirname(__FILE__);
if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
$sourcedir = $boarddir . '/Sources';Io l'avevo già cambiato il file, ma continua a darmi quell'errore che ho postato sopra, che ho sbagliato?
Warning: main(/home/httpd/vhosts/xxxxx.it/httpdocs/Forum/SSI.php): failed to open stream: No such file or directory in f:\programmi\easyphp1-8\www\index.php on line 33
Fatal error: main(): Failed opening required '/home/httpd/vhosts/xxxxxxxxx.it/httpdocs/Forum/SSI.php' (include_path='.;F:/Programmi/EasyPHP1-8\php\pear\') in f:\programmi\easyphp1-8\www\index.php on line 33
Cioè sembra che da qualche parte la index di joomla vada
ancora a cercarsi alcune path che erano quelle dell'host remoto(in questo caso backup da remoto a locale).
Posto anche il mio configuration.php di joomla, magari qualcuno può aiutarmi a venirne a capo..
<?php
$mosConfig_MetaAuthor = '1';
$mosConfig_MetaDesc = 'Joomla - the dynamic portal engine and content management system';
$mosConfig_MetaKeys = 'Joomla, joomla';
$mosConfig_MetaTitle = '1';
$mosConfig_absolute_path = 'f:/programmi/easyphp1-8/www';
$mosConfig_allowUserRegistration = '1';
$mosConfig_back_button = '1';
$mosConfig_cachepath = 'f:/programmi/easyphp1-8/www/cache';
$mosConfig_cachetime = '900';
$mosConfig_caching = '0';
$mosConfig_db = 'joomla';
$mosConfig_dbprefix = 'jos_';
$mosConfig_debug = '0';
$mosConfig_dirperms = '';
$mosConfig_editor = 'tinymce';
$mosConfig_enable_log_items = '0';
$mosConfig_enable_log_searches = '0';
$mosConfig_enable_stats = '0';
$mosConfig_error_message = ' ERRORE !!
SITO OFFLINE !!!!';
$mosConfig_error_reporting = '-1';
$mosConfig_favicon = 'favicon.ico';
$mosConfig_fileperms = '';
$mosConfig_fromname = 'pippo.it';
$mosConfig_gzip = '0';
$mosConfig_helpurl = 'http://help.joomla.org';
$mosConfig_hideAuthor = '0';
$mosConfig_hideCreateDate = '0';
$mosConfig_hideEmail = '0';
$mosConfig_hideModifyDate = '0';
$mosConfig_hidePdf = '0';
$mosConfig_hidePrint = '0';
$mosConfig_hits = '1';
$mosConfig_host = 'localhost';
$mosConfig_icons = '1';
$mosConfig_item_navigation = '1';
$mosConfig_lang = 'italian';
$mosConfig_lifetime = '900';
$mosConfig_link_titles = '0';
$mosConfig_list_limit = '30';
$mosConfig_live_site = 'http://localhost';
$mosConfig_locale = 'it_IT';
$mosConfig_mailer = 'mail';
$mosConfig_mailfrom = 'info@pippo.it';
$mosConfig_ml_support = '0';
$mosConfig_multipage_toc = '1';
$mosConfig_offline = '1';
$mosConfig_offline_message = ' ERRORE !!
SITO OFFLINE !!!!
MA ANCORA PER POCO !!!';
$mosConfig_offset = '-1';
$mosConfig_offset_user = '0';
$mosConfig_pagetitles = '1';
$mosConfig_password = '';
$mosConfig_readmore = '1';
$mosConfig_secret = 'Bhbzfca5H3AwpWR1';
$mosConfig_sef = '0';
$mosConfig_sendmail = '/usr/sbin/sendmail';
$mosConfig_shownoauth = '0';
$mosConfig_sitename = 'pippo.it';
$mosConfig_smtpauth = '0';
$mosConfig_smtphost = 'localhost';
$mosConfig_smtppass = '';
$mosConfig_smtpuser = '';
$mosConfig_uniquemail = '1';
$mosConfig_user = 'root';
$mosConfig_useractivation = '1';
$mosConfig_vote = '0';
setlocale (LC_TIME, $mosConfig_locale);
?>