search
HomeBackend DevelopmentPHP TutorialComplete tutorial for Drupal7 installation, drupal7 tutorial_PHP tutorial

Drupal7 installation complete tutorial, drupal7 tutorial

Drupal7 pre-historic preparations (installing AppServ)
AppServ is a PHP web framework Website tool package, the author repackages some free website building resources on the Internet into a single installation program to facilitate beginners to quickly complete the website building. The software included in AppServ is: Apache,
Apache Monitor, PHP, MySQL , phpMyAdmin, etc.
1. Download appserv-win32-2.5.10.exe (http://www.appservnetwork.com)


2. Install appserv. For detailed instructions, see:
http://jingyan.baidu.com/article/91f5db1bf72ac01c7f05e3a7.html
Recommendation: Set the Web service port to 8080 during installation to avoid interference with IIS Service port 80 conflict.


3. Create and manage database: visit http://localhost:8080, click "phpMyAdmin Database Manager"
to enter the mysql database management platform. The default user is root and the password is empty.


Remark 1: "phpmyadmin detailed graphic tutorial" see:
http://jingyan.baidu.com/article/154b4631a9a9b828cb8f416c.html
After root login, enter " "Permissions", find the corresponding user, click the "Edit Permissions" button,
to modify the password or permissions.


Remark 2: XAMPP (Apache+MySQL+PHP+PERL) is recommended, which is a powerful website building software package. The original name of this software package was LAMPP, but in order to avoid misunderstanding, the latest versions were renamed
to XAMPP. It can be installed
and used under various operating systems such as Windows, Linux, Solaris, Mac OS X, etc., and supports multiple languages: English, Simplified Chinese, Traditional Chinese, Korean, Russian, Japanese, etc.


Drupal7 installation preparations1. Download drupal7 (http://drupalchina.cn/download), unzip the folder and rename it drupal7, copy to
D: AppServwww directory.

2. Download the language pack file (http://drupalchina.cn/download) and install the language pack file: Place the .po file
into the drupal7/profiles/standard/translations directory

3. Create a configuration file: Enter the sites/default directory, copy default.settings.php, and name
settings.php
To avoid "drupal7 request exception, execution time is too long" " problem, add this sentence at the end of
in settings.php (modify read-only permissions):
$conf['drupal_http_request_fails'] = FALSE;

4. Create a user file directory: Create a new directory under the sites/default directory named files

5. Set permissions:
If it is a Linux platform, please set the permissions of the files directory to 777, and set settings.php to web
Writable by the server user. If you are not sure, you can also first Set to 777.
If it is a Windows platform, refer to the figure below to set the permissions of the files directory and settings.php file to give
everyone user "full control".

6. You can visit: http://localhost:8080/drupal7 in the browser to enter the drupal7 installation and configuration interface.


Drupal7 installation and configuration process1. Select the installation method: Standard!

2. Select language: Chinese!

3. Confirm the installation conditions: modify the C:Windowsphp.ini file:
memory_limit = 32M
Restart the apache web service, refresh the current page, and enter the database configuration.

4. Database configuration
By default, only sqllite database can be connected. Of course we want to use the mysql database. what to do?
Modify the C:Windowsphp.ini file:
extension=php_pdo_mysql.dll //Enable drupal to connect to the mysql database
Restart the apache web service, refresh the current page, and display that the mysql database can be connected.
Create an empty database in advance: drupal
Be careful when configuring the database: do not enter spaces by mistake!
After this step is successful, enter the database management interface and you will see that many data tables have been automatically created, as shown below:

5. Set up the website

6. Installation completed
Note: Sometimes during the installation process, a timeout error will occur due to the installation of translation and other steps taking too long. Solve it
Method: Open the php.ini file, find max_execution_time, and change the following number to the time you
want (for example, 3000). The unit is seconds. After modification in this way, the service needs to be restarted.

7. Visit the new website

Next step: Use drupal7 well, go for it!

Reference site: http://drupalchina.cn

Attachment: Complete tutorial with pictures -http://download.csdn.net/download/huazeming999/7674957

Ask Drupal how Install?

DRUPAL must be supported by PHP and MYSQL or related databases. After decompressing DRUPAL to the space, click on the installation path in the browser. It is best to install it in the root directory, so you can directly access it by entering the domain name. Press the screen display to install the Chinese version. Package and enter the database information, and finally click OK. If it cannot be installed, the biggest problem may be that the space is not supported or the PHP and MYSQL versions are too low. Let me explain, any method of modifying the original program online is a scammer's method.

Where can I find Drupal 7 Chinese video tutorials

There are quite a few free ones in English, but I have only seen paid ones among the more systematic ones in Chinese. How about searching on Youku? There are some there, but they are not systematic enough

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/848237.htmlTechArticleDrupal7 installation complete tutorial, drupal7 tutorial Drupal7 prehistoric preparations (installing AppServ) AppServ is a PHP web page website tool package , the author reused some free website building resources on the Internet...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft