<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL

        來源:懂視網 責編:小采 時間:2020-11-09 19:29:57
        文檔

        HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL

        HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL:WordPressApache WordPress is free and open source blogging tool written in PHP andMySQlas default database. its probably the easiest and most powerful blogging and website c
        推薦度:
        導讀HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL:WordPressApache WordPress is free and open source blogging tool written in PHP andMySQlas default database. its probably the easiest and most powerful blogging and website c
        WordPressApache

        WordPress is free and open source blogging tool written in PHP andMySQlas default database. it’s probably the easiest and most powerful blogging and website content management system (orCMS) in existence today. In addition, WordPress is a way of getting information up on the web. It was first set up for bloggers and is now used to build websites large and small. It is now the largest self-hosted website building tool in the world.

        This tutorial will describe basic step how to installing fresh wordpress 3.9 with Apache2,Mysql5.5 and PHP 5.5 in Ubuntu Server 14.04 LTS .

        Step 1 : Setup LAMP Stack

        Before installing wordpress you need to have a LAMP (Linux, Apache2, MySQL5, and PHP5) stack installed on yourUbuntu Server14.04. If you don’t have these components already installed and configured, you can use this tutorial to learn how to Install LAMP Stack on Ubuntu Server 14.04 .

        Step 2 : Create Database and User for WordPress

        Log in tomysqlserver as root user by typing the following command

        mysql -u root -p

        Once Successful login to the Mysql Server, use these command to create database for wordpress. In this case I will give the name of the wordpress database as dbwordpress, You can call this whatever you would like.

        CREATE DATABASE dbwordpress;

        Next, we are going to create a separate MySQL user account and give this user a password. On this case I will call the new account “wpuser” and password for new account “ wpP@5sw0Rd “, you should definitely change the password for your installation and can name the user whatever you’d like. You can do this by typing the following command:

        CREATE USER wpuser@localhost IDENTIFIED BY 'wpP@5sw0Rd';

        Next, grant all privileges on the database you just created to the new user by running the commands below

        GRANT ALL PRIVILEGES ON dbwordpress.* TO wpuser@localhost;

        We need to flush the privileges so that the current instance of MySQL knows about the recent privilege changes we’ve made:

        FLUSH PRIVILEGES;

        And finally we exit the MySQL terminal by entering:

        exit;

        Create Database and User for WordPress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Step 3 : Download WordPress Latest Version

        Enter to directory Document root ofApache:

        cd /var/www/html

        Download wordpress latest version from the project’s website with the following commad:

        sudo wget http://wordpress.org/latest.tar.gz

        Extract the files “latest.tar.gz” to rebuild the WordPress directory with these command:

        sudo tar -zxvf latest.tar.gz

        This will create a directory called wordpress in directory /var/www/html

        create a directory called wordpress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Copy all file on wordpress directory in toApache‘s document root , we recommend to use rsync command for preserves permissions and data integrity:

        sudo rsync -avP wordpress/ /var/www/html

        Or, you can doing it without mentioning Apache’s document root:

        sudo rsync -avP wordpress/ .

        Once copying all file on wordpress directory is complete. Remove wordpress directory and file latest.tar.gz

        sudo rm -rf wordpress/ latest.tar.gz

        Give permissions to user and group (www-data) over everything under directory /var/www/html

        sudo chown -R www-data:www-data /var/www/html

        Give permissions to user and group www data How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Step 4 : Install WordPress through the Web Browser

        Complete the wordpress installation through the web browser, In your web browser, navigate to your server’s domain name or public IP address [http://ip_public] or [http://domain]

        You should see this image:

        Create Configuration File for WordPress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        we need some information on the database How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Click on Create Configuration File, followed by Let’s Go in the next step. In the 3rd step, enter the details as follows:

        Database Name: dbwordpress

        User Name: wpuser

        Password: wpP@5sw0Rd

        Database Host: localhost

        Table Prefix: wp_

        Selection 211 How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        After click on Submit. you should get the following page. Click Run Install

        run install wordpress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Now you will see the WordPress initial configuration page, Fill out the information for the site such as Site title, Username, Password and Your Email, Check list on privacy option if you allow search engine crawling your site. Then and click Install WordPress

        WordPress Installation How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        WordPress will confirm the installation process is success. It also show you login account that have been created on previous step.

        Selection 212 How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Hit the log in button if you want login to wordpress dashboard.

        Just another WordPress site How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Additonal Setting – WordPress Permalinks

        By default, WordPress create URLs dynamically that look something like this [ domain/?page_id=4 ] to enable URL friendly you need to have an .htaccess file on root directory where wordpress installed, The first thing you do is edit the file /etc/apache2/sites-available/000-default.conf.

        sudo nano /etc/apache2/sites-available/000-default.conf

        Add the following line under option ( DocumentRoot /var/www/html) on section

        ServerName domain_or_IPAllowOverride All

        Example:

        add option on file 000 default conf How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        Enable the rewrite module with these command:

        sudo a2enmod rewrite

        Restart apache2 service:

        sudo service apache2 restart

        Create empty file .htaccess in your document root

        sudo touch /var/ww/html/.htaccess

        Give permission file .htaccess with username and group (www-data)

        sudo chown www-data:www-data /var/ww/html/.htaccess

        Set permission file /var/www/html/.htaccess to 644

        sudo chmod 664 /var/www/html/.htaccess

        Now you can setting wordpress permaliks from wordpress dashboard, navigate to Settings -> Permalinks

        Setting Wordpress Permalinks How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

        The following video created by LinuxScoop and is describes How to install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP5.5 in Ubuntu Server 14.04 LTS . Original video you can found here

        Note: This tutorial have been tested on VPS DigitalOcean 512MB

        Link Reference :

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL

        HowtoInstallWordPress3.9withApache2+MySQL5.5+PHP_MySQL:WordPressApache WordPress is free and open source blogging tool written in PHP andMySQlas default database. its probably the easiest and most powerful blogging and website c
        推薦度:
        標簽: php ph to
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 亚洲一卡2卡3卡4卡国产网站| 国产成人亚洲精品影院| 亚洲黄色在线观看视频| 免费黄网站在线观看| 亚洲另类激情综合偷自拍图| 中国videos性高清免费| 在线日韩日本国产亚洲| 久久精品无码专区免费| 亚洲人成人一区二区三区| 在线看片免费人成视频播| 黑人精品videos亚洲人| 亚洲视频在线免费观看| 亚洲欧洲日本天天堂在线观看| 中文字幕在线观看免费视频| 亚洲午夜成激人情在线影院| 大学生高清一级毛片免费| 国产精品亚洲专一区二区三区| 人人狠狠综合久久亚洲高清| 一级做a爱过程免费视| 亚洲s色大片在线观看| 成年黄网站色大免费全看| 亚洲中文字幕AV在天堂| 国产精品免费_区二区三区观看 | 亚洲AV日韩AV永久无码下载| 麻豆高清免费国产一区| 亚洲中文字幕无码mv| 亚洲一区二区三区乱码A| 91香蕉国产线在线观看免费| 亚洲人成网站色7799| 亚洲午夜无码片在线观看影院猛| 日韩电影免费在线观看| 亚洲高清中文字幕免费| 综合亚洲伊人午夜网| 国产成人精品免费视频网页大全 | 免费人成激情视频在线观看冫| 亚洲色图国产精品| 曰皮全部过程视频免费国产30分钟 | 国产精品小视频免费无限app| 亚洲成人激情在线| 国产成人涩涩涩视频在线观看免费| aa在线免费观看|