Gracias, cuento lo que hice:
Desde el servidor origen exporté la base de datos con phpmyadmin y obtuve un archivo .sql. En el localhost, con el phpmyadmin he creado una base de datos y luego importé el archivo .sql y se rellenó perfectamente la nueva base de datos local, luego de esto copie todo el joomla en el directorio www del wampserver.
uff..... luego configuré el configuration.php,
<?php
class JConfig {
var $offline = '0';
var $editor = 'jce';
var $list_limit = '15';
var $helpurl = '
http://comunidadjoomla.org'; var $debug = '0';
var $debug_lang = '0';
var $sef = '0';
var $sef_rewrite = '1';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = 'opjSTNdXoZjWzr7v';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '0';
var $log_path = 'C:\\wamp\\www\\origen\\logs';<-------------
var $tmp_path = 'C:\\wamp\\www\\origen\\tmp';<-------------
var $live_site = '';
var $force_ssl = '0';
var $offset = '-5';
var $caching = '0';
var $cachetime = '20';
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 = 'root';<---------------
var $db = 'alamdb';<-------------
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = '
micorreo@website.com';
var $fromname = 'website';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpsecure = 'none';
var $smtpport = '25';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $MetaAuthor = '1';
var $MetaTitle = '1';
var $lifetime = '20';
var $session_handler = 'database';
var $password = '@@ala@@';
}
?>
los que tienen flecha a la derecha son los que los cambié.
y................ al cargar
http://localhost/origen para ver la pagina me sale el error
Internal Server Error
¿que variables mas son importantes de editar?
Gracias por la ayuda