Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Angel Motta
Hi again One Question i downloaded again the file zip and now I can run the configure without errors. =) But when I run "make test" I receive this error make test +---+ | ! ERROR ! | | The test

Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Angel Motta
Ohhh Christopher I think you have the reason. When I was trying to unzipping again I see this: [r...@zimbra instantclient]# unzip instantclient-basic-linux32-11.2.0.1.zip Archive: instantclient-basic-linux32-11.2.0.1.zip inflating: instantclient_11_2/adrci inflating: instantclient_11_2/BASIC_R

Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Christopher Jones
The error "/opt/instantclient/libclntsh.so: file not recognized: File format not recognized" still makes me think there is an installation issue. Make the libclntsh symbolic link points to the right file. See http://www.oracle.com/technology/pub/notes/technote_php_instant.html And/or try unzippi

Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Angel Motta
Sorry for send twice. I forgot php version and apache php-5.2.8 apache: httpd-2.2.12 2010/3/8 Angel Motta > Hi Christopher and Thanks for your assistance > > I am using: > RHEL 5.3 - 32bit platform > instantclient-basic-linux32-11.2.0.1.zip > instantclient-sdk-linux32-11.2.0.1.zip > > I want to

Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Angel Motta
Hi Christopher and Thanks for your assistance I am using: RHEL 5.3 - 32bit platform instantclient-basic-linux32-11.2.0.1.zip instantclient-sdk-linux32-11.2.0.1.zip I want to install oci8 support with snmp. When I enable snmp-support (that is my objective) in the configure I get this error: ./con

Re: [PHP-INSTALL] error instant client PHP configure script

2010-03-08 Thread Christopher Jones
What platform? What PHP version? Are you doing something like using 32 bit instantclient on a 64 bit machine? Chris Angel Motta wrote: Hi List Is my first time that I write to this list. I am having problems to compile php with oci support. I run this: ./configure --prefix=/usr/local/php --wi

Re: [PHP-INSTALL] error when running PHP 5 CLI on shared Linux Godaddy account

2009-02-11 Thread Patrick Price
Thanks for the response. I updated my php5.ini and no longer get the error: Failed loading /usr/local/zo/4_3/ZendOptimizer.so: /usr/local/zo/4_3/ZendOptimizer.so: undefined symbol: empty_string But I still am getting the error: /web/cgi-bin/php5: Symbol `client_errors' has different size in shar

Re: [PHP-INSTALL] error when running PHP 5 CLI on shared Linux Godaddy account

2009-02-11 Thread Paul Reinheimer
Hi Peter, I think the problem is here: > /web/cgi-bin/php5: Symbol `client_errors' has different size in shared > object, consider re-linking > Failed loading /usr/local/zo/4_3/ZendOptimizer.so: > /usr/local/zo/4_3/ZendOptimizer.so: undefined symbol: empty_string > zend_extension=/usr/local/zo/

[PHP-INSTALL] RE [PHP-INSTALL] Error when installing PHP 4.3.2. on Win XP

2009-02-11 Thread j . kaluza
check that php4apache.dll is in c:\php. Looks like apache script parser cannot locate that dll file. If this file is in a different folder, just copy paste it and make sure to change windows "\" to apache config format "/" Jerôme Kaluza Service du Sang Service Informatique Croix-Rouge de Belgiq

[PHP-INSTALL] RE [PHP-INSTALL] Error when installing 5.2.8 on Win XP

2009-02-09 Thread j . kaluza
Did you try to install from zip archive also ? I had same problem on windows vista and i used zip php package and it worked fine. Jerôme Kaluza Service du Sang Service Informatique Croix-Rouge de Belgique rue de Stalle 96 - 5e étage B-1180 Bruxelles Tél. : + 32 (0)2 371 35 05 GSM : +32 (0)473 80

RE: [PHP-INSTALL] error http 403

2007-11-27 Thread Andy Stratton
Hi Susan, Try adding: Order Allow,Deny Allow from all Into the wrapper for the directory containing the files you want to serve. You'll also want to check to make sure the user Apache is running as has at least read permissions to the file(s). -- Andy Stratton, ZCE Software/N

RE: [PHP-INSTALL] Error 404 configuring php

