[PHP] PHP 5 Configuration

2010-07-01 Thread Gustavo Carrasco
I've been trying to install PHP5 with windows XP, but i had received the next errors: - Error trying to access the local web services Get Object failed. You will need manual configure the web server. - Error trying to access mime type file. You will need manual configure the web server.

Re: [PHP] PHP 5 Configuration

2010-07-01 Thread Ashley Sheridan
On Thu, 2010-07-01 at 19:24 +0100, Gustavo Carrasco wrote: I've been trying to install PHP5 with windows XP, but i had received the next errors: - Error trying to access the local web services Get Object failed. You will need manual configure the web server. - Error trying to access

RE: [PHP] PHP 5 Configuration

2010-07-01 Thread Ashley Sheridan
? __ Subject: Re: [PHP] PHP 5 Configuration From: a...@ashleysheridan.co.uk To: carrascojg...@hotmail.com CC: php-general@lists.php.net Date: Thu, 1 Jul 2010 19:28:30 +0100 On Thu, 2010-07-01 at 19:24 +0100, Gustavo Carrasco wrote: I've

RE: [PHP] PHP 5 Configuration

2010-07-01 Thread Gustavo Carrasco
Hi, nice to meet you. I had installed Apache, and his service is running good. There's any sequence about how to install this products? or maybe i need to modify some lines in httpd file or php.ini file? Subject: Re: [PHP] PHP 5 Configuration From: a...@ashleysheridan.co.uk To: carrascojg

[PHP] PHP 5 auto-htmlentitizing strings?

2008-08-02 Thread Weston C
I just switched over an app from PHP 4 to PHP 5, and one of the weird things I'm noticing initially is that some of the html output seems to be html entitized. For example, a link that was showing up in html output as: a href=http://metaphilm.com/philm.php?id=29_0_2_0;Is Tyler Durden Hobbes?/a

[PHP] PHP 5 Web Developer Position in Mountain View, CA

2008-07-03 Thread Abby Knight
Please contact me if you are interested in learning more: Abby Knight EQQUS Technologies 555 Bryant Street, Suite 700 Palo Alto, CA 94301 650-234-1000 ext. 355 [EMAIL PROTECTED] My client is venture funded startup building

[PHP] php 5 and mysql failure

2008-04-30 Thread Yehudi Alexis Garrett
I'm using a php script which performs three xml queries to other three servers to retrieve a set of ids and after I do a query to mysql of the kind SELECT * FROM table WHERE id IN ('set of ids'); Although I'm sure the connection to the database is ok, I sometimes get an error of this kind:

Re: [PHP] php 5 and mysql failure

2008-04-30 Thread Dan Joseph
On Wed, Apr 30, 2008 at 2:31 AM, Yehudi Alexis Garrett [EMAIL PROTECTED] wrote: I'm using a php script which performs three xml queries to other three servers to retrieve a set of ids and after I do a query to mysql of the kind SELECT * FROM table WHERE id IN ('set of ids'); Although I'm sure

Re: [PHP] PHP 5 file_get_contents() problems

2008-04-01 Thread Richard Lynch
On Sun, March 30, 2008 5:03 pm, php wrote: Thanks Greg...I am aware of the allow_url_fopen/allow_url_include relationship. Your suggestion to look into curl was implemented and there still seems to be something else afoot. I created a simple set of curl functions which just printed a

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-31 Thread Daniel Brown
On Sun, Mar 30, 2008 at 6:03 PM, php [EMAIL PROTECTED] wrote: Thanks Greg...I am aware of the allow_url_fopen/allow_url_include relationship. Your suggestion to look into curl was implemented and there still seems to be something else afoot. I created a simple set of curl functions

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-30 Thread php
Thanks Greg...I am aware of the allow_url_fopen/allow_url_include relationship. Your suggestion to look into curl was implemented and there still seems to be something else afoot. I created a simple set of curl functions which just printed a remote url to the browser window. This tested well

[PHP] PHP 5 file_get_contents() problems

2008-03-18 Thread Chris
I've encountered a situation where under PHP 5 the file_get_contents() function will not work properly (actually not at all) if the php.ini Filesystem configuration parameter, allow_url_include is set to OFF. According to the PHP documentation allow_url_include is intended to limiting PHP from

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-18 Thread Greg Bowser
The actual setting is allow_url_fopen. allow_url_include controls whether or not you can use a remote URL as an include (however, if allow_url_fopen is off, then allow_url_include will also be off.) The short answer to your question is: yes, there is a way. Several ways, in fact. You could use

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-18 Thread Thijs Lensselink
Quoting Chris [EMAIL PROTECTED]: I've encountered a situation where under PHP 5 the file_get_contents() function will not work properly (actually not at all) if the php.ini Filesystem configuration parameter, allow_url_include is set to OFF. According to the PHP documentation allow_url_include

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-18 Thread Greg Bowser
for security reasons, allow_url_include can only be set from the main php.ini On Tue, Mar 18, 2008 at 10:22 AM, Thijs Lensselink [EMAIL PROTECTED] wrote: Quoting Chris [EMAIL PROTECTED]: I've encountered a situation where under PHP 5 the file_get_contents() function will not work properly

Re: [PHP] PHP 5 file_get_contents() problems

2008-03-18 Thread Thijs Lensselink
Quoting Greg Bowser [EMAIL PROTECTED]: for security reasons, allow_url_include can only be set from the main php.ini I wasn't sure about that one. Thanks for the correction. On Tue, Mar 18, 2008 at 10:22 AM, Thijs Lensselink [EMAIL PROTECTED] wrote: Quoting Chris [EMAIL PROTECTED]:

[PHP] php 5 soap question

2007-09-28 Thread Hurst, Michael S.
I am trying to find out how to use php 5 to access a wsdl with the following structure. How do you send parameters to the service if the wsdl is like the following. - s:element name=getPayment - s:complexType - s:sequence s:element minOccurs=0 maxOccurs=1 name=pi type=tns:paymentInput /

Re: [PHP] php 5 soap question

2007-09-28 Thread Nathan Nobbe
have you used soap ui http://www.soapui.org/ before? its a great tool for testing interaction w/ web services before you implement a client layer in your own code because it shows sent and received xml. -nathan On 9/28/07, Hurst, Michael S. [EMAIL PROTECTED] wrote: I am trying to find out how

Re: [PHP] php 5 soap question

2007-09-28 Thread Nathan Nobbe
can you post the url of the wsdl ? -nathan On 9/28/07, Hurst, Michael S. [EMAIL PROTECTED] wrote: I am trying to find out how to use php 5 to access a wsdl with the following structure. How do you send parameters to the service if the wsdl is like the following. - s:element

RE: [PHP] php 5 soap question

2007-09-28 Thread Hurst, Michael S.
, September 28, 2007 2:27 PM To: Hurst, Michael S. Cc: php-general@lists.php.net Subject: Re: [PHP] php 5 soap question can you post the url of the wsdl ? -nathan On 9/28/07, Hurst, Michael S. [EMAIL PROTECTED] wrote: I am trying to find out how to use php 5 to access a wsdl with the following

Re: [PHP] php 5 soap question

