我从这篇文章中安装了 Apache2:http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-ubuntu-12.04-lts-lamp
然后我想把我的网站文件和数据库我复制的网站文件放在www路径上。
然后,创建数据库并导入 [database.sql]
当我输入网站 [http://localhost/website] 显示 [错误]
我的配置文件:
<pre>
// Information
$server = "localhost";
$username = "root";
$password = "root";
$dbname = "wecg";
// Connect
$connectdb = mysql_connect($server,$username,$password) or die("error");
$selectdb = mysql_select_db($dbname,$connectdb) or die("error");
?>
答案1
我认为这需要移动,但这里有两件事。
PHP 的 mysql_* 函数已弃用,因此您现在应该使用 PDO,它使用起来非常简单。
我们需要的另一件事是错误输出。根据上面的内容,您需要将代码更改为以下内容(对两者执行此操作)
... or die(mysql_error());
它不仅仅是显示错误,还会告诉您/我们确切的问题。