Prosím o pomoc s forem

Zdravím vás. Mám na stránce forum, ale nevím jak ho rozchodit. Postupoval jsem podle Aj návodu. Když jsem soubor config.php nastavil, tak se mi zobrazuje jen bílá plocha na místě kde má být instalace. V návodu se píše, že když se zobrazí jen bílá plocha mám kontaktovat podporu poskytovatele.

Soubor config.php

<?php if (!defined('PHORUM')) return;$PHORUM['DBCONFIG']=array( // Database connection. See the end of this file for a detailed
// description of the configuration options.
'type' => 'mysql',
'name' => 'phorum5',
'server' => '88.86.113.137',
'user' => 'MySQL jméno',
'password' => 'MySQL heslo',
'table_prefix' => 'phorum',
'port' => '3306',
'socket' => NULL, // An optional URL to redirect the user to when the database is down.
// If you want to use this option, then remove the "//" in front of it.
//'down_page' => 'http://www.example.com/phorum/down.html', // An optional URL to redirect the user to when the database has to be
// upgraded. If you want to use this option, then remove the "//"
// in front of it.
//'upgrade_page' => 'http://www.example.com/phorum/upgrade.html',
// Specific options for the "mysql" database layer type.
// ----------------------------------------------------------------- // Use which MySQL PHP extension? Either NULL, "mysql", "mysqli" or
// "mysqli_replication" for master/slave setups.
// If NULL, Phorum will autodetect the extension to use.
// See the end of this file for a detailed description of this option.
'mysql_php_extension' => '1', // Full text searching? 1=enabled, 0=disabled
// This option determines whether Phorum will use MySQL's full text
// algorithm for searching postings. If enabled, searching for postings
// will be much faster. You will have to disable this feature in case
// you are running a database version prior to MySQL 4.0.18.
'mysql_use_ft' => '1', // Don't populate the search table for mysql fulltext search
// (useful if you use a alternate search backend which doesn't use
// the search-table).
'empty_search_table' => '0', // Specifies the charset used for the "CREATE TABLE" statements and
// the connection later on. For a list of valid MySQL charsets, see
// http://dev.mysql.com/doc/refman/5.0/en/charset-charsets.html
// or run the MySQL query "SHOW CHARACTER SET".
// Beware: the charset names are different from the ones that are
// used for specifying web site charsets. For example "utf-8" is not
// a valid charset.
'charset' => 'utf8', // For master/slave setup (if the "mysql_php_extension" option is set to
// "mysqli_replication") you need to specify the slave servers to use.
// If you do not do this, all queries will go to the master server anyway.
// See the end of this file for a detailed description of this option.
'slaves' => array(),);
?>
<HTML>'name' => 'phorum5',
'server' => '88.86.113.137',
'user' => 'MySQL jméno',
'password' => 'MySQL heslo',

To je špatně. Je jasný, že heslo nenapíšeš, ale i v 'MySQL jméno' může být chyba, takže je dobré ho uvést.
Name, user a password máš v administraci po aktivaci db. Server je mysql.webzdarma.cz.</HTML>
Furt to samé. Co dělám špatně?

<?php if (!defined('PHORUM')) return;$PHORUM['DBCONFIG']=array(
'type' => 'mysql',
'name' => 'roxcoxpc',
'server' => 'mysql.webzdarma.cz',
'user' => 'roxcoxpc',
'password' => 'heslo',
'table_prefix' => 'phorum',
'port' => '3306',
'socket' => NULL,
'mysql_php_extension' => '1',
'mysql_use_ft' => '1',
'empty_search_table' => '0',
'charset' => 'utf8',
'slaves' => array(),);
?>
Už jsem to vyřešil stačilo do mysql_php_extension zapsat 'mysql'.
Teď se mi otevřela instalace fóra, ale píše mi to červeně.

Warning: ini_set dl pfsockopen openlog syslog readlink symlink link leak fsockopen proc_open glob copy eval imap_open() has been disabled for security reasons in /3w/webz.cz/r/roxcox-pc/forum/include/admin/sanity_checks.php on line 79

A instalace mi píše:
WARNING: Phorum cache (hide problem info)
Problem:
The system is unable to find the cache directory "/tmp" on your system.

Possible solution:
Change the Cache Directory setting under General Settings.

a ještě mi to píše, že funkce register_globals je zapnutá, ale že to není bezpečné, ale já potřebuju register_globals pro e-mailové formuláře.
<HTML>První warning - používáš na tom řádku nějakou zakázanou funkci (jsou v té hlášce vyjmenovány)
Druhý warning - viz Possible solution
Třetí věc - register_globals nepotřebuje opravdu nikdo, předělej e-mailový formulář.</HTML>