2007-09-28 Thread Rob Richards
be something that is wanted to be made public in its current form. I will need to find out. Mike From: Nathan Nobbe [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 2:27 PM To: Hurst, Michael S. Cc: php-general@lists.php.net Subject: Re: [PHP] php 5 soap question can you

Re: [PHP] php 5 soap question

2007-09-28 Thread Nathan Nobbe
. Mike *From:* Nathan Nobbe [mailto:[EMAIL PROTECTED] *Sent:* Friday, September 28, 2007 2:27 PM *To:* Hurst, Michael S. *Cc:* php-general@lists.php.net *Subject:* Re: [PHP] php 5 soap question can you post the url of the wsdl ? -nathan On 9/28/07, *Hurst, Michael S.* [EMAIL

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-20 Thread Andrew Ballard
... but the second comment seems helpful. [1] http://www.php.net/manual/en/function.mssql-connect.php For SQL Server 2005, getting the right version of that ntwdblib.dll is crucial. However, Microsoft has apparently abandoned the NTWDBLIB library, so I have begun working with PDO ODBC

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-17 Thread Gregory Machin
with the suggested config i get the following Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: (local)\SQLEXPRESS in C:\wamp\www\test\test.php on line 8 Couldn't connect to SQL Server on (local)\SQLEXPRESS this is my connection script ?php $myServer =

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-17 Thread Tijnema
On 8/16/07, Gregory Machin [EMAIL PROTECTED] wrote: Hi I have tried most of the configuration options in the php manual / examples http://www.php.net/function.mssql-connect and I just can't get it to connect I'm running WAMP5 and have enables php_mssql.dll extentions etc .. sql server 2005

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-17 Thread Kirk Friggstad
On 8/17/07, Gregory Machin [EMAIL PROTECTED] wrote: with the suggested config i get the following Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: (local)\SQLEXPRESS in C:\wamp\www\test\test.php on line 8 Couldn't connect to SQL Server on (local)\SQLEXPRESS

[PHP] php 5 and ms sql server express won't play nice !

2007-08-16 Thread Gregory Machin
Hi I have tried most of the configuration options in the php manual / examples http://www.php.net/function.mssql-connect and I just can't get it to connect I'm running WAMP5 and have enables php_mssql.dll extentions etc .. sql server 2005 express has both named pipes and tcp/ip conections

Re: [PHP] php 5 and ms sql server express won't play nice !

2007-08-16 Thread Kirk Friggstad
SQL Server Express defaults to installing as a named instance - assuming that you're running Apache/PHP on the same machine as SQL Server Express, I believe you'll want to use (local)\SQLEXPRESS as the host to connect to. If it's on a different machine, you'll want to use MACHINENAME\SQLEXPRESS

Re: [PHP] php 5 upgrade and background script on unix

2007-04-03 Thread Jochem Maas
Frederic Belleudy wrote: Jochem: won't it? what does it do? does it go into and endless loop and bring your machine to a halt by any chance? .. because by looking at it, as long as $in['bg'] is not set and not equal to true it's going to keep spawning sub-shells with cmdlines that call

[PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Frederic Belleudy
Hello there, I hope someone resolved the same issue. I upgraded my server to 5.2.1 I got some script that are running background script (generally we call this technic FORKING) Ive got a web interface that running (depending the action chosen) other scripts in the background. My issue is, it

Re: [PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Jochem Maas
Frederic Belleudy wrote: Hello there, I hope someone resolved the same issue. I upgraded my server to 5.2.1 I got some script that are running background script (generally we call this technic FORKING) Ive got a web interface that running (depending the action chosen) other scripts in the

Re: [PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Frederic Belleudy
don't fork webserver processes, granted it doesn't fix the problem, but you really should be doing it anyway. I'm guessing that the pcntl extension is not compiled into the webserver php SAPI, it's a really big guess because you didn't supply the code you use to do the forking with. Ok

Re: [PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Jochem Maas
Frederic Belleudy wrote: don't fork webserver processes, granted it doesn't fix the problem, but you really should be doing it anyway. I'm guessing that the pcntl extension is not compiled into the webserver php SAPI, it's a really big guess because you didn't supply the code you use to

Re: [PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Frederic Belleudy
Jochem: won't it? what does it do? does it go into and endless loop and bring your machine to a halt by any chance? .. because by looking at it, as long as $in['bg'] is not set and not equal to true it's going to keep spawning sub-shells with cmdlines that call itself. Me: You haven't read my

Re: [PHP] php 5 upgrade and background script on unix

2007-04-02 Thread Frederic Belleudy
Jochem Maas wrote: Frederic Belleudy wrote: don't fork webserver processes, granted it doesn't fix the problem, but you really should be doing it anyway. I'm guessing that the pcntl extension is not compiled into the webserver php SAPI, it's a really big guess because you didn't supply the

Re: [PHP] php 5 and register_globals=off gives lotsa errors

2007-01-03 Thread Strong Cypher
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You said if(action==main) So ... it's really that or you would said if($action==main) ??? the $ is important so ... perhaps phpv4 ignore this kind of mistake and not php5 or perhaps action is when register global is on ... so if miss $ before

Re: [PHP] php 5 and register_globals=off gives lotsa errors

2007-01-02 Thread Richard Lynch
It's NOT register_globals being off. It's E_NOTICE being on. You could turn E_NOTICE off and *ignore* these errors -- They are still there, you are just ignoring them. Or you could fix the script: $action = isset($_GET['action']) ? $_GET['action'] : ''; would be the replacement line for

[PHP] php 5 and register_globals=off gives lotsa errors

2006-12-30 Thread Wikus Moller
Hi to all. I am having huge problems running my script, which worked fine on a server with php 4 and register_globals turned on, on a server with php 5 and register_globals turned off. I get errors around the area in my script where I use $_GET (not the only error). For example the following

Re: [PHP] php 5 and register_globals=off gives lotsa errors

2006-12-30 Thread Rasmus Lerdorf
You did more than just turn register_globals off. You also changed your error warning level. You have turned notices on. Set the same error warning level in your PHP 4 setup and you will see exactly the same messages. To be notice-free, your code should look like this: $action =

Re: [PHP] PHP 5 Hosting

2006-10-27 Thread Dotan Cohen
On 25/10/06, Ed Lazor [EMAIL PROTECTED] wrote: Hi, I wanted to give some feedback on PHP 5 hosting in case it helps someone. I signed up with DreamHost last Thursday. I also signed up with OCS Solutions to compare the two services. I also maintain a server with CalPop. When I signed up with

Re: [PHP] PHP 5 Hosting

2006-10-27 Thread Richard Lynch
On Fri, October 27, 2006 7:18 am, Dotan Cohen wrote: On 25/10/06, Ed Lazor [EMAIL PROTECTED] wrote: When I signed up with Dreamhost, I discovered that you have to fill out a form and fax it to them, along with a rubbing of your credit card. Personally, I found that part rather annoying.

Re: [PHP] PHP 5 Hosting

2006-10-25 Thread Ed Lazor
Hi, I wanted to give some feedback on PHP 5 hosting in case it helps someone. I signed up with DreamHost last Thursday. I also signed up with OCS Solutions to compare the two services. I also maintain a server with CalPop. When I signed up with Dreamhost, I discovered that you have to

Re: [PHP] PHP 5 Hosting

2006-10-12 Thread Sancar Saran
take look www.site5.com On Thursday 12 October 2006 00:59, Ed Lazor wrote: Anyone ever use A2Hosting.com? Or better yet, any recommendations on a PHP 5 web hosting company that you're happy with - measured in terms of quality support, they know what they're doing, and they have good prices?

Re: [PHP] PHP 5 Hosting

2006-10-12 Thread Ed Lazor
Thanks for the feedback Kyle, much appreciated. DreamHost does look pretty good price-wise. Two others I was referred to are HostBaby.com and OCSSolutions.com. Have a good one :) -Ed On Oct 11, 2006, at 10:12 PM, Kyle wrote: Hello, I would suggest dreamhost at www.dreamhost.com. Their

[PHP] PHP 5 Hosting

2006-10-11 Thread Ed Lazor
Anyone ever use A2Hosting.com? Or better yet, any recommendations on a PHP 5 web hosting company that you're happy with - measured in terms of quality support, they know what they're doing, and they have good prices? Bonus points for good drive space, bandwidth, and SSH access. I ran a

Re: [PHP] PHP 5 Hosting

2006-10-11 Thread Kyle
Hello, I would suggest dreamhost at www.dreamhost.com. Their prices look a bit hefty at first but there are referral codes all over the internet and you can end up saving $97. Their plans have tons of bandwidth and space and I haven't had any trouble with it. But I would suggest them highly,

[PHP] PHP 5, PDO in debian

2006-10-02 Thread Martin Marques
Does anyone have an idea on when PDO is going to be available in Debian? -- 21:50:04 up 2 days, 9:07, 0 users, load average: 0.92, 0.37, 0.18 - Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática| '@'

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread David Tulloh
Martin Marques wrote: Does anyone have an idea on when PDO is going to be available in Debian? not a clue... http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348882 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread Martin Marques
On Mon, 2 Oct 2006, David Tulloh wrote: Martin Marques wrote: Does anyone have an idea on when PDO is going to be available in Debian? not a clue... http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348882 Saw that already yesterday, but it's from the begining of this year. It's so

Re: [PHP] PHP 5, PDO in debian

2006-10-02 Thread Paul Scott
On Mon, 2006-10-02 at 10:33 -0300, Martin Marques wrote: On Mon, 2 Oct 2006, David Tulloh wrote: Martin Marques wrote: Does anyone have an idea on when PDO is going to be available in Debian? use www.dotdeb.org sources list. Its bleeding edge, but works OK. --Paul All Email originating

Re: [PHP] PHP 5....

2006-07-12 Thread Ryan A
Thanks guys, Will contact the admin and see what can be done, your replies really helped me and I appreciate it. Cheers! Ryan -- - The faulty interface lies between the chair and the keyboard. - Creativity is great, but plagiarism is faster! - Smile, everyone loves a moron. :-)

[PHP] PHP 5....

2006-07-11 Thread Ryan A
Hi, Something strange and dont really know what to expect so was hoping you more experienced PHP 5 people can help me out. We have been given a development server thats running php5 with MySql Client API version 5.0.22 (didnt know there was one that high) the problem is, we have to develop on

Re: [PHP] PHP 5....

2006-07-11 Thread Jochem Maas
Ryan A wrote: Hi, Something strange and dont really know what to expect so was hoping you more experienced PHP 5 people can help me out. btw which minor version of php5 your running is important ... plenty of things have changed in [semi] breaking ways between minor php5 versions. We

[PHP] PHP 5...

2006-07-11 Thread Ryan A
Hi, Something strange and dont really know what to expect so was hoping you more experienced PHP 5 people can help me out. We have been given a development server thats running php5 with MySql Client API version 5.0.22 (didnt know there was one that high) the problem is, we have to develop on

RE: [PHP] PHP 5...

2006-07-11 Thread Daevid Vincent
It's silly to have two different environments like that. Either code the thing in PHP4. or upgrade the production environment to PHP5. DÆVID -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 6:08 AM To: php php Subject: [PHP] PHP 5... Hi

Re: [PHP] PHP 5...

2006-07-11 Thread Rory Browne
Unless there is some specific reason that you need this code to run on both php4 and php5, then inform your boss/admin that the idea of developing on php5, to deploy on php4 is nuts. If they disagree inform them that they are personally nuts( tell them some guy on the internet said so ). It may

RE: [PHP] PHP 5, Windows, and MySQL

2006-06-27 Thread Beauford
[mailto:[EMAIL PROTECTED] Sent: June 26, 2006 7:43 PM To: Beauford Subject: Re: [PHP] PHP 5, Windows, and MySQL Well, I don't know what you mean by a known issue. All your message says is that PHP 5 does not support MySQL. Yes, it does. It has no problem. I have installed it and used it a million

Re: [PHP] PHP 5, Windows, and MySQL

2006-06-27 Thread Chris
Beauford wrote: I have done everything that everyone has suggested here, and 1000 other variations that I have found along the way. So if I'm doing something wrong - please let me know, 'cause I don't see it. MySQL 4.1 has been working great for 4 years and PHP4.4 gives me no problems. Anything

Re: [PHP] PHP 5, Windows, and MySQL

2006-06-27 Thread David Robley
Chris wrote: Beauford wrote: I have done everything that everyone has suggested here, and 1000 other variations that I have found along the way. So if I'm doing something wrong - please let me know, 'cause I don't see it. MySQL 4.1 has been working great for 4 years and PHP4.4 gives me no

[PHP] PHP 5, Windows, and MySQL

2006-06-26 Thread Beauford
Aside from my previous gd problems, here's another problem. It appears that PHP5 (for Windows anyways) does not support MySQL (which in itself is riduculous), but here's my problem. I have a script I just downloaded that works perfectly on Linux/Apche/MySQL/PHP5, but when I run it on Windows 2000

Re: [PHP] PHP 5, Windows, and MySQL

2006-06-26 Thread Robert Cummings
On Mon, 2006-06-26 at 13:50, Beauford wrote: Aside from my previous gd problems, here's another problem. It appears that PHP5 (for Windows anyways) does not support MySQL (which in itself is riduculous), but here's my problem. I have a script I just downloaded that works perfectly on

Re: [PHP] PHP 5, Windows, and MySQL

2006-06-26 Thread Tom Chubb
I use apache2triad (http://apache2triad.net/) which is an AMP package with PHP 5. I vaguely remember the first time I installed it (on Win XP Pro though) I got similar problems with MySQL. I uninstalled it and reinstalled as I wasn't sure if I accidentally clicked a dialog box without reading

RE: [PHP] PHP 5, Windows, and MySQL

2006-06-26 Thread Beauford
To: Beauford Subject: Re: [PHP] PHP 5, Windows, and MySQL Activating MySQL in PHP 5 is pretty simple. Open the php.ini file and uncomment the line for the extension that you want to use--php_mysql.dll or php_mysqli.dll. Restart the web server. Using the mysql functions is described in the php

[PHP] PHP 5 + Apache 2 on Windows: ms sql extension problem

2006-04-26 Thread Laszlo Nagy
Hello All, I had a problem with a Win2003 server, IIS6 and PHP 5.1.2. The MS SQL extension was not working. I did not get an answer, but some people suggested me to use Apache. Now I installed Win 2000 server, Apache 2.0.55 and PHP 5.1.2. The same computer has Microsoft SQL Server

Re: [PHP] PHP 5 + Apache 2 on Windows: ms sql extension problem

2006-04-26 Thread Wolf
This setup nagged me for a bit too, until I found the solution... The DLL files in C:\php need to be put into system32 directory. Once that happens they work like a charm, but until then, you are plagued with issues. I have my path set for C:\php and everything as well, but it was not until

RE: [PHP] PHP 5 + Apache 2 on Windows: ms sql extension problem

2006-04-26 Thread Ing. Edwin Cruz
Try changing your direcive extension_dir: extension_dir=C:/PHP/ext instead of extension_dir=C:\PHP\ext -Mensaje original- De: Laszlo Nagy [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 26 de Abril de 2006 04:01 a.m. Para: php-general@lists.php.net Asunto: [PHP] PHP 5 + Apache 2

[PHP] PHP 5 and XSLT again

2006-03-30 Thread MA
Hi, I'm still trying to get PHP 5.1.2 to support XSLT, but so far, no good. I read here http://www.zend.com/php5/andi-book-excerpt.php that in PHP5 is libxml2 that tak care of everything (XML, XSL, XSLT, etc.), but i've compiled it and got no XSLT support. Any help would be appreciated. Warm

Re: [PHP] php 5 installation problem

2006-03-17 Thread Miles Thompson
At 01:39 AM 3/17/2006, - Edwin - wrote: Hi! On Thu, 16 Mar 2006 20:45:29 -0400 Miles Thompson [EMAIL PROTECTED] wrote: At 06:23 PM 3/16/2006, Anthony Ettinger wrote: [...] Is there a drawback to running php5 as CGI? Anthony, I really don't know, because computers are much faster, so

Re: [PHP] php 5 installation problem

2006-03-17 Thread chris smith
Is there a drawback to running php5 as CGI? Anthony, I really don't know, because computers are much faster, so there may not be the time lags there were 10 years ago. As I understand CGI, the web server sees that the page is of type .php, starts up PHP, PHP processes

[PHP] CPanel, PHP5 as CGI (was Re: [PHP] php 5 installation problem)

2006-03-17 Thread - Edwin -
Hi! On Fri, 17 Mar 2006 08:24:51 -0400 Miles Thompson wrote: Thanks Edwin. I guess it was too late and I couldn't formulate a proper search expression. I'd like to hear Chris Shiflet's opinion on the security advantages of running PHP5 as CGI. That'd be nice. But as somebody pointed out

Re: [PHP] CPanel, PHP5 as CGI (was Re: [PHP] php 5 installation problem)

2006-03-17 Thread tedd
Edwin wrote: I really have no idea (read: lazy to check now ;-) ) what CPanel is. If it is a program written in PHP (4?), they could just fix it to work with PHP5 -- CGI mode or not. I sure would like to know because two of my host can't install PHP 5 due to problems they have with CPanel

Re: [PHP] CPanel, PHP5 as CGI (was Re: [PHP] php 5 installation problem)

2006-03-17 Thread Myk OLeary
Ask them to install PHP5 to work with only .php5 extensioned files. They have no interoperability issues - you have access to PHP 5. PHP4 and PHP5 can safely coexist on the same server like this, as they aren't serving up the same files... -Myk OLeary [EMAIL PROTECTED] BLOG:

Re: [PHP] php 5 installation problem

2006-03-16 Thread Jochem Maas
tedd wrote: Hi gang: I asked my host to install the current versions of php 5 and the following was his answer: Sorry but php has some issues with cpanel. cpanel has issues with php5 not the other way around :-) Anyone heard of any problems or a work-around? get a different hosting

Re: [PHP] php 5 installation problem

2006-03-16 Thread Anthony Ettinger
dreamhost let's you choose php4 or 5, as I'm sure others do as well. On 3/16/06, Jochem Maas [EMAIL PROTECTED] wrote: tedd wrote: Hi gang: I asked my host to install the current versions of php 5 and the following was his answer: Sorry but php has some issues with cpanel. cpanel

Re: [PHP] php 5 installation problem

2006-03-16 Thread Miles Thompson
At 05:40 PM 3/16/2006, Anthony Ettinger wrote: dreamhost let's you choose php4 or 5, as I'm sure others do as well. snipped all 'dat stuff A little more on dreamhost. PHP5 is installed as CGI, not Apache module. Does anyone have any experience with Nexcess.net -- advertisers on back page of

Re: [PHP] php 5 installation problem

2006-03-16 Thread Anthony Ettinger
On 3/16/06, Miles Thompson [EMAIL PROTECTED] wrote: At 05:40 PM 3/16/2006, Anthony Ettinger wrote: dreamhost let's you choose php4 or 5, as I'm sure others do as well. snipped all 'dat stuff A little more on dreamhost. PHP5 is installed as CGI, not Apache module. Is there a drawback to

Re: [PHP] php 5 installation problem

2006-03-16 Thread Miles Thompson
At 06:23 PM 3/16/2006, Anthony Ettinger wrote: On 3/16/06, Miles Thompson [EMAIL PROTECTED] wrote: At 05:40 PM 3/16/2006, Anthony Ettinger wrote: dreamhost let's you choose php4 or 5, as I'm sure others do as well. snipped all 'dat stuff A little more on dreamhost. PHP5 is installed as

Re: [PHP] php 5 installation problem

2006-03-16 Thread - Edwin -
Hi! On Thu, 16 Mar 2006 20:45:29 -0400 Miles Thompson [EMAIL PROTECTED] wrote: At 06:23 PM 3/16/2006, Anthony Ettinger wrote: [...] Is there a drawback to running php5 as CGI? Anthony, I really don't know, because computers are much faster, so there may not be the time lags there

[PHP] php 5 installation problem

2006-03-15 Thread tedd
Hi gang: I asked my host to install the current versions of php 5 and the following was his answer: Sorry but php has some issues with cpanel. Anyone heard of any problems or a work-around? Thanks. tedd --

[PHP] PHP 5 Backwards Compatability

2006-01-30 Thread Tod Thomas
Is their a list of portability problems to be aware of when switching from v4 to v5? Maybe a table that compares the two? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5 Backwards Compatability

2006-01-30 Thread Silvio Porcellana [tradeOver]
Tod Thomas wrote: Is their a list of portability problems to be aware of when switching from v4 to v5? Maybe a table that compares the two? Thanks. You can start here: http://www.zend.com/php5/migration.php Silvio -- tradeOver | http://www.tradeover.net ...ready to become the King of the

Re: [PHP] PHP 5 Backwards Compatability

2006-01-30 Thread Jochem Maas
Tod Thomas wrote: Is their a list of portability problems to be aware of when switching from v4 to v5? Maybe a table that compares the two? other than the stuff on php.net (no comparison tables exactly) not really - plenty of people on this list that will help you if you run into problems.

[PHP] PHP 5 XML Dom, set doctype and system

2005-12-07 Thread Mariano Guadagnini
Hello, I need to set the doctype and the system dtd of a document created directly with the xml DOM. I couldn´t find any function or property to set this, i saw some examples that directly wrote onto the file manually, but i´m pretty sure thare must be a way to do this with the dom (i

Re: [PHP] PHP 5 OO performance exceptions

2005-11-11 Thread cron
- From: [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, November 10, 2005 6:47 PM Subject: Re: [PHP] PHP 5 OO performance exceptions I was not considering that, I was using $obj_string-getValue(), the __toString method and type casting could save me some keystrokes

Re: [PHP] PHP 5 OO performance exceptions

2005-11-11 Thread Jochem Maas
overloading. Am I making any sense? - Original Message - From: [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, November 10, 2005 6:47 PM Subject: Re: [PHP] PHP 5 OO performance exceptions I was not considering that, I was using $obj_string-getValue(), the __toString

Re: [PHP] PHP 5 OO performance exceptions

2005-11-10 Thread cron
] To: [EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 1:37 PM Subject: Re: [PHP] PHP 5 OO performance exceptions I myself was considering creating classes such as String, but I ran into more basic problems before performance, for example: class String { protected $Value; function

[PHP] PHP 5 OO performance exceptions

2005-11-09 Thread cron
Hello, Currently I'm make some utilities classes and I took the idea from java to make some wrappers class like String, Integer and so on. This allows me to use the type hint for basic types in php. Anyone have a clue if replacing the all in one type in php for objects types will degrade

[PHP] PHP 5 XML/XSL problem

2005-11-07 Thread Daniel Lowes
Hi I've been using PHP 4 for the last year to do XSL transformations in one of my applications. It worked like a charm, we never had any problems. While I was investigating the feasability of moving to PHP 5, I discovered that for some reason, the exact same XML/XSL fails to transform

Re: [PHP] PHP 5 Hosting

2005-10-02 Thread Zareef Ahmed
On 9/30/05, Tom Chubb [EMAIL PROTECTED] wrote: This is an interesting one. As someone learning PHP, I am still confused which route I should be going down? Especially as I am looking to take on a dedicated server soon, I don't know if PHP5 will become standard soon or are we going to see

Re: [PHP] PHP 5 Hosting

2005-10-02 Thread Oliver Grätz
Sheesh! No week passing by without people complaining about hosters missiong out on PHP5. This is one point where we in Germany seem to be lucky. The two biggest german hosters 11 (about 4 million domains) and Strato (about 2.5 million domains) both offer SSH and the possibility to chosse the PHP

Re: [PHP] PHP 5 Hosting

2005-10-02 Thread Torgny Bjers
Oliver Grätz wrote: Sheesh! No week passing by without people complaining about hosters missiong out on PHP5. This is one point where we in Germany seem to be lucky. The two biggest german hosters 11 (about 4 million domains) and Strato (about 2.5 million domains) both offer SSH and the

Re: [PHP] PHP 5 Hosting

2005-10-02 Thread Oliver Grätz
Torgny Bjers schrieb: I am assuming they're running PHP through CGI in this case, am I correct, or are they hosting on Windows to achieve the multiple PHP versions? If CGI, that rather affects performance of larger applications, it especially impact render time of more complex templates and

Re: [PHP] PHP 5 Hosting

2005-09-30 Thread Tom Chubb
This is an interesting one. As someone learning PHP, I am still confused which route I should be going down? Especially as I am looking to take on a dedicated server soon, I don't know if PHP5 will become standard soon or are we going to see PHP6 first??!? Please can some more experienced people

[PHP] PHP 5 Hosting

2005-09-29 Thread Ed Lazor
Any recommendations on good host providers for PHP 5? Bonus points if they support SSH access and a PHP compiler like Zend. Thanks, Ed

Re: [PHP] PHP 5 Hosting

2005-09-29 Thread Joe Wollard
The first two results both seem pretty good at a glance: http://www.google.com/search?hl=enq=php5+ssh+hostingbtnG=Google+Search On Sep 29, 2005, at 8:29 PM, Ed Lazor wrote: Any recommendations on good host providers for PHP 5? Bonus points if they support SSH access and a PHP compiler

[PHP] PHP 5, LDAP/Active Directory

2005-09-13 Thread Joe Wollard
Greetings all: I've looked through php.net and scoured Google for a solution to an issue I'm having with PHP and LDAP but have so far found nothing. I'm trying to build an intranet site that uses the company LDAP (Active Directory really) service but I can't seem to get around the

[PHP] php 5 upgrade - undefined index errors EVERYWHERE

2005-09-03 Thread Jason Boerner
My server was upgraded to php 5 and now nothing runs because of undefined index errors all over the place.. How can I save myself from recoding for hours and hours ?? Thank you in advance for any help you can offer. -jason

[PHP] PHP 5 limits readfile to 1.9 MB?

2005-08-16 Thread Jordan Miller
Hello all, I am new to this list and I have searched the archives to no avail. I am having a peculiar problem when upgrading to PHP 5: My downloads are now limited to the first 1.9 MB of the file in question, with the download either terminating at 1.9 MB or seemingly continuously stuck

Re: [PHP] PHP 5 Object Inheritance

2005-07-16 Thread Jochem Maas
Chris wrote: Jochem Maas wrote: Chris wrote: Hi, I've got a collection of Element classes (about 8 different ones). They are all subclasses of a single parent element. I'm trying to extend their functionality (both the individual classes, and the parent class they inherit). I can

[PHP] PHP 5 Object Inheritance

2005-07-15 Thread Chris
Hi, I've got a collection of Element classes (about 8 different ones). They are all subclasses of a single parent element. I'm trying to extend their functionality (both the individual classes, and the parent class they inherit). I can extend each Element subclass with it's new specific

  1   2   3   >