I have a problem with the Aurea Website.
Whenever i click the
Einloggen and Registrieren nothing happen.
and I already edit the
config.php after that i get this error
Driver][SQL Server]Login failed for user 'ELY0N-PC\SQLEXPRESS'., SQL state 28000 in SQLConnect in C:\xampp\htdocs\custom_php\config.php on line 11
I change the
<?php
ini_set('display_errors', true);
error_reporting(E_ALL ^ E_NOTICE);
date_default_timezone_set('Europe/London');
$_CONFIG = array();
define('ODBC_USER', '');
define('ODBC_PASS', ''); //
$odbc_connect = odbc_connect('DRIVER={SQL Server};SERVER=Chyukasame-PC\AUREA', ODBC_USER, ODBC_PASS);
$_CONFIG['db_databases'] = array(
'acc' => 'ACCOUNT_DBF',
'chr' => 'CHARACTER_01_DBF',
'web' => 'WEBSITE_DBF',
'log' => 'LOGGING_01_DBF',
);
$_CONFIG['allg_svr_admins'] = array('','','')
?>
To
<?php
ini_set('display_errors', true);
error_reporting(E_ALL ^ E_NOTICE);
date_default_timezone_set('Europe/London');
$_CONFIG = array();
define('ODBC_USER', 'ELY0N-PC\SQLEXPRESS');
define('ODBC_PASS', '123456'); //
$odbc_connect = odbc_connect('DRIVER={SQL Server};SERVER=ELY0N-PC\SQLEXPRESS', ODBC_USER, ODBC_PASS);
$_CONFIG['db_databases'] = array(
'acc' => 'ACCOUNT_DBF',
'chr' => 'CHARACTER_01_DBF',
'web' => 'WEBSITE_DBF',
'log' => 'LOGGING_01_DBF',
);
$_CONFIG['allg_svr_admins'] = array('','','')
?>
hope you can help me