2016-07-04 19 views
0

だから私はこの警告を受けていると私はそれを修正する方法の手がかりがありません。私のデータベースへの私の接続ファイルです。ストリームを開けませんでした。

Warning: require(includes/connect.inc.php): failed to open stream: No such file or directory in /customers/5/e/6/gixter.dk/httpd.www/index.php on line 4 Fatal error: require(): Failed opening required 'includes/connect.inc.php' (include_path='.:/usr/share/php') in /customers/5/e/6/gixter.dk/httpd.www/index.php on line 4 

このような私の接続ファイルを見て:

<?php 
$conn_error = 'Cound not connect to database.'; 

$mysql_host = 'xxxxx'; 
$mysql_user = 'xxxxx'; 
$mysql_pass = 'xxxxx'; 
$mysql_db = 'xxxxx'; 

if ([email protected]_connect($mysql_host, $mysql_user, $mysql_pass) or [email protected]_select_db($mysql_db)){ 
    die($conn_error); 
} 
?> 

誰でも助けることができますか?

答えて

0

指定したパスが正しくありません。ファイルが存在しないか、フォルダ内に見つかりません。それはより高いレベルにあるかもしれません。 (../)

mysql拡張機能はサポートされなくなりました。mysql_i拡張機能またはPDOをご覧ください。 MySQLは非難され、SQLインジェクションに脆弱です。

Mysql_i

PDO

関連する問題