Jump to content

lsvcam

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by lsvcam

  1. Thank you! It was a password issue. First I created a ew user, which worked fine. After that, I changes the password on the existing user and it works, too. Thanks a lot for your support.
  2. Thank you. I just tried several things but was not able to connect. <?php error_reporting(E_ALL); ini_set("display_errors", 1); echo "<html><head></head><body>"; #$db_host = '64.62.151.106'; #$db_host = 'lsvcam.heliohost.us'; $db_host = 'johnny.heliohost.org'; $db_user = 'lsvcam_webcamLSVdbUser'; $db_pass = '-----'; $db_database = 'lsvcam_webcamData'; $db_port = '3306'; $conn = mysqli_connect($db_host,$db_user,$db_pass,$db_database,$db_port); // Verbindung prüfen if ($conn->connect_error) { die("❌ Verbindung fehlgeschlagen: " . $conn->connect_error); } else { echo "✅ Verbindung erfolgreich hergestellt!<br>"; } // Test-Query $result = $conn->query("SHOW TABLES"); if ($result) { echo "Gefundene Tabellen:<br>"; while ($row = $result->fetch_array()) { echo $row[0] . "<br>"; } } else { echo "❌ Fehler bei Test-Query: " . $conn->error; } $conn->close(); echo "</body></html>"; ?> For all "$db_host", I got the same error message. in Plesk -> Databases -> User Management -> USER -> Access Control: Allow remote connections from any host I get the same error when trying to add the IP or www640.your-server.de Acc. to chatgpt, I should ask this Any futher ideas?
  3. Thanks, I already set this option to "Allow remote connections from any host" and also tried "Allow remote connections from". Both did not work. I still get the error message: Code: $conn = new mysqli( "lsvcam.heliohost.us", "lsvcam_webcamLSVdbUser", "xxxxxx", "lsvcam_webcamData" ); if ($conn->connect_error) { die("❌ Verbindung fehlgeschlagen: " . $conn->connect_error); } else { echo "✅ Verbindung erfolgreich hergestellt!<br>"; }v In Plesk, my Database server is: Database server localhost:3306 (default for MariaDB, v10.5.27) Can I change that to "lsvcam.heliohost.us"?
  4. Hi, please allow remote access for my mysql-database (again). lsvcam.heliohost.us Database: lsvcam_webcamData User: lsvcam_webcamLSVdbUser Thanks a lot in advance.
  5. Thanks man! I do not need data to be moved, I just need the login and use mysql... I just use the mysql DB on Johnny, I can create that using a backup from today on my own. Don't spend too much time on moving the data.
  6. Dear all, I have created an account on Johnny. Yesterday, I donated and received the confirmation (HelioHost Tommy Invitation) mail with the "Create Tommy account". Each time I click on this link, a site with title "Updating Disk quota" loads and ends in a timeout after around a minute or so. Please help me to move to Tommy or let me know, what I can do. Thanks! Best regards, Christian
×
×
  • Create New...