ChinaUnix.net
相关文章推荐:

php 64位 linux

环境 64位CentOS 6.5(下的是400M的CentOS-6.5-x86_64-minimal.iso) php-5.3.28 Mysql-5.6.15,官网载的rpm包 mysql-server,mysql-client,mysql-devel,mysql-embedded,mysql-shared,mysql-compat,mysql-test 这几个全都装了 PHP编译语句: ./configure --prefix=/usr/local/php/ --enable-fpm --with-mysql=/usr/include/mysql/ --with-zlib-dir=/usr/include/ 提示错误 configure: error: mysql configure failed. Ple...

by 那只咸鱼 - PHP - 2014-01-02 15:36:35 阅读(4653) 回复(8)

相关讨论

apache+php 分别 安装到 64位 和32位的系统中(都4G内存), 同样的安装配置, apache 用prefork方式, 64位的php进程 占用的内存 是 32位的一倍以上,机器负载能力,并没有提高多少。

by blackface - PHP - 2008-11-04 17:58:11 阅读(2065) 回复(1)

安装win64位apache以及64位php和64位mysql Currently no official 64bit versions of Apache and PHP exists for Microsoft Windows. Only MySQL supports officially 64bit Windows. If you have a 64bit version of Windows (2003/XP/Vista) and want to keep your system pure 64bit here is the solution! In this guide I will show you how to install and set up Apache 2.2 x 64 web servers, PHP 5.2 x64 and...

php

by cu_Cbear - php文档中心 - 2011-12-21 22:12:42 阅读(2531) 回复(1)

我现在用的系统,有64位,也有32位,内存都是4G , cpu负载都不是瓶颈, 都跑一样的php,发现64的php狂吃内存, 32位的http 一个进程 占 10M左右内存,64位的竟然占 30M左右 编译参数 apache是都用prefork方式, 除了 CFLAGS="-march=xxx "; LDFLAGS="-L/usr/lib64 -L/lib64", 这两项不一样,其它是一样的 。 64位的已经 趴过几回了,请高手指教一二!

by blackface - 服务器应用 - 2008-11-21 17:51:10 阅读(2857) 回复(7)

麻烦给个下载地址 谢谢!:mrgreen:

by ztj2247 - PHP - 2008-10-21 16:15:40 阅读(1921) 回复(2)

我的新主机是64位的 装了64位的Redhat_Fedora_Core5_x86_64 可上传的php文件在ie里没法正常显示 (只显示代码) 请问谁有64bit的php 或者谁知道怎么能运行32bit版的php 谢谢! [ 本帖最后由 HonestQiao 于 2006-7-14 22:16 编辑 ]

by hoo7 - PHP - 2006-07-17 18:10:05 阅读(3038) 回复(11)

我现在用的系统,有64位,也有32位,内存都是4G , cpu负载都不是瓶颈, 都跑一样的php,发现64的php狂吃内存, 32位的http 一个进程 占 10M左右内存,64位的竟然占 30M左右 编译参数 apache是都用prefork方式, 除了 CFLAGS="-march=xxx "; LDFLAGS="-L/usr/lib64 -L/lib64", 这两项不一样,其它是一样的 。 64位的已经 趴过几回了,请高手指教一二!

by blackface - Linux系统管理 - 2008-11-05 13:05:16 阅读(3610) 回复(2)

64位系统 编译安装php+openssl 安装出错 安装步骤: # tar /root/software/openssl-0.9.8b.tar.gz -C /usr/local/src/ # cd /usr/local/src/openssl-0.9.8b/ # ./config --prefix=/usr/local/ssl/ # make&&make test&&make install # tar /root/software # tar /root/software/php-4.4.9.tar.gz -C /usr/local/src/ # cd /usr/local/src/php-4.4.9/ # ./configure --with-apxs=/usr/local/apache/bin/apxs --with-gd --with-zlib-...

by johnnwang - 服务器应用 - 2009-11-30 15:29:49 阅读(9358) 回复(8)

一、首先apache安装 安装apache-2.2.6.tar.gz #Cd /backup/soft #tar –zvxf httpd-2.2.6.tar.gz #cd httpd-2.2.6 #./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-static-support --disable-userdir # make # make install 设置开机启动 # echo '/usr/local/apache2/bin/apachectl start ' >> /etc/rc.local ...

by freyson - Linux文档专区 - 2009-04-20 14:00:07 阅读(1023) 回复(0)

请问 php 如何处理 64位整数 ,需要取每个 bit, 也需要 将 bit 组合成 一个 64位数。

by connet - PHP - 2007-04-18 22:54:25 阅读(4835) 回复(1)

因为搭建测试环境需要,原apache是32位编译的,现在测试机是64位,需要编译php模块 出现"cannot open shared object file: No such file or directory"错误,经查怀疑是64位的php module不能适用于32位编译的apache。 急问怎么在该64位机上编译出32位的php module? 补充:因为apache还连接有其它很多模块,所以重新编译apache不靠谱... apache:2.0.x php:4.4.9 我修改了configure文件,把所有引用有gcc变量的地方统统替换成了...

by lc_koven - PHP - 2009-05-22 15:57:05 阅读(2490) 回复(0)