我的php安装有一些问题,而安装我得到以下错误:
configure: error: Please install the libcurl distribution -Easy.h应该在/include/curl/
目录下安装php-5.2.8时应该使用哪个版本的libcurl
thanks in advance
Try With This
None of these will allow you to compile PHP with cURL enabled.
In order to compile with cURL, you need libcurl header files (.h files). They are usually found in /usr/include/curl. They generally are bundled in a separate development package.
Per example, to install libcurl in Ubuntu:
sudo apt-get install libcurl4-dev
Then you can just do:
./configure --with-curl # other options...
If you compile cURL manually, you can specify the path to the files without the lib or include suffix. (e.g.: /usr/local if cURL headers are in /usr/local/include/curl).
希望这会有所帮助,我必须在一个项目上做一些PHP工作,以下是我所做的步骤并为将来记录,希望它会对您或其他一些人有所帮助。
在Ubuntu 12.4上安装PHP和MySql
1-安装Apache2安装apache2-打开任何浏览器,然后输入http://localhost/
您应该看到一个名为apache2-default/的文件夹。打开它,你会看到一条消息:"它工作了!",恭喜你!
2-Install PHP:
sudo apt-get install php5 libapache2-mod-php5
请输入
sudo/etc/init.d/输入启动
3-测试PHP
sudo gedit /var/www/testphp.php
- 这将打开一个名为phptest.php的文件。
复制/粘贴这一行到phptest文件中:
保存并关闭文件,打开web浏览器,在web地址中输入以下内容:
http://localhost/testphp.php
-你应该看到一个长文件打开
4-安装MySQL
sudo apt-get install mysql-server
-为了让网络上的其他计算机查看您创建的服务器,您必须首先编辑"绑定地址"。首先打开Terminal编辑my.cnffile.
gksudo gedit /etc/mysql/my.cnf
-换行Bind-address = 127.0.0.1并将127.0.0.1更改为您的IP地址。-这就是事情可能开始变得棘手的地方。首先在终端中输入以下内容:
mysql -u root
-复制/粘贴这一行:
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('yourpassword');
-(确保将您的密码更改为您选择的密码。)-安装一个名为phpMyAdmin的程序,这是一个编辑数据库的简单工具。
sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin
-安装后,我们的下一个任务是让PHP与MySQL一起工作。为此,我们需要打开一个名为php.ini的文件。要打开它,输入以下命令:
gksudo gedit /etc/php5/apache2/php.ini
现在我们必须去掉分号(;)来取消下面一行的注释。修改这一行:
;extension=mysql.so
看起来像这样:
extension=mysql.so
现在重新启动Apache,一切都准备好了!
sudo /etc/init.d/apache2 restart