2007-11-26 Thread Andy Stratton
- From: Oscar Giron [mailto:[EMAIL PROTECTED] Sent: Friday, November 23, 2007 12:18 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-INSTALL] Error 404 configuring php I'm new on this and not sure what you are asking for. Do you think that i should rather use the newest versions on

Re: [PHP-INSTALL] Error 404 configuring php

2007-11-23 Thread Arno Venner
Hi. 2007/11/22, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > Oscar, > > Can you send your PHP install path, the path of the phpinfo() file, and > attach your httpd.conf? > > Thanks, > > Andy Stratton, ZCE > COMPASS Information Systems, Inc. > 1756 Belle Court > Millersville, MD 21108 > (410) 923-630

RE: [PHP-INSTALL] Error 404 configuring php

2007-11-21 Thread astratton
Oscar,Can you send your PHP install path, the path of the phpinfo() file, and attach your httpd.conf?Thanks,Andy Stratton, ZCE COMPASS Information Systems, Inc. 1756 Belle Court Millersville, MD 21108 (410) 923-6300 Office (410) 923-2820 Fax (443) 623-6835 Mobile Original Message

Re: [PHP-INSTALL] Error while cross-compiling PHP 5.2.1

2007-02-20 Thread Colin Dean
Colin Dean wrote: > I'm a new subscriber, so I hope that I've targeted the correct list for this issue. > > I'm attempting to cross-compile PHP on x86 for 386. I'm using uClibc and gcc4. > I have apparently directed this to the wrong list, or someone is investigating this bug and hasn't foun

Re: [PHP-INSTALL] Error compiling PHP...

2006-09-13 Thread Hendrik Schmieder
Jan van der Merwe schrieb: Hi Guys, I'm compiling PHP 4.3.2 on Fedora Core 4 with Apache Apache/2.0.54. Here is my configure command: ./configure --with-mysql --with-apxs2 Can someone find something in my "make" log entry that would explain what is going wrong? It seems to me that perhaps the

Re: [PHP-INSTALL] Error - Notice: Undefined offset:

2006-05-07 Thread Jeremy Oliver
Peter Hi, thanks a lot, that worked a treat. Regards Jeremy Peter Hodge wrote: Hi, $string doesn't have any spaces in it, so after you do explode: $string_arr=explode(" ",$string); $string_arr only has one element in it ($string_arr[0]). You are trying to access elements 0,1,2,3,4,5,6,7,8

Re: [PHP-INSTALL] Error - Notice: Undefined offset:

2006-05-06 Thread Peter Hodge
Hi, $string doesn't have any spaces in it, so after you do explode: $string_arr=explode(" ",$string); $string_arr only has one element in it ($string_arr[0]). You are trying to access elements 0,1,2,3,4,5,6,7,8,9, but 1-9 don't exist when there is no space character in $string. You could chang

Re: [PHP-INSTALL] Error installing PHP 5.0.4

2005-04-05 Thread Wayne Marsh
Kevin Millecam wrote: Hi, I'm getting the same error as the previous poster. Here is my debug.log: CONFIGURE: './configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-mysql=/usr/local/mysql' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-mysql-sock=/tmp/mysql.sock' '--with-conf

Re: [PHP-INSTALL] Error in Hexadecimal Conversion

2005-03-26 Thread Allan Cooper
Hi Ron I notice you use short tags, did you update this in php.conf file? short_open_tag = On I'm not sure if default is on or off. I know this a simple solution, but sometimes the obvious is overlooked :+) Regards Allan Ron Reid wrote: Hello, I use XTea for encrypting credit card data. My curre

Re: [PHP-INSTALL] Error trying to list images in a directory

2004-10-20 Thread Janet Valade
Scott Hamm wrote: While trying to learn Php/MySQL from "Php 5/MySQL Programming for the absolute beginner" book, I copied the exact code and yet ran into error saying: "Parse error: syntax error, unexpected $end in C:\Program Files\Apache Group\Apache2\htdocs\Calendar\Two\test.php on line 41" Line

RE: [PHP-INSTALL] Error trying to list images in a directory

2004-10-20 Thread Scott Hamm
, October 20, 2004 10:11 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-INSTALL] Error trying to list images in a directory At 08:11 AM 10/20/04, Scott Hamm wrote: >While trying to learn Php/MySQL from "Php 5/MySQL Programming for the >absolute beginner" book, I copied the exact code

Re: [PHP-INSTALL] Error trying to list images in a directory

2004-10-20 Thread Frank Bax
At 08:11 AM 10/20/04, Scott Hamm wrote: While trying to learn Php/MySQL from "Php 5/MySQL Programming for the absolute beginner" book, I copied the exact code and yet ran into error saying: "Parse error: syntax error, unexpected $end in C:\Program Files\Apache Group\Apache2\htdocs\Calendar\Two\test

Re: [PHP-INSTALL] error since installing

2004-07-14 Thread Chris Hewitt
Mark wrote: can someone tell me what this means. only noticed since i did my php install [Mon Jul 12 23:10:55 2004] [error] PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by re ference, modify the declaration of xml_set_object

Re: [PHP-INSTALL] Error

2004-05-11 Thread Chris Hewitt
Pepe wrote: I have a problem! *Fatal error*: Call to undefined function: printer_open() in */home/ier/pruebas/printer.php* on line *4* My English is very poor. Sorry! My server is Red Hat 9. My file php.ini is attached. Thank you! Pepe, The PHP manual says that the prin

RE: [PHP-INSTALL] Error when running make test on 4.3.6

2004-04-20 Thread Dan Aloma
Sorry. I didn't put the whole error message. It looks like this: = FAILED TEST SUMMARY - Testing $argc and $argv handling (GET) [tests/basic/011.phpt] ===

Re: [PHP-INSTALL] Error compiling php-4.3.6

2004-04-20 Thread Mike Ryerse
Yeah, I read that too, I didn't notice the blip about it being fixed in php5 though. They also say they won't fix it in php4. The interesting thing is that I was able to compile and make install at one point, but apache would not load libphp4.so, saying undefined symbol: OPENSSL_add_all_algorithms

Re: [PHP-INSTALL] Error compiling php-4.3.6

2004-04-19 Thread Matt M.
Mike Ryerse wrote: Hi, I've been racking my brain on this for quite a while now. Any help at all is much appreciated (I might start going bald early at this rate of frustration!) When I compile php, ./configure (with options) runs w/o error, but when I make I get the following: main/network.lo: I

Re: [PHP-INSTALL] Error: Cannot load libphp4.so

2004-03-20 Thread Chris Hewitt
mariano aragon wrote: Hi, I followed the instructions to install apache and php on my linux (RedHat9). I added the module php in the httpd.conf: LoadModule php4_module libexec/libphp4.so although the file libphp4.so does not exist in /usr/local/libexec/ nor the folder /usr/local/apache/libexec/

Re: [PHP-INSTALL] Error on HP-UX compilation

2003-10-10 Thread Jim Thome
You need to hack your apxs script to get it to build a DSO on HPUX. There are 2 places in the apxs script to do this, depending on your version of Apache. Change the line: my $dso_ext = "so"; to: my $dso_ext = "sl"; and change the line: $d =~ s|\.so$||; to: $d =~ s|\.sl$||; -- Jim >>> Rodrig

Re: [PHP-INSTALL] Error on HP-UX compilation

2003-10-08 Thread Jim Thome
What is your PHP configure line? What version of PHP? >>> Rodrigo Reis da Rocha <[EMAIL PROTECTED]> 10/08/03 07:42AM >>> Hi! Somebody already have sucessifully compiled php with apache and oracle in HP-UX 11.11 ? I had this error and I con't know how to move on... In file included from /usr/inc

Re: [PHP-INSTALL] Error During make: /usr/bin/ld: cannot find -lsasl

2003-08-26 Thread Edgar Bonet
Hi! On Tuesday August 26, 11:53, Daniel wrote: > /usr/bin/ld: cannot find -lsasl It'a missing libsasl ("SASL is the Simple Authentication and Security Layer" according to the libsasl7 package description on Mandrake). > The last thing 'make' did was ... > /usr/lib/libxml2.so -lpthread -lz -lm -l

RE: [PHP-INSTALL] Error using GD with php 5.0...

2003-08-24 Thread Jens Rosenthal
Hi, Seem's a bit off-topic to me ;-) I'd suggest putting an "ImagePNG ($im);" at the end of xour file, and I think it is much better then... Without it, you're simply creating the image, but you don't send it to the client (=browser) Greetings, Jens -Original Message- From: Rajeev Ramda