2019-08-26 CMS 网站管理

CMS 选择开源的产品

微软:Word Express

网站链接:https://wordpress.org/download/

提供下载链接:https://wordpress.org/latest.zip

安装帮助:https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation

安装需求:https://wordpress.org/about/requirements/

PHP 7.3 or greater

MySQL 5.6 or greater OR MariaDB 10.0 or greater

Nginx or Apache with mod_rewrite module

HTTPS support

中文开发与支持帮助

https://codex.wordpress.org/zh-cn:Main_Page

https://www.jb51.net/cms/list419_1.html

例子

https://www.jb51.net/cms/488232.html


根据安装需求,确定下一步需要准备的软件产品


PHP:

网站链接:https://www.php.net/

PHP 7.3.8 Release Announcement

下载链接:

参考:

https://www.php.net/downloads.php

https://windows.php.net/download#php-7.3

windows

确定下载链接

IIS

VC15 x64 Non Thread Safe (2019-Jul-30 16:05:44)

Zip[24.4MB]

sha256: 19898b2c0f60e022a9567b6ff916e20881ac8907051f116915a55bc419ae64be

https://windows.php.net/downloads/releases/php-7.3.8-nts-Win32-VC15-x64.zip

Apache

VC15 x64 Thread Safe (2019-Jul-30 16:05:58)

Zip[24.53MB]

sha256: 9b9339010e8bbbf4b0945cc196ed4679971462695bc622ab097e1bc0ee117fba

https://windows.php.net/downloads/releases/php-7.3.8-Win32-VC15-x64.zip


附加需求:

VC14, VC15 & VS16

More recent versions of PHP are built with VC14, VC15 or VS16 (Visual Studio 2015, 2017 or 2019 compiler respectively) and

include improvements in performance and stability.

- The VC14, VC15 and VS16 builds require to have theVisual C++ Redistributable for Visual Studio 2015-2019x64orx86installed

https://aka.ms/vs/16/release/VC_redist.x64.exe


MariaDB:

数据库:因为开源而且有维护,选择MariaDB,MySQL已经被Oracle公司购买。

网站链接:https://downloads.mariadb.org/

下载链接:https://downloads.mariadb.org/mariadb/10.4.7/

选择合适的发布类型:例如,win64 zip

https://downloads.mariadb.org/f/mariadb-10.4.7/winx64-packages/mariadb-10.4.7-winx64.zip/from/http%3A//ftp.nluug.nl/db/mariadb/?serve

版本说明:

https://mariadb.com/kb/en/library/mariadb-1047-release-notes/

About this Release

MariaDB Server 10.4.7 was released on 31 Jul 2019.


Apache

网站链接:http://httpd.apache.org/

下载链接:

选择  apachehaus

https://www.apachehaus.com/cgi-bin/download.plx

Apache 2.4.41 x64

https://www.apachehaus.com/downloads/httpd-2.4.41-o102s-x64-vc14-r2.zip

选择 Apache Lounge

https://www.apachelounge.com/download/

Apache 2.4.41 Win64

httpd-2.4.41-win64-VS16.zip

https://www.apachelounge.com/download/VS16/binaries/httpd-2.4.41-win64-VS16.zip

选择 bitnami

https://bitnami.com/stack/wamp/installer

https://bitnami.com/redirect/to/656048/bitnami-wampstack-7.3.8-0-windows-x64-installer.exe

选择 XAMPP
https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/7.3.8/

https://nchc.dl.sourceforge.net/project/xampp/XAMPP%20Windows/7.3.8/xampp-portable-windows-x64-7.3.8-2-VC15.zip

https://www.apachefriends.org/zh_cn/download.html


Nginx

网站链接:http://nginx.org/

下载链接:http://nginx.org/en/download.html

Stable version  Windows

nginx/Windows-1.16.1

http://nginx.org/download/nginx-1.16.1.zip

安装帮助:http://www.nginx.cn/doc/


如果需要linux版本的,需要找另一系列的数据库,PHP,nginx,apache httpd版本。

现在,是确定下一步要做的事情:

从 服务器类型:

windows ->

http服务器 三选一(IIS 内置可选,Apache httpd 下载可选,nginx下载可选 )

 php7.3.8  二选一 (for IIS No Thread Safe,for Apache httpd Thread Safe)

MariaDB 单选 win64 zip


顺序是:

1、MariaDB

2、Apache httpd  or  IIS or nginx

3、php7.3.8  Thread Safe or No Thread Safe and  VC_redist.x64.exe

4、Word Express

5、配置内容

6、检查并发布


apache安装

D:\software\CMS\httpd-2.4.41-win64-VS16

To install as a service. Open command prompt as Administrator and type:

copy software to c:\Apache24

edit conf\httpd.conf

      Listen 8090

save and exit

open windows powershell 管理员模式

cd  C:\Apache24

C:\Apache24\bin> cmd

Microsoft Windows [版本 10.0.17763.678]

(c) 2018 Microsoft Corporation。保留所有权利。

C:\Apache24\bin>httpd.exe -k install

    >httpd.exe -k install


php7  C:/php-7.3.8-Win32-VC15-x64

# php7 support

LoadModule php5_module C:/php-7.3.8-Win32-VC15-x64/php7apache2_4.dll

AddType application/x-httpd-php .php .html .htm

# configure the path to php.ini

PHPIniDir "C:/php-7.3.8-Win32-VC15-x64"

你可能感兴趣的:(2019-08-26 CMS 网站管理)