更新php5安装
再会。
我正在运行 Debian php 5.2.6-1+lenny9。当我最初配置服务器时,我使用 php5-mysql php5-gd 等运行 apt-get。
不知何故,我没有安装 php-curl,但我需要该库。所以我的问题是:如果我跑步
apt-get php5-curl
会发生什么?我的服务器上有实时站点。这只是使用添加的curl库重新编译php5,还是基本上只使用curl而不使用mysql和gd等进行全新安装?
Good Day.
I'm running Debian php 5.2.6-1+lenny9. When I initially configured the server, I ran the apt-get with php5-mysql php5-gd, among other others.
Somehow I didn't install with php-curl and I need that library. So my question: If I just run
apt-get php5-curl
what's going to happen? I have live sites on the sever. Will this just recompile php5 with the added curl library, or will it basically give a fresh install with only curl and not mysql, and gd, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
apt-get install php5-curl
将安装二进制包,不涉及编译。它还会自动重新启动 apache,以便新模块将在您的 php 脚本中可用。哦,如果您不确定自己在做什么,请不要在生产系统上执行此操作!设置额外的测试服务器。
apt-get install php5-curl
will install binary packages, no compiling involved. It will also automatically restart apache so the new module will be available in your php scripts.Oh, and if you are unsure about what you are doing, don't do it on a production system! Set up an additional Test server.