The ConfigSite.php, how it should be?
<?php
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
////////////////////////////////////////////////////////
$host = "127.0.0.1";
$dbuser = "root";
$dbpasswd = "!MYPHPADMINPASSWORD!";
////////////////////////////////////////////////////////
$ryl_db_auth = "config";
$ryl_db_status = "AdminSite";
////////////////////////////////////////////////////////
$DefaultSkin = 'Default';
////////////////////////////////////////////////////////
$alogin = $dbuser;
$apass = $dbpasswd;
$db = $ryl_db_auth;
$regsubmit = "regform.submit()";
$msconnect = mysql_connect("$host", "$alogin", "$apass");
$ip = $host;
////////////////////////////////////////////////////////
?>
I have some doubts in waht to put in:
$dbuser (userdefaultfrom phpadmin?)
$dbpasswd (phpadmin password?)
$ryl_db_auth (no idea...what means config put there?)
$ryl_db_status (adminsite, the name of DB created?)
i ask cause i could make it work, but, when i make some modification in admin area, for example, put the server name, , when i presse SAVE, say that something wrong happene and dont save the modification. What can be?