Strict standards: Non-static method cls_image::gd_version() should not be called statically in
Strict standards: Non-static method cls_image::gd_version() should not be called statically in E:\SiteAll\zbphp.com\www\includes\lib_base.php on line346 这个错误的的处理是修改文件...
ECShop后台报错:mktime(): You should be using the time() function instead in
ECShop安装之后,在后台发现一个错误提示: Strict Standards: mktime(): You should be using the time() function instead in E:\web\shopex\admin\shop_config.php on line 32 这个错误提示...
Strict Standards: Redefining already defined constructor for class cls_sql_dump in D:\WWW\ecshop\admin\includes\cls_sql_dump.php on line 90
Strict Standards: Redefining already defined constructor for class cls_sql_dump in D:\WWW\ecshop\admin\includes\cls_sql_dump.php on line 90此问题主要是php4与php5版本引起的 /** * 类...
mysql 启动报错 /usr/local/mysql//libexec/mysqld: Can’t create/write to file ‘/var/run/mysqld/mysqld.pid’ (Errcode: 13) 120516 15:23:19 [ERROR] Can’t start server: can’t create PID file: Permission denied
mysql启动 提示 [root@localhost var]# Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysqld/mysqld.pid 120516 15:23:19 mysqld ended...
装完Centos7提示Initial setup of CentOS Linux 7 (core)
在用U盘装完CentOS后,重新开机启动后显示: Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information (no user will be created) (license not accepted) Pleas...
秒数转换为天小时分钟秒的格式
num 为需要转换的秒数 //天数计算 int days = (num)/(24*3600); //小时计算 int hours = (num)%(24*3600)/3600; //分钟计算 int minutes = (num)%3600/60; //秒计算 int second = (num)%60; `
CentOS查看开启端口
安装nmap yum install nmap #输入y安装 使用nmap nmap localhost #查看主机当前开放的端口 nmap -p 1024-65535 localhost #查看主机端口(1024-65535)中开放的端口 nmap -PS 192.168.21.163 #...
CentOS正确关机方法
关机前准备 1.观察系统使用状态 谁在线:who 联网状态:netstat -a 后台执行的程序:ps -aux 2.通知在线使用者关机时间 shutdown +2 'The machine will shutdown' # 2min 后关机,并通知在线者 关...