top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Do we have any users of Php say 5.6 on a FreeBSD 10.3 system installed from ports?

+1 vote
261 views

Do we have any users of Php say 5.6 on a FreeBSD 10.3 system installed from ports?

If so, can you get in touch with me? I'm trying to install pear and not having much luck, getting an error about a missing peclcmd.php file and a zlib extension that make is complaining about but which is in my php install.

posted Apr 11, 2016 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
I have installed php from ports on FreeBSD 10.1. I have had a problem compiling and installing from source in the past. It turned out that a file was miss named and caused a failure as a missing file.

You might make sure that the file is actually named correctly.

This may not be helpful but it is all I can offer.

Similar Questions
0 votes

i want to know what is the best way to install a specific version of php and have a full LAMP setup.

Ubuntu intallation of LAMP is very esay but by default I get php 5.4, and I need 5.3. If I can choose a specific version like 5.3.17 that would be even better.

+4 votes

Can someone please write a C program to reverse "N" nodes of list. In the above question N= 3.
Program should be generic so it can work for any value assigned to N.

Input List => 1 2 3 4 5 6 7 8 9 10 11
Output List => 3 2 1 6 5 4 9 8 7 10 11
for N=3

Input List => 1 2 3 4 5 6 7 8 9 10 11
Output List => 4 3 2 1 8 7 6 5 9 10 11
for n=4

+2 votes

Is it possible to use PHP 5.2.5 with Apache/2.4.6?

I have an application that was written in WAMP5 using PHP 5.2.5, and I am trying to get the application onto a CentOS server and I can't get it to work with 5.4.16.

Are there any good tutorials on using an older version of PHP with Apache?

+3 votes

I'm getting a disparity in results when setting safe_mode in php 5.6.7.

This is what I have set in my php.ini file:

$ grep safe_mode /etc/php.ini | grep -i -v -e gid -e
exec -e allowed -e sql -e protected -e include

safe_mode = Off

Yet when I grep the output of php -i I only see sql_safe_mode:

$ php -i | grep safe_mode
sql.safe_mode => Off => Off

Any ideas on this?

...