zoukankan      html  css  js  c++  java
  • php linux部署相关

    http://www.itbulu.com/wdcp-php55.html

    http://www.wdlinux.cn/wdcp/install.html

    http://www.yiichina.com/doc/guide/2.0/runtime-logging

    wdcp支持两种安装方式
    1 源码编译 此安装比较麻烦和耗时,一般是20分钟至一个小时不等,具体视机器配置情况而定
    2 RPM包安装 简单快速,下载快的话,几分钟就可以完成

    源码安装(ssh登录服务器,执行如下操作即可,需root用户身份安装)
    wget http://dl.wdlinux.cn:5180/lanmp_laster.tar.gz
    tar zxvf lanmp_laster.tar.gz
    sh install.sh
    4个可选安装,如下图

    .htaccess

    RewriteEngine on

    # if a directory or a file exists, use it directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # otherwise forward it to index.php
    RewriteRule . index.php

    ----------------------------------------------------

    1、拉取代码倒根目录
    2、安装composer
    3、执行 composer global require "fxp/composer-asset-plugin:~1.0.0"
    4、在项目根目录下执行 composer update
    5、在项目根目录下执行 ./init
    6、在项目根目录下执行./yii migrate

    ----------------------------------------------------------------

    memcache 安装

    1、wget https://pecl.php.net/get/memcache-3.0.8.tgz

    2、gzip -d memcache-3.0.8.tgz

    3、tar xvf memcache-3.0.8.tar

    4、cd memcache-3.0.8

    5、/www/wdlinux/php/bin/phpize

    6、./configure --enable-memcache --with-php-config=/www/wdlinux/php/bin/php-config --with-zlib-dir

    7、make
    8、make install

  • 相关阅读:
    汇编指令(它不区分大小写)
    汇编
    LINUX命令
    LInux 终端命令
    回文串的Manacher算法
    hdu3336 Counting the string kmp的next数组的应用
    hdu2203kmp匹配
    hdu2087kmp模板练习
    hdu1171kmp果题
    hdu1686kmp果题
  • 原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/4771764.html
Copyright © 2011-2022 走看看