ciao, ho installato apache, php e mysql, tutto funzionante. Ora ho scaricato il mio forum in locale e l'ho messo in "apache directory/htdocs".
Aprendo col browser l' index.php mi dą sempre questo errore:
SQL ERROR [ mysql4 ]
Unknown database 'localhost' [1049]
ho capito che il database non č esatto ma quale dovrebbe essere?
(avete capito il mio livello di php e mysql vero?;-)
questo il file config.php del forum nel quale viene richiamato il db:
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysql';
//$dbhost = 'sql.mioforum.it'; dato originale
$dbhost = 'localhost';
$dbport = '';
//$dbname = 'mioforum42994'; dato originale
$dbname = 'localhost';
//$dbuser = 'mioforum42994'; dato originale
$dbuser = 'root';
//$dbpasswd = 'passwordforum'; dato originale
$dbpasswd = 'testpass';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>