Ich versuche über das Terminal meines MacBooks (Mac OS X Yosemite) ein PHP-Skript ausführen. Um eine Datenbankverbindung aufzubauen, include ich meine db.inc.php. Das... will aber nicht so richtig.
php /Applications/XAMPP/xamppfiles/htdocs/cronjobs.php
db.inc.php on line 2:
und wenn ich localhost als Host angebe (was ich muss, wie ich gerade sehe, da sonst meine anderen Skripte nicht gehen), dann bekomme ich diese Fehlermeldung:
php /Applications/XAMPP/xamppfiles/htdocs/cronjobs.php
Code:
PHP Warning: mysqli_connect(): (HY000/2002): Connection refused in /Applications/XAMPP/xamppfiles/htdocs/db.inc.php on line 2 Verbindungsfehler: Connection refused
PHP-Code:
$db = mysqli_connect("127.0.0.1", "root", "123", "leviathalis");
Code:
PHP Warning: mysqli_connect(): (HY000/2002): No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/db.inc.php on line 2
Kommentar