发布时间:2014-10-21 14:57:35
<html> <head> <title>get file input full path</title> <script language='javascript'> function getFullPath(obj) { if(obj) &nbs.........【阅读全文】
发布时间:2014-10-20 14:07:21
Linux下当以普通用户执行sudo命令时,如果出现以下的错误提示Xxx is not in the sudoers file可用以下方式解决在/etc/目录找到文件 sudoers 该文件的默认权限是 440----以下命令都是以root权限来执行---1:给该文件增加写的权限 使之权限变成6402:在该文件中加入一行文字 user_name ALL.........【阅读全文】
发布时间:2014-10-17 16:38:19
<?php $connection=ssh2_connect('172.16.10.3',22);ssh2_auth_password($connection,$user,$pass);$cmd="/data/script/start.sh knowledgelib_fix_2";$ssh2_exec($connection,$cmd);?>前提是php要安装ssh.so扩展.......【阅读全文】
发布时间:2014-10-16 16:28:46
javascript 获取指定目录下的所有文件function ShowFolderFileList(folderspec) { var fso, f, f1, fc, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFolder(folderspec); fc = .........【阅读全文】
发布时间:2014-10-15 16:21:20
php-cgi进程数不够用、php执行时间长、或者是php-cgi进程死掉,都会出现502错误。 1) . php执行时间长 如果服务器性能足够好,且宽带资源足够充足,PHP脚本没有系循环或BUG的话你可以直接将”request_terminate_timeout”设置 成0s。php-fpm.conf 103行左右<value name="request_ter.........【阅读全文】