### 安装
* * *
1. 获取点企来压缩包
![](https://box.kancloud.cn/88cb1123048801315b45319c4f1baea4_220x40.png)
2. 解压,并把zjhj\_cs放入服务器中
3. 项目可用nginx+php-fpm或者apache来运行(二者选其一即可),配置参考如下。
* nginx配置
~~~
server {
listen 80;
server_name 你的域名;
root 实际磁盘路径/zjhj_cs/public;
client_max_body_size 18M;
index index.php index.html;
location / {
index index.html index.php;
}
location ~ \/upload\/.*\.php {
deny all;
return 404;
}
if (!-e $request_filename) {
rewrite ^/index.php(.*)$ /index.php?s=$1 last;
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
location ~ \.php$ {
add_header Access-Control-Allow-Origin *;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
~~~
* apache配置(需要httpd.conf配置文件中加载了mod\_rewrite.so模块)
~~~
<Directory "实际磁盘路径/zjhj_cs/public">
Options Indexes MultiViews
AllowOverride All
Require all granted
</Directory>
<VirtualHost *:80>
DocumentRoot "实际磁盘路径/zjhj_cs/public"
ServerName 你的域名
</VirtualHost>
~~~
* IIS配置
如果你的服务器环境支持ISAPI\_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:
~~~
RewriteRule (.*)$ /index\.php\?s=$1 [I]
~~~
在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:
~~~
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
~~~
4. 配置好后访问[http://你的域名/install.php](http://xn--6qqv7i2xdt95b/install.php),然后根据步骤提示安装即可。
* 系统会自动检查环境是否ok。
![](https://box.kancloud.cn/bab334ebbf5be772a3a0694273a3090e_1092x1290.png)
* 配置数据库相关信息,其中服务器端口配置用默认值即可
![](https://box.kancloud.cn/79061afbc2298925c74a9cda1dfc4405_1057x1256.png)
* 安装成功
![](https://box.kancloud.cn/ac06a4a4ffb210146c2df303900eef07_1124x421.png)
> 安装完毕后即可进入管理平台
5. 开启推送服务
cd /实际磁盘路径/zjhj\_cs/zjhj\_pusher
windows:php start.php (不可关闭窗口)
linux: php start.php start -d (后台运行)
![](https://box.kancloud.cn/718468fc35646b33570e7f23c6914eca_1235x217.png)
出现以上页面表示推送服务开启成功。如有报错请检查 实际磁盘路径/zjhj\_cs/zjhj\_pusher/config.php $app\_key $app\_secret $app\_id 与 实际磁盘路径/zjhj\_cs/public/index.php中变量是否保持一致
至此,程序安装完全。谢谢使用