我想安裝wordpress wih LAMP,但我不能讓它工作。我遵循了幾個教程程序,但直到現在Wordpress安裝程序不啓動。如何解決Wordpress與LAMP當一切安裝,仍然無法工作
*注:我abrv http到htp。
1 .-安裝的Apache2
2:安裝PHP7.0
3.-編輯info.php的
3.1.- HTP://本地主機顯示Apache2的頁面
3.2.- HTP ://localhost/info.php展示的php配置
4.-安裝了MySQL
4.1.-創建的數據庫
4.2.-創建用戶@本地
4.3.-授予權限並刷新
4.4.-編輯wp-config.php並在相應字段中引入數據庫,用戶和密碼。
5.-創建.htaccess文件(給了505錯誤,所以我刪除了)
6.-授予寫權「鄒至$在/ var/www/html等/文件夾
7。 - HTP:// localhost的仍然顯示Apache2的頁面
8.1.-刪除index.html,然後HTP://本地主機和瀏覽器沒有發現頁面
foder安裝$ /無功/網絡/ HTLM/
這是終端輸出的MySQL
mysql> SELECT User,Host FROM mysql.user;
+------------------+-----------+
| User | Host |
+------------------+-----------+
| [email protected] | % |
| debian-sys-maint | localhost |
| mysql.sys | localhost |
| root | localhost |
+------------------+-----------+
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| wp_umalu |
+--------------------+
mysql> show grants for [email protected];
+-------------------------------------------------------------+
| Grants for [email protected] |
+-------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'David'@'localhost' |
| GRANT ALL PRIVILEGES ON `wp_umalu`.* TO 'David'@'localhost' |
+-------------------------------------------------------------+
這是info.php的內容
<?php
echo '<h1 style="text-align: center;">Mmm.. Soup</h1>';
phpinfo();
?>
這是我的wp-config.php文件
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wp_umalu');
/** MySQL database username */
define('DB_USER', 'David');
/** MySQL database password */
define('DB_PASSWORD', 'LorenIpsum');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
我還在info.php的底部添加了以下行教程
define('FS_METHOD', 'direct');
在這一點和狀態在教程和演練似乎沒有什麼可以解決問題;我甚至嘗試使用另一個文件夾:$/var/www/wordpress和$/var/www/hrml/wordpress
我相信我已經安裝了Apache2和PHP,因爲頁面出現在瀏覽器中,MySQL有它的數據庫和用戶創建。 WordPress的文件和文件夾在$/var/www/html/...但有些不對。
這是我的發行信息:
I'm using XUBUNTU on a HP Pavilion
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.2 LTS"
NAME="Ubuntu"
VERSION="16.04.2 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.2 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial
在此先感謝;
David。
用戶名是'David @ localhost',它應該是'David' – user2182349
當你轉到http://localhost/wp-admin/install.php時會發生什麼? – tjfo
謝謝你回答傑夫,就是這樣! –