What version of php is required for DreamWeaver?

尊渡假赌尊渡假赌尊渡假赌
Release: 2023-06-06 14:28:07
Original
1158 people have browsed it

Dreamweaver requires PHP version 5.2 and above. The installation method: 1. First install PHP and configure the environment; 2. Download the DedeCMS installation package and extract it to the root directory of the website; 3. Open the website URL and follow Prompt to complete the installation; 4. After the installation is completed, you can access the Dreamweaver backend through http://localhost/yourwebsite.

What version of php is required for DreamWeaver?

Operating system for this tutorial: Windows 10 system, php8.1.3 version, Dell G3 computer.

DedeCMS requires PHP version 5.2 and above to run.

Simple steps to install and configure PHP on Windows operating system:

1. Download the PHP installation package and extract it to a directory (e.g. C:\php).

2. Open the command prompt and enter the following command: cd C:\php

3. Run the following command at the command prompt: php.exe -i to ensure that PHP has Installed and configured correctly.

4. Configure the PHP.ini file. This file is usually in the PHP directory. You can open it for editing or copy php.ini-development or php.ini-production as the initial file. You need to edit the following settings:

;extension_dir = "ext"  # 取消注释,并将路径设置为 PHP 扩展文件的目录。
extension=mysqli # 去掉前面的分号, 启用MySQLi连接
date.timezone = Asia/Shanghai # 设置时区
upload_max_filesize = 20M # 设置上传文件的最大大小
Copy after login

5. After the configuration is completed, save the file and restart the web server (if you are using Apache, you need to restart Apache, if you are using Nginx, please restart Nginx).

屏幕截图 2023-06-06 110820.png

After installing and configuring PHP, you can follow the steps belowInstall DreamWeaver:

  1. Download DedeCMS installation package and extract it to the root directory of your website (for example, C:\xampp\htdocs\yourwebsite).

  2. Open your website URL (for example http://localhost/yourwebsite) and follow the prompts to complete the installation.

After the installation is completed, you can access the DreamWeaver backend through http://localhost/yourwebsite.

The above is the detailed content of What version of php is required for DreamWeaver?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!