枫芸志
(adsbygoogle = window.adsbygoogle || []).push({});
运行代码提示
Error executing code: The field with id 0 does not exist in table
根据The field w...
查询所有数据库占用磁盘空间大小的SQL语句:
select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size,
concat(truncate(sum(index_length)/1024...
安装步骤如下
1. 依次运行以下命令
yum install ImageMagick
yum install ImageMagick-devel
yum install php-pear [for PECL]
安装php-pear是为了使用pecl 中的 phpize , 沒的話會出現 ERROR:...
用yum安装php-mysql的时候提示
--> php53-common conflicts with php-common
Error: php53-common conflicts with php-common
You could try using --skip-broken...
可以使用getconf LONG_BIT 或 getconf WORD_BIT命令来查看Centos版本是32位还是64位
[root@localhost ~]# getconf LONG_BIT
64
参考:如何查询Centos内核版本
...
在Apache的配置中添加了如下配置
Alias /jerry/ "/home/tom/www/"
<Directory "/home/tom/www">
Options Indexes
AllowOverride All
...