03 2016 档案
摘要:RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ %{ENV:BASE}index.php [QSA,L] If requested URI does not indicate to any existing file then redir
阅读全文
摘要:http://stackoverflow.com/questions/34552441/how-to-manage-personal-team-info-on-apple-developer-website Ever since WWDC 2015, developers now have a Pe
阅读全文
摘要:重启apache服务器 systemctl restart httpd 打开浏览器中php的错误报告 从phpinfo();中查看Loaded Configuration File 找到php.ini修改display_errors = on,开发时打开。 安装php-mysql的扩展,重启apac
阅读全文
摘要:mysql -u root -pshow databases;create database test;use test show current user name: SELECT CURRENT_USER(); set password for current user:SET PASSWORD
阅读全文
摘要:rpm -ql package-namerpm -qi package-name rpm --query centos-release
阅读全文
摘要:list installed packages with yum:yum list installed | moreyum list installed | lessyum list installed > /tmp/yum-list Update your system:sudo yum upda
阅读全文
摘要:安装apache https://www.linode.com/docs/websites/lamp/lamp-on-centos-7 之前通过下载tar.bz包安装并启动了apache,所以在启动yum安装的httpd时报错。 sudo yum install httpd 安装php PHP In
阅读全文
摘要:http://apache.org/apache 官网下载 httpd apr apr-util 的bz2源码包wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.bz2wget http://archive.apache.org/dist/a
阅读全文
摘要:The Linux “du” (Disk Usage) is a standard Unix/Linux command, used to check the information of disk usage of files and directories on a machine. The d
阅读全文
摘要:查看包名: # aapt dump badging <path-to-apk> | grep package:\ name
阅读全文
摘要:菜单->Build->Generate Signed APK 创建或选择已有 .jks文件 保存apk
阅读全文
摘要:连接FTP服务器 ftp ipaddress -> ftpusername -> password 安装vsftpd: yum install vsftpd 启动服务: /sbin/service vsftpd restart/start/stop 配置文件: /etc/vsftpd/vsftpd.
阅读全文