This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Storyteller 1.8.2. - Umzug auf neuen Server - MySQL db issue


avatar
phauser 0
From: -
Hallo Philipp

Unser ISP ist umgezogen, die LogIns zur MySQL db haben sich geändert. Ich kann nun nicht mehr in das cadmin einloggen, weil "Can't connect to the MySQL server". Nur kann ich nirgends manuell die Angaben anpassen, was wäre hier die beste Lösung?

Danke und Grüsse
P.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Storyteller 1.8.2. - Umzug auf neuen Server - MySQL db issue
avatar
OP 0
From: -
Danke!
1 Re: Storyteller 1.8.2. - Umzug auf neuen Server - MySQL db issue
avatar
Administrator
1340
From: Vienna, Austria
Mit dem folgenden Script kann die Konfigurationsdatei neu generiert werden:
<?php

//MySQL settings
$dbhost = "localhost";
$dbuser = "root";
$dbpass = "password";
$dbname = "database";

//Website details
$wsname = "Website";
$wsurl = " http://localhost";
$wsno = "1";

//Unique checksum (change it to whatever you like)
$unique = "uoeiruoru907935hkjh8uouoe";


// ###############################################################

$estc = base64_encode("$dbhost:_:$dbuser:_:$dbpass:_:$dbname:_:$wsno:_:$wsname:_:$wsurl:_:$unique:_:1:_:0:_:0:_:0");
echo "Writing configuration ($estc) ...";
$file = fopen("../config.php",w) or die("Fatal error: Can't write config.php. Please chmod to file to 777");
if (flock($file, 2)) {
fputs ($file, "<?php \$estc = \"$estc\"; ?>");
}
flock($file, 3);
fclose ($file);
echo "Done!<br /><br />Please remove this script now.";

?>

Dazu müssen die MySQL Einstellungen oben angepasst und das Script in das /cadmin Verzeichnis hochgeladen werden. Danach muss das Script im Browser ausgeführt werden.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.