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...@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 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.
Somebody can help me???
Regards

 
  
_
Agudiza los sentidos que viene un nuevo Messenger ¿estás listo?
http://explore.live.com/windows-live-messenger

It seems to suggest that you've not installed a web server, such as Apache or 
IIS. Of the two I'd choose Apache as it's by far the most configurable and 
secure.





Thanks,
Ash
http://www.ashleysheridan.co.uk


  
_
No has visto nada como el nuevo Messenger, ¡te sorprenderá!
http://explore.live.com/windows-live-messenger

RE: [PHP] PHP 5 Configuration

2010-07-01 Thread Ashley Sheridan
On Thu, 2010-07-01 at 19:38 +0100, Gustavo Carrasco wrote:

> 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...@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 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.
> Somebody can help me???
> Regards
> 
>  
> 
> _
> Agudiza los sentidos que viene un nuevo Messenger ¿estás listo?
> http://explore.live.com/windows-live-messenger
> 
> 
> It seems to suggest that you've not installed a web server, such as
> Apache or IIS. Of the two I'd choose Apache as it's by far the most
> configurable and secure.
> 
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
> 
> 
> 
> 
> 
> __
> Hotmail prepara novedades y sorpresas en breve, ¡estate atento!


The php.net download area should have both the .exe install files and
instructions about how to get it configured with a web server.

Thanks,
Ash
http://www.ashleysheridan.co.uk




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 mime type file. You will need manual configure the 
> web server.
> Somebody can help me???
> Regards
> 
>  
> 
> _
> Agudiza los sentidos que viene un nuevo Messenger ¿estás listo?
> http://explore.live.com/windows-live-messenger


It seems to suggest that you've not installed a web server, such as
Apache or IIS. Of the two I'd choose Apache as it's by far the most
configurable and secure.

Thanks,
Ash
http://www.ashleysheridan.co.uk




[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.
Somebody can help me???
Regards

 
  
_
Agudiza los sentidos que viene un nuevo Messenger ¿estás listo?
http://explore.live.com/windows-live-messenger

Re: [PHP] PHP 5.x magic mathods quick question

2009-08-21 Thread Martin Scotta
I think not, but why don't we ask this to PHP ?



*<< __set()* is run when writing data to inaccessible members. >>
http://php.net/__set

So, I think that when you write data to an non-existent member php will
first try is the object has an __set method, if not it'll raise a Fatal
Error

example 1:
a = 'b'; # <-- add public property
print_r( $t );

example 2:
a = 'b'; # <-- fatal error

example 3:
a = 'b'; # <-- trigger __set

example 4:
a = '1'; # <-- set the public property (don't trigger __set)
$t->b = '2'; # <-- trigger __set (property does not exists)
$t->c = '3'; # <-- trigger __set (property is private)

print_r( $t );


On Fri, Aug 21, 2009 at 12:45 PM, Ralph Deffke wrote:

> do I understand the doc right, that magic methods do exist in any object?
> creating one (like __set() ) ovewrites the standard one?
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Martin Scotta


[PHP] PHP 5.x magic mathods quick question

2009-08-21 Thread Ralph Deffke
do I understand the doc right, that magic methods do exist in any object?
creating one (like __set() ) ovewrites the standard one?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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:

 "http://metaphilm.com/philm.php?id=29_0_2_0";>Is Tyler Durden
Hobbes?"

now gets transformed to:

Is Tyler
Durden Hobbes

No other changes in the PHP source -- just a change in the interpreter.

Any idea what could be causing this?

Thanks,

Weston

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 the World’s most comprehensive
and powerful shopping search engine. Utilizing patent-pending technology
crawls and indexes products from every store on the Internet. Applying its
exclusive Product Ranking Engine (PRE), products are then displayed in an
order that delivers the most relevant search results for consumers on the
very first page of results. Their search results are ranked algorithmically
based on popularity, market demand and other key attributes.

 

LOCATION:   Mountain View, CA

 

ROLE:
You will be responsible for developing UI technology for the large scale,
high performance shopping search engine. You will work closely with the
design and product management groups to define and implement user interface
for the website. You will work closely with server-side engineers during the
implementation process.

This position requires:

 

·   3+ years experience developing User Interfaces for web-based companies

 

·   Strong knowledge and ability to program with object-oriented PHP 5.
Familiarity with Smarty templating a plus.

 

·   Strong knowledge of HTML, CSS, DHTML, JavaScript, and AJAX

 

·   Experience with database (MySQL) applications, including strength in SQL
is a plus

 

·   Familiarity with third-party APIs (Google/Yahoo Maps, Facebook, etc)
preferred

 

·   Quick learner, who is anxious to contribute immediately

 

COMPENSATION: Competitive base salary & Stock Options 


-- 
View this message in context: 
http://www.nabble.com/PHP-5-Web-Developer-Position-in-Mountain-View%2C-CA-tp18268090p18268090.html
Sent from the PHP - General mailing list archive at Nabble.com.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 the connection to the database is ok, I sometimes get an
> error of this kind:
> *Warning*: mysql_fetch_object(): supplied argument is not a valid MySQL
> result resource in ...
> This does not happen every time i run the script, only sometimes.
> If I echo the query, copy and paste in phpmyadmin, or if I perform the
> same query in a script that does only the query without the rest it works!
> After troubleshooting this issue I noticed that it usually failed when I
> had a big set of ids (positive response from more than one server). This
> means that the script used a bigger amount of memory and probably more
> resources, but I did not get an "out of memory error", I got the one
> described bfore.
> My question is, is there any kind of limit somewhere in php5 or in mysql?
> Thanks for help,
>
> YEHUDI GARRETT
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

Have you tried output your SQL query and pasting it into mysql to see if it
runs?  Sounds to me like it isn't a valid query, that would give you that
error.

You may also want to put some row count checking prior to trying to fetch
any rows.

-- 
-Dan Joseph

"Build a man a fire, and he will be warm for the rest of the day.
Light a man on fire, and will be warm for the rest of his life."


[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:
*Warning*: mysql_fetch_object(): supplied argument is not a valid MySQL 
result resource in ...

This does not happen every time i run the script, only sometimes.
If I echo the query, copy and paste in phpmyadmin, or if I perform the 
same query in a script that does only the query without the rest it works!
After troubleshooting this issue I noticed that it usually failed when I 
had a big set of ids (positive response from more than one server). This 
means that the script used a bigger amount of memory and probably more 
resources, but I did not get an "out of memory error", I got the one 
described bfore.

My question is, is there any kind of limit somewhere in php5 or in mysql?
Thanks for help,

YEHUDI GARRETT

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 remote
> url to
> the browser window. This tested well on an alternate test site which
> has PHP
> 5 running.
>
> However back on the hosting client I'm having problems with, curl
> throws the
> following error message:
> CURLE_COULDNT_RESOLVE_HOST (6)
>
> Couldn't resolve host. The given remote host was not resolved.
>
> A second test script, uses the popular PayPal Instant Payment
> Notification
> scheme which opens up a socket connection with the paypal server. Even
> this
> method of remote communition was defeated.
>
> So I'm lead to believe there is some other PHP configuration (or
> server
> configuration) which is stopping PHP from connecting with remove
> services.

Can you SSH into the box and "ping" other domain names?

If that box has messed up DNS, there is NO WAY php can fix it...

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 which just printed a remote url to
>  the browser window. This tested well on an alternate test site which has PHP
>  5 running.
>
>  However back on the hosting client I'm having problems with, curl throws the
>  following error message:
>  CURLE_COULDNT_RESOLVE_HOST (6)
>
>  Couldn't resolve host. The given remote host was not resolved.

That's a DNS issue, not a PHP issue.  Is this a shared web host,
or one for which you have root access?  If you have at least shell
access without a jail (chroot), try PING'ing the domain from the
server and see what happens.  It could even be something as simple as
a typo in the domain, but most likely it's a DNS resolution problem.

If you want to test your script on a different server, let me know
and I'll set you up with a temporary account on one of mine.

-- 

Forensic Services, Senior Unix Engineer
1+ (570-) 362-0283

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 on an alternate test site which has PHP 
5 running.

However back on the hosting client I'm having problems with, curl throws the 
following error message:
CURLE_COULDNT_RESOLVE_HOST (6)

Couldn't resolve host. The given remote host was not resolved.

A second test script, uses the popular PayPal Instant Payment Notification 
scheme which opens up a socket connection with the paypal server. Even this 
method of remote communition was defeated.

So I'm lead to believe there is some other PHP configuration (or server 
configuration) which is stopping PHP from connecting with remove services.

Chris



""Greg Bowser"" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> 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 curl, or you could use an Http client written in php.
> The latter involves using either the socket_ or the fsocket functions.
>
>
> * http://scripts.incutio.com/httpclient/
>
> On Tue, Mar 18, 2008 at 10:11 AM, Chris <[EMAIL PROTECTED]> wrote:
>
>> 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 accessing scripts on other servers.
>>
>> I have read posts that suggest setting allow_url_include to ON as
>> a solution. Well that's great if you have the ability to modify your
>> php.ini. But what if you have an account on a shared hosting system
>> and the hosting company will NOT make the requested change?
>>
>> Is there a work around to this or how would one access remote web 
>> services
>> if allow_url_include is OFF. This looks like a huge problem since many
>> services, like PayPal's IPN and Google maps geocoding, rely on
>> communication
>> with their servers.
>>
>> Thanks,
>> Chris
>>
>>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
> 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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]>:

> 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 accessing scripts on other servers.
>
> I have read posts that suggest setting allow_url_include to ON as
> a solution. Well that's great if you have the ability to modify your
> php.ini. But what if you have an account on a shared hosting system
> and the hosting company will NOT make the requested change?
>
> Is there a work around to this or how would one access remote web
services
> if allow_url_include is OFF. This looks like a huge problem since many
> services, like PayPal's IPN and Google maps geocoding, rely on
communication
> with their servers.
>

Try ini_set("allow_url_include", "1"); In your script. (not tested)

If that doesn't help. You can use CURL for this :
http://php.net/manual/en/ref.curl.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php








--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 (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 accessing scripts on other servers.
> >
> > I have read posts that suggest setting allow_url_include to ON as
> > a solution. Well that's great if you have the ability to modify your
> > php.ini. But what if you have an account on a shared hosting system
> > and the hosting company will NOT make the requested change?
> >
> > Is there a work around to this or how would one access remote web
> services
> > if allow_url_include is OFF. This looks like a huge problem since many
> > services, like PayPal's IPN and Google maps geocoding, rely on
> communication
> > with their servers.
> >
>
> Try ini_set("allow_url_include", "1"); In your script. (not tested)
>
> If that doesn't help. You can use CURL for this :
> http://php.net/manual/en/ref.curl.php
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


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 is intended to
limiting PHP from accessing scripts on other servers.

I have read posts that suggest setting allow_url_include to ON as
a solution. Well that's great if you have the ability to modify your
php.ini. But what if you have an account on a shared hosting system
and the hosting company will NOT make the requested change?

Is there a work around to this or how would one access remote web services
if allow_url_include is OFF. This looks like a huge problem since many
services, like PayPal's IPN and Google maps geocoding, rely on communication
with their servers.



Try ini_set("allow_url_include", "1"); In your script. (not tested)

If that doesn't help. You can use CURL for this :  
http://php.net/manual/en/ref.curl.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 curl, or you could use an Http client written in php.
The latter involves using either the socket_ or the fsocket functions.


* http://scripts.incutio.com/httpclient/

On Tue, Mar 18, 2008 at 10:11 AM, Chris <[EMAIL PROTECTED]> wrote:

> 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 accessing scripts on other servers.
>
> I have read posts that suggest setting allow_url_include to ON as
> a solution. Well that's great if you have the ability to modify your
> php.ini. But what if you have an account on a shared hosting system
> and the hosting company will NOT make the requested change?
>
> Is there a work around to this or how would one access remote web services
> if allow_url_include is OFF. This looks like a huge problem since many
> services, like PayPal's IPN and Google maps geocoding, rely on
> communication
> with their servers.
>
> Thanks,
> Chris
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


[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 accessing scripts on other servers.

I have read posts that suggest setting allow_url_include to ON as
a solution. Well that's great if you have the ability to modify your
php.ini. But what if you have an account on a shared hosting system
and the hosting company will NOT make the requested change?

Is there a work around to this or how would one access remote web services 
if allow_url_include is OFF. This looks like a huge problem since many 
services, like PayPal's IPN and Google maps geocoding, rely on communication 
with their servers.

Thanks,
Chris 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php 5 soap question

2007-09-28 Thread Nathan Nobbe
i recommend playing around w/ soap ui then; its helped me understand how to
structure many requests using SoapClient and there is no doubt it has saved
me a great deal of time.  once you see the request xml that soap ui
generates you can understand how to structure a call to the web service
using SoapClient.

-nathan

On 9/28/07, Hurst, Michael S. <[EMAIL PROTECTED]> wrote:
>
>  I would have to get approval before I can do that.  I can probably post a
> portion of the wsdl but not sure that it would 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 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.
>
> - 
> - 
> - 
>  />
> 
> 
> 
> - 
> - 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> It is similiar but I can find nothing that addresses this sort of
> structure and I am at a loss as how to send vars to the request using
> php 5.
>
>
>
> I have looked for several days and cannot figure this out.
>
>
>
> I didn't know if there was a page you could direct me to.
>
>
>
> Mike Hurst
>
> [EMAIL PROTECTED]
>
>
>
>
>
>
>
>


Re: [PHP] php 5 soap question

2007-09-28 Thread Rob Richards

__getTypes() and __getFunctions() are your friends.
They tell you alot about the functions and structure of parameters and 
return types.


Rob

Hurst, Michael S. wrote:

I would have to get approval before I can do that.  I can probably post
a portion of the wsdl but not sure that it would 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 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.

- 
- 
- 




- 
- 
 

 

 

 




It is similiar but I can find nothing that addresses this sort of
structure and I am at a loss as how to send vars to the request using
php 5.



I have looked for several days and cannot figure this out.



I didn't know if there was a page you could direct me to.



Mike Hurst

[EMAIL PROTECTED] 









 





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] php 5 soap question

2007-09-28 Thread Hurst, Michael S.
I would have to get approval before I can do that.  I can probably post
a portion of the wsdl but not sure that it would 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 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.

- 
- 
- 




- 
- 
 

 

 

 



It is similiar but I can find nothing that addresses this sort of
structure and I am at a loss as how to send vars to the request using
php 5.



I have looked for several days and cannot figure this out.



I didn't know if there was a page you could direct me to.



Mike Hurst

[EMAIL PROTECTED] 








 



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.
>
> - 
> - 
> - 
>  />
> 
> 
> 
> - 
> - 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> It is similiar but I can find nothing that addresses this sort of
> structure and I am at a loss as how to send vars to the request using
> php 5.
>
>
>
> I have looked for several days and cannot figure this out.
>
>
>
> I didn't know if there was a page you could direct me to.
>
>
>
> Mike Hurst
>
> [EMAIL PROTECTED]
>
>
>
>
>
>
>
>


Re: [PHP] php 5 soap question

2007-09-28 Thread Nathan Nobbe
have you used soap ui  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 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.
>
> - 
> - 
> - 
>  />
> 
> 
> 
> - 
> - 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> It is similiar but I can find nothing that addresses this sort of
> structure and I am at a loss as how to send vars to the request using
> php 5.
>
>
>
> I have looked for several days and cannot figure this out.
>
>
>
> I didn't know if there was a page you could direct me to.
>
>
>
> Mike Hurst
>
> [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. 

-  
-  
-  
 
 
 
 
-  
-  
 
 
 
 
 
 
 
 
 

It is similiar but I can find nothing that addresses this sort of
structure and I am at a loss as how to send vars to the request using
php 5.

 

I have looked for several days and cannot figure this out.

 

I didn't know if there was a page you could direct me to.

 

Mike Hurst

[EMAIL PROTECTED]

 

 

 



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 instead. (It isn't
100%, though.)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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

That's about all I had for bright ideas on this one, sorry - like I
said, I haven't actually used PHP with MSSQL myself. The link Tijnema
posted looks promising, though. Best of luck to you.

Kirk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 express has both named pipes and tcp/ip conections enabled,
> both are installed on the same machine (xp pro)...
>
> this it the error I keep getting
> Warning: mssql_connect() [function.mssql-connect]: Unable to connect
> to server: SQLEXPRESS in C:\wamp\www\test\test.php on line 8
> Couldn't connect to SQL Server on SQLEXPRESS
>
> Many Thanks in advance
> --
> Gregory Machin
> [EMAIL PROTECTED]
> www.linuxpro.co.za
>

If you take a look at the comments at the manual page for
mssql_connect [1], you see that a lot of people have reported problems
with, but there are also some solutions. I don't know if they work,
because I never had any MS SQL server (MySQL rocks ;-)), but the
second comment seems helpful.

Tijnema

[1] http://www.php.net/manual/en/function.mssql-connect.php
-- 
If this is a mailing list: DO NOT TOP POST! why?:
http://www.caliburn.nl/topposting.html

Vote for PHP Color Coding in Gmail! -> http://gpcc.tijnema.info

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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

 wrote:
> 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" (replace "MACHINENAME" with the actual
> name of the computer SQL Express is running on).
>
> DISCLAIMER: I haven't actually tried using SQL Server with PHP, so I
> can't guarantee this will work. However, I have spent a lot of time
> working with SQL Server and ASP in a previous life, so I'd like to
> think that I have half a clue when it comes to connecting to it. :-)
>
> Hope this helps.
>
> Kirk
>
> 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 express has both named pipes and tcp/ip conections enabled,
> > both are installed on the same machine (xp pro)...
> >
> > this it the error I keep getting
> > Warning: mssql_connect() [function.mssql-connect]: Unable to connect
> > to server: SQLEXPRESS in C:\wamp\www\test\test.php on line 8
> > Couldn't connect to SQL Server on SQLEXPRESS
> >
> > Many Thanks in advance
> > --
> > Gregory Machin
> > [EMAIL PROTECTED]
> > www.linuxpro.co.za
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
>
> --
> _
> Kirk Friggstad, Daft Viking Consulting
> email / msn / gtalk: [EMAIL PROTECTED]
> aim / skype: daftviking
> mobile / SMS: 306-867-0010
>


-- 
Gregory Machin
[EMAIL PROTECTED]
www.linuxpro.co.za

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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" (replace "MACHINENAME" with the actual
name of the computer SQL Express is running on).

DISCLAIMER: I haven't actually tried using SQL Server with PHP, so I
can't guarantee this will work. However, I have spent a lot of time
working with SQL Server and ASP in a previous life, so I'd like to
think that I have half a clue when it comes to connecting to it. :-)

Hope this helps.

Kirk

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 express has both named pipes and tcp/ip conections enabled,
> both are installed on the same machine (xp pro)...
>
> this it the error I keep getting
> Warning: mssql_connect() [function.mssql-connect]: Unable to connect
> to server: SQLEXPRESS in C:\wamp\www\test\test.php on line 8
> Couldn't connect to SQL Server on SQLEXPRESS
>
> Many Thanks in advance
> --
> Gregory Machin
> [EMAIL PROTECTED]
> www.linuxpro.co.za
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
_
Kirk Friggstad, Daft Viking Consulting
email / msn / gtalk: [EMAIL PROTECTED]
aim / skype: daftviking
mobile / SMS: 306-867-0010

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 enabled,
both are installed on the same machine (xp pro)...

this it the error I keep getting
Warning: mssql_connect() [function.mssql-connect]: Unable to connect
to server: SQLEXPRESS in C:\wamp\www\test\test.php on line 8
Couldn't connect to SQL Server on SQLEXPRESS

Many Thanks in advance
-- 
Gregory Machin
[EMAIL PROTECTED]
www.linuxpro.co.za

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 itself.
> 
> Me:
> You haven't read my message? 

yes I did.

> It works fine when Im running it from the
> shell

the question was referring to what happens when running the exec() line
via the apache php module, I had thought that that was obvious.

> 
> When I do:
> 
> `/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1
> 2>&1 /var/log/test.log &`
> you can see bg=1
> 
> its the passing arguments!
> any other suggestions?

fix/debug it yourself.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 code you use to
do the forking with.

  
  

Ok then you want to have the fork code!



'want' is putting it strongly - unless of course your handing out AudiRS4's
in which case 'want' is spot on.

  

I'm doing a complete example


My script is forking on itself.
So from my browser I go on:
http://localhost/test_fork.php

My code in test_fork.php is :




does $_SERVER['argv'] exist at all? does your error reporting include E_NOTICE?
what is the value of the ini setting 'register_argc_argv'?

  

FUNCTION, it a made home function

if($in['bg']) {
   print "HERE"; sleep(30);
}
else {
   print "forking";
   `/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1
2>&1 /var/log/test.log &`
}
?>

So Im assuming that the fork will get the bg argument, in this case I
should receive "HERE" in /var/log/test.log (did tail -f
/var/log/test.log while I was running the script)
I've put a sleep 30 seconds to get the fork PID number.



no idea how the sleep() will help.

  

Unfortunately, when I do execute test_fork.php from the web, it wont
execute itself in background.



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.

  

This method was running fine with my old config.

The script works perfectly because if Im executing test_fork.php from
the shell, the fork is working fine!



and what is the value of the ini setting 'register_argc_argv' when running
via the php CLI SAPI?

  

the value is OFF

but my other servers that is running php cli is set to OFF too...

--
Frederic Belleudy
Programmer
PWIdeas
ICQ #: 253-372-030 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 message? It works fine when Im running it from the shell

When I do:

`/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1 2>&1 
/var/log/test.log &`
you can see bg=1

its the passing arguments!
any other suggestions?



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 code you use to
do the forking with.

  
  

Ok then you want to have the fork code!



'want' is putting it strongly - unless of course your handing out AudiRS4's
in which case 'want' is spot on.

  

I'm doing a complete example


My script is forking on itself.
So from my browser I go on:
http://localhost/test_fork.php

My code in test_fork.php is :




does $_SERVER['argv'] exist at all? does your error reporting include E_NOTICE?
what is the value of the ini setting 'register_argc_argv'?

  

FUNCTION, it a made home function

if($in['bg']) {
   print "HERE"; sleep(30);
}
else {
   print "forking";
   `/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1
2>&1 /var/log/test.log &`
}
?>

So Im assuming that the fork will get the bg argument, in this case I
should receive "HERE" in /var/log/test.log (did tail -f
/var/log/test.log while I was running the script)
I've put a sleep 30 seconds to get the fork PID number.



no idea how the sleep() will help.

  

Unfortunately, when I do execute test_fork.php from the web, it wont
execute itself in background.



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.

  

This method was running fine with my old config.

The script works perfectly because if Im executing test_fork.php from
the shell, the fork is working fine!



and what is the value of the ini setting 'register_argc_argv' when running
via the php CLI SAPI?

  



--
Frederic Belleudy
Programmer
PWIdeas
ICQ #: 253-372-030 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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
>> do the forking with.
>>
>>   
> Ok then you want to have the fork code!

'want' is putting it strongly - unless of course your handing out AudiRS4's
in which case 'want' is spot on.

> I'm doing a complete example
> 
> 
> My script is forking on itself.
> So from my browser I go on:
> http://localhost/test_fork.php
> 
> My code in test_fork.php is :
> 
>  $in = get_shell_args($_SERVER['argv']); // DONT PAY ATTENTION TO THAT

does $_SERVER['argv'] exist at all? does your error reporting include E_NOTICE?
what is the value of the ini setting 'register_argc_argv'?

> FUNCTION, it a made home function
> 
> if($in['bg']) {
>print "HERE"; sleep(30);
> }
> else {
>print "forking";
>`/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1
> 2>&1 /var/log/test.log &`
> }
> ?>
> 
> So Im assuming that the fork will get the bg argument, in this case I
> should receive "HERE" in /var/log/test.log (did tail -f
> /var/log/test.log while I was running the script)
> I've put a sleep 30 seconds to get the fork PID number.

no idea how the sleep() will help.

> 
> Unfortunately, when I do execute test_fork.php from the web, it wont
> execute itself in background.

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.

> This method was running fine with my old config.
> 
> The script works perfectly because if Im executing test_fork.php from
> the shell, the fork is working fine!

and what is the value of the ini setting 'register_argc_argv' when running
via the php CLI SAPI?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 then you want to have the fork code!
I'm doing a complete example


My script is forking on itself.
So from my browser I go on:
http://localhost/test_fork.php

My code in test_fork.php is :

$in = get_shell_args($_SERVER['argv']); // DONT PAY ATTENTION TO THAT 
FUNCTION, it a made home function


if($in['bg']) {
   print "HERE";  
   sleep(30);

}
else {
   print "forking";
   `/usr/local/bin/php /www/admin.gammacash.com/test/test_fork.php bg=1 
2>&1 /var/log/test.log &`

}
?>

So Im assuming that the fork will get the bg argument, in this case I 
should receive "HERE" in /var/log/test.log (did tail -f 
/var/log/test.log while I was running the script)

I've put a sleep 30 seconds to get the fork PID number.

Unfortunately, when I do execute test_fork.php from the web, it wont 
execute itself in background.

This method was running fine with my old config.

The script works perfectly because if Im executing test_fork.php from 
the shell, the fork is working fine!




__ NOD32 2162 (20070402) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com



  



--
Frederic Belleudy
Programmer
PWIdeas
ICQ #: 253-372-030 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 background.
> My issue is, it doesn't work anymore since my new upgrade.
> So I'm using this line to run my background script from the web browser
> interface:
> /usr/local/bin/php test.php 2>&1 error.log

and the [php] code that does the fork is what exactly??

> 
> if Im executing my script from the shell, my fork is working very fine!
> (Odd isn't it)
> I taught it could be owner and rights problems but it's not the case...
> 
> Anyone got suggestions??

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.

> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 doesn't work anymore since my new upgrade.
So I'm using this line to run my background script from the web browser 
interface:

/usr/local/bin/php test.php 2>&1 error.log

if Im executing my script from the shell, my fork is working very fine! 
(Odd isn't it)

I taught it could be owner and rights problems but it's not the case...

Anyone got suggestions??

--
Frederic Belleudy
Programmer
PWIdeas
ICQ #: 253-372-030 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 var, add it, and try again

if not work .. send a piece of code

$action = $_GET["action"];

if ($action == "main") {
/*** do think ... ***/
}...

Have fun
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32) - WinPT 1.0.1

iD8DBQFFm5YqEg3iyspSWPARAmVnAJ9cATO6+9XCdz+WeH3Hgu3BeG3YjwCfdPFw
eNY6PAnmZIfjV7wGN//pMIs=
=opLP
-END PGP SIGNATURE-


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 your first example.

On Sat, December 30, 2006 7:21 pm, Wikus Moller wrote:
> 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 code on my index.php file which
> like many other sites I know, handles quite a large amount
> if(action=="main"); etc etc. :
>
>  $action = $_GET["action"]; //line 55
> $sid = $_GET["sid"];   //line 56
> $page = $_GET["page"]; //line 57
> $who = $_GET["who"];   //line 58
> ?>
>
> When I go to http://chillinglounge.net (where the error is located) I
> get the following error message(s):
>
> Notice: Undefined index: action in
> C:\websites\chillinglounge.net\public_html\index.php on line 55
>
> Notice: Undefined index: sid in
> C:\websites\chillinglounge.net\public_html\index.php on line 56
>
> Notice: Undefined index: page in
> C:\websites\chillinglounge.net\public_html\index.php on line 57
>
> Notice: Undefined index: who in
> C:\websites\chillinglounge.net\public_html\index.php on line 58
>
> Now if you would look at exactly the same script at
> http://ranterswap.net you'd see absolutely no errors.
>
> That's where I need your help. I know what is causing this error. I
> believe it's the fact that register_globals is turned off.
>
> But what I really want to know is: How do I fix it without trying to
> turn register_globals on via .htaccess (because it doesn't work)?
>
> Is there a function or some magic script that would to the trick?
> Or do I have to recode my entire script and how?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 = isset($_GET['action']) ? $_GET['action'] : null;

replace null in the above with whatever you want your default action to
be there if it is not provided in the URL.

-Rasmus

Wikus Moller wrote:
> 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 code on my index.php file which
> like many other sites I know, handles quite a large amount
> if(action=="main"); etc etc. :
> 
>  $action = $_GET["action"]; //line 55
> $sid = $_GET["sid"];   //line 56
> $page = $_GET["page"]; //line 57
> $who = $_GET["who"];   //line 58
> ?>
> 
> When I go to http://chillinglounge.net (where the error is located) I
> get the following error message(s):
> 
> Notice: Undefined index: action in
> C:\websites\chillinglounge.net\public_html\index.php on line 55
> 
> Notice: Undefined index: sid in
> C:\websites\chillinglounge.net\public_html\index.php on line 56
> 
> Notice: Undefined index: page in
> C:\websites\chillinglounge.net\public_html\index.php on line 57
> 
> Notice: Undefined index: who in
> C:\websites\chillinglounge.net\public_html\index.php on line 58
> 
> Now if you would look at exactly the same script at
> http://ranterswap.net you'd see absolutely no errors.
> 
> That's where I need your help. I know what is causing this error. I
> believe it's the fact that register_globals is turned off.
> 
> But what I really want to know is: How do I fix it without trying to
> turn register_globals on via .htaccess (because it doesn't work)?
> 
> Is there a function or some magic script that would to the trick?
> Or do I have to recode my entire script and how?
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 code on my index.php file which
like many other sites I know, handles quite a large amount
if(action=="main"); etc etc. :



When I go to http://chillinglounge.net (where the error is located) I
get the following error message(s):

Notice: Undefined index: action in
C:\websites\chillinglounge.net\public_html\index.php on line 55

Notice: Undefined index: sid in
C:\websites\chillinglounge.net\public_html\index.php on line 56

Notice: Undefined index: page in
C:\websites\chillinglounge.net\public_html\index.php on line 57

Notice: Undefined index: who in
C:\websites\chillinglounge.net\public_html\index.php on line 58

Now if you would look at exactly the same script at
http://ranterswap.net you'd see absolutely no errors.

That's where I need your help. I know what is causing this error. I
believe it's the fact that register_globals is turned off.

But what I really want to know is: How do I fix it without trying to
turn register_globals on via .htaccess (because it doesn't work)?

Is there a function or some magic script that would to the trick?
Or do I have to recode my entire script and how?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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.  They say it's

> They require that you fax them a rub or your credit card?!? I
> certainly wouldn't do that!

I *think* they do this only when the credit card does not sail through
automatically.  Like if you give a shipping address different from
your home, or your cell-phone instead of home phone, and then the
ultra-stringent CC checks they have turned on kick back the
transaction as suspect.

Or so they explained it to me, when I had the same reaction.

At that point, I suspect you'd be faster to start over and be more
careful about matching up your CC input with what the bank has "on
file"

PS  A Sharpie does not make a good rubbing tool, no matter how gently
you try to press. :-)

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 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.  They say it's
for added security, but I've never had to do that with any other
online transactions that I've done.  OCS Solutions had me pay for a
year up front, which always makes me nervous when checking out a new
provider, but they do offer a money back guarantee.  Actually, both
providers offered a money back guarantee.  DreamHost's is 97 days.
That's pretty good.


They require that you fax them a rub or your credit card?!? I
certainly wouldn't do that!


Cost-wise, both companies were fairly inexpensive.  I ran a Google
search for "DreamHost Coupon" and found a coupon that eliminated a
majority of the up front cost.  Actually, I was pretty surprised.
They give you a free domain registration that includes private whois
for free.  After the coupon, I paid $9.90 and covered the start-up
fee (normally $45), the first month of service, and the domain
registration.  It feels like I paid for a domain registration and got
free hosting for a month.


Nice!


My account with DreamHost was created on Monday.  Technically, it
took 5 days to get my account set up.  That's the longest set up
delay I've ever experienced with any host provider.  OCS Solutions
called me an hour after signing up and had my account setup shortly
thereafter.


That's all it should take.


I also registered a domain when signing up with OCS Solutions.  The
whois was wrong.  Somehow it ended up showing as registered to one of
their employees, but I called and they quickly fixed it.  The account
was set up under the wrong username, but they fixed that quickly,
along with problems with cpanel when it doesn't handle the name
change correctly.  Mistakes were made, but I was really pleased with
how easy it was to get help and I was really happy with how much
people obviously cared about helping out.

After signing up with DreamHost, the domain that I'd registered with
them wasn't working.  I was exploring their control panel to figure
out the problem when I came upon a DNS management page.  The page
automatically identified and fixed the problem.  That was impressive.

Also, I started exploring the DreamHost forums after signing up,
something I almost wish I'd done beforehand.  I found a lot of posts
from very disgruntled customers.  It sounds as if they've been
running into problems lately on their servers.  People complain A LOT
about the lack of phone support from DreamHost... you have to submit
a trouble ticket for everything.  If your account subscription is
high enough, they offer a limited number of call backs.  The worst
part was reading debates between the really happy and the really
unhappy DreamHost clients.  A lot of the discussions boiled down to
verbal attacks between customers.  I'm honestly surprised DreamHost
didn't intervene.

One last thing with OCS, the plan I started on turned out to be
insufficient for my needs.  I talked with them and they came up with
a new plan that does everything I want and just charged me a little
more to cover the difference.

End result so far...

CalPop: I've always had problems with the initial set up of servers
at CalPop.  Talking with their tech support on the phone is a
nightmare; there's something wrong with their phone lines (seems like
a really bad voice over IP solution).  It usually takes way too many
emails to resolve problems.  I've also experienced a lot of hardware
failures, which makes me wonder about the quality of parts they
purchase.  Once the server works though, everything seems to settle
down until the next problem shows up.

DreamHost:  Best prices, low service.  It seems like DreamHost is run
by and tailored toward experienced techies.  That's fine, I can work
with that.  I'm willing to try working with limited phone support.
I'm really only concerned with delays I might experience when a
problem shows up in something that's mission critical.  Beyond that,
there are a lot of features available here that aren't elsewhere.
I'm getting great value for my money.

OCS Solutions:  Good prices, but you have to pay up front.  Best
customer service I've experienced from an ISP so far.  I feel a lot
more comfortable using them for anything mission critical.



Dotan

http://what-is-what.com/what_is/java.html
http://lyricslist.com/lyrics/artist_albums/345/metallica.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 fill  
out a form and fax it to them, along with a rubbing of your credit  
card.  Personally, I found that part rather annoying.  They say it's  
for added security, but I've never had to do that with any other  
online transactions that I've done.  OCS Solutions had me pay for a  
year up front, which always makes me nervous when checking out a new  
provider, but they do offer a money back guarantee.  Actually, both  
providers offered a money back guarantee.  DreamHost's is 97 days.   
That's pretty good.


Cost-wise, both companies were fairly inexpensive.  I ran a Google  
search for "DreamHost Coupon" and found a coupon that eliminated a  
majority of the up front cost.  Actually, I was pretty surprised.   
They give you a free domain registration that includes private whois  
for free.  After the coupon, I paid $9.90 and covered the start-up  
fee (normally $45), the first month of service, and the domain  
registration.  It feels like I paid for a domain registration and got  
free hosting for a month.


My account with DreamHost was created on Monday.  Technically, it  
took 5 days to get my account set up.  That's the longest set up  
delay I've ever experienced with any host provider.  OCS Solutions  
called me an hour after signing up and had my account setup shortly  
thereafter.


I also registered a domain when signing up with OCS Solutions.  The  
whois was wrong.  Somehow it ended up showing as registered to one of  
their employees, but I called and they quickly fixed it.  The account  
was set up under the wrong username, but they fixed that quickly,  
along with problems with cpanel when it doesn't handle the name  
change correctly.  Mistakes were made, but I was really pleased with  
how easy it was to get help and I was really happy with how much  
people obviously cared about helping out.


After signing up with DreamHost, the domain that I'd registered with  
them wasn't working.  I was exploring their control panel to figure  
out the problem when I came upon a DNS management page.  The page  
automatically identified and fixed the problem.  That was impressive.


Also, I started exploring the DreamHost forums after signing up,  
something I almost wish I'd done beforehand.  I found a lot of posts  
from very disgruntled customers.  It sounds as if they've been  
running into problems lately on their servers.  People complain A LOT  
about the lack of phone support from DreamHost... you have to submit  
a trouble ticket for everything.  If your account subscription is  
high enough, they offer a limited number of call backs.  The worst  
part was reading debates between the really happy and the really  
unhappy DreamHost clients.  A lot of the discussions boiled down to  
verbal attacks between customers.  I'm honestly surprised DreamHost  
didn't intervene.


One last thing with OCS, the plan I started on turned out to be  
insufficient for my needs.  I talked with them and they came up with  
a new plan that does everything I want and just charged me a little  
more to cover the difference.


End result so far...

CalPop: I've always had problems with the initial set up of servers  
at CalPop.  Talking with their tech support on the phone is a  
nightmare; there's something wrong with their phone lines (seems like  
a really bad voice over IP solution).  It usually takes way too many  
emails to resolve problems.  I've also experienced a lot of hardware  
failures, which makes me wonder about the quality of parts they  
purchase.  Once the server works though, everything seems to settle  
down until the next problem shows up.


DreamHost:  Best prices, low service.  It seems like DreamHost is run  
by and tailored toward experienced techies.  That's fine, I can work  
with that.  I'm willing to try working with limited phone support.   
I'm really only concerned with delays I might experience when a  
problem shows up in something that's mission critical.  Beyond that,  
there are a lot of features available here that aren't elsewhere.   
I'm getting great value for my money.


OCS Solutions:  Good prices, but you have to pay up front.  Best  
customer service I've experienced from an ISP so far.  I feel a lot  
more comfortable using them for anything mission critical.





On Oct 11, 2006, at 10:12 PM, Kyle wrote:


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, their service is quite impressive.  And if
you don't like the PHP feature

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 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, their service is quite impressive.  And if
you don't like the PHP features they let you compile you own!

Good Luck with it!
Kyle



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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?  Bonus points for good drive space, bandwidth, and SSH
> access.
>
> I ran a Google search and came up with several options.
> A2Hosting.com seems the best so far.  My only reservation is that
> they offer 24/7 support through a message service who will page a
> tech who in turn will call you back - seems sketchy and I can imagine
> trying to talk someone into going to the server room at 2am.  I also
> checked out many of the other options, but some of them seemed even
> more sketchy... like VisualWebHosting.com...  you click on their link
> for a BBB review and it brings up another company entirely... and you
> call their number and all the greeting says is "Please leave a
> message... bep"... pretty scary if you ask me.
>
> Anyway, thanks in advance for any recommendations you have.
>
> -Ed

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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, their service is quite impressive.  And if
you don't like the PHP features they let you compile you own!

Good Luck with it!
Kyle

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?  Bonus points for good drive space, bandwidth, and SSH access.
> 
> I ran a Google search and came up with several options.  A2Hosting.com
> seems the best so far.  My only reservation is that they offer 24/7
> support through a message service who will page a tech who in turn will
> call you back - seems sketchy and I can imagine trying to talk someone
> into going to the server room at 2am.  I also checked out many of the
> other options, but some of them seemed even more sketchy... like
> VisualWebHosting.com...  you click on their link for a BBB review and it
> brings up another company entirely... and you call their number and all
> the greeting says is "Please leave a message... bep"... pretty
> scary if you ask me.
> 
> Anyway, thanks in advance for any recommendations you have.
> 
> -Ed
> 
> --PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 Google search and came up with several options.   
A2Hosting.com seems the best so far.  My only reservation is that  
they offer 24/7 support through a message service who will page a  
tech who in turn will call you back - seems sketchy and I can imagine  
trying to talk someone into going to the server room at 2am.  I also  
checked out many of the other options, but some of them seemed even  
more sketchy... like VisualWebHosting.com...  you click on their link  
for a BBB review and it brings up another company entirely... and you  
call their number and all the greeting says is "Please leave a  
message... bep"... pretty scary if you ask me.


Anyway, thanks in advance for any recommendations you have.

-Ed

--
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 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 from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
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 frustrating.


--
 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|   '@' || 'unl.edu.ar';
Universidad Nacional|   DBA, Programador,
del Litoral |   Administrador
-
-- 
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 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



[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|   '@' || 'unl.edu.ar';
Universidad Nacional|   DBA, Programador,
del Litoral |   Administrador
-
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

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. :-)

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 be possible to develop php5 code in a php5 env, if you are intimately
familiar with the differences between php4 and php5, but if you're that
familiar with PHP, then you're worth more than a half-ass software creation
enviornment.

Basicly it's a catch22 if you're good enough to be able to cope with this
enviornment, you shouldn't have to.






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,
> 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 this and then
> when its done the 
> app will be moved to a php 4 final server...
> 
> I have been reading and i see that there are some php4
> functions that 
> act strange on php5 (like strpos)
> are there any other things I should be aware of?
> 
> If you think it would be too much of a hassle, do you
> think i should 
> request the admin to install php 4 instead and scrap
> this installation? 
> 
> I have also seen many sites having php4 and 5 on the
> same machine, this 
> is a windows server, is there any easy way to do that
> here?
> 
> Thanks!
> Ryan
> 
> --
> - The faulty interface lies between the chair and the keyboard.
> - Creativity is great, but plagiarism is faster!
> - Smile, everyone loves a moron. :-)
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 this and then
when its done the 
app will be moved to a php 4 final server...

I have been reading and i see that there are some php4
functions that 
act strange on php5 (like strpos)
are there any other things I should be aware of?

If you think it would be too much of a hassle, do you
think i should 
request the admin to install php 4 instead and scrap
this installation? 

I have also seen many sites having php4 and 5 on the
same machine, this 
is a windows server, is there any easy way to do that
here?

Thanks!
Ryan

--
- The faulty interface lies between the chair and the keyboard.
- Creativity is great, but plagiarism is faster!
- Smile, everyone loves a moron. :-)

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 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 this and then when its done the app 
> will be moved to a php 4 final server...
> 
> I have been reading and i see that there are some php4 functions that act 
> strange on php5 (like strpos)

what's wrong with strpos() in php5? are you perchance using multibyte strings 
without using the mb_string
function overloading stuff?

> are there any other things I should be aware of?

the fact that objects are always references in php5 and in php4 you have to use 
'&' everwhere to
make sure your always talking to the same object (using the '&' notation in 
php5 will give you NOTICEs or WARNINGS
depending on the minor version)

that and a million other little things like certain functions not being 
available :-)

> 
> If you think it would be too much of a hassle, do you think i should request 
> the admin to install php 4 instead and scrap this installation? 

YES. *at the very least* it will be a pain to dev on php5 and go to production 
on a php4.

> 
> I have also seen many sites having php4 and 5 on the same machine, this is a 
> windows server, is there any easy way to do that here?

sorry I'm clueless regardless IIS.

> 
> Thanks!
> Ryan
>  
> --- The faulty interface lies between the chair and the keyboard.
> - Creativity is great, but plagiarism is faster!
> - Smile, everyone loves a moron. :-)
> 
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 this and then when its done the app will 
be moved to a php 4 final server...

I have been reading and i see that there are some php4 functions that act 
strange on php5 (like strpos)
are there any other things I should be aware of?

If you think it would be too much of a hassle, do you think i should request 
the admin to install php 4 instead and scrap this installation? 

I have also seen many sites having php4 and 5 on the same machine, this is a 
windows server, is there any easy way to do that here?

Thanks!
Ryan
 
--- The faulty interface lies between the chair and the keyboard.
- Creativity is great, but plagiarism is faster!
- Smile, everyone loves a moron. :-)


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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
>> problems. Anything 5 and above won't work. Windows is 2000 SP4. PHP is
>> installed as an ISAPI module.
>> 
>> ;cgi.force_redirect = 1
>> 
>> libmysql.dll is in /winnt, /system, /sytem32, /php and php is in my path.
>> If it can't find it it ain't looking hard enough. I've also tried many
>> variations of this.
>> 
>> The error below is similar to what I got. I was also getting memory
>> errors, but don't have that one to post.
>> 
>> Results:
>> Warning: PHP Startup: Unable to load dynamic library
>> 'c:/php/ext/php_mysql.dll' - The specified procedure could not be found.
>> in Unknown on line 0
> 
> It's not that the file can't be found, it's something inside the file
> breaking. Otherwise it would just say "unable to find php_mysql.dll".
> 
> I'd say it's finding the mysql4 version of the dll and trying to include
> it which ain't going to work if you want to talk to a mysql5 server.
> 
> http://bugs.php.net/bug.php?id=24621
> 

There is a nice tool called dependencywalker which can help you resolve
problems with loading dlls

http://www.dependencywalker.com


Cheers
-- 
David Robley

It's okay to be ugly...but aren't you overdoing it?
Today is Prickle-Prickle, the 33rd day of Confusion in the YOLD 3172. 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 5 and above won't work. Windows is 2000 SP4. PHP is
installed as an ISAPI module. 


;cgi.force_redirect = 1

libmysql.dll is in /winnt, /system, /sytem32, /php and php is in my path. If
it can't find it it ain't looking hard enough. I've also tried many
variations of this.

The error below is similar to what I got. I was also getting memory errors,
but don't have that one to post.

Results:
Warning: PHP Startup: Unable to load dynamic library
'c:/php/ext/php_mysql.dll' - The specified procedure could not be found. in
Unknown on line 0


It's not that the file can't be found, it's something inside the file 
breaking. Otherwise it would just say "unable to find php_mysql.dll".


I'd say it's finding the mysql4 version of the dll and trying to include 
it which ain't going to work if you want to talk to a mysql5 server.


http://bugs.php.net/bug.php?id=24621

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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

2006-06-27 Thread Beauford
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 5 and above won't work. Windows is 2000 SP4. PHP is
installed as an ISAPI module. 

;cgi.force_redirect = 1

libmysql.dll is in /winnt, /system, /sytem32, /php and php is in my path. If
it can't find it it ain't looking hard enough. I've also tried many
variations of this.

The error below is similar to what I got. I was also getting memory errors,
but don't have that one to post.

Results:
Warning: PHP Startup: Unable to load dynamic library
'c:/php/ext/php_mysql.dll' - The specified procedure could not be found. in
Unknown on line 0
Content-type: text/html X-Powered-By: PHP/5.0.0 
php running
Fatal error: Call to undefined function mysql_connect() in
c:\Inetpub\wwwroot\CAFGPHP\test.php on line 4
PHP Warning: PHP Startup: Unable to load dynamic library
'c:/php/ext/php_mysql.dll' - The specified procedure could not be found. in
Unknown on line 0 

Thanks

-Original Message-
From: Janet Valade [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 times. So, you are doing something wrong.

Did you test PHP 5 by itself, to make sure that it works without accessing
MySQL? Did you test MySQL by itself, to be sure the server is running
correctly when it is accessed outside of PHP 5.

Did you install MysQL using its installer? That's the best way. What version
of MySQL? What Windows?

Did you turn cgi.force_redirect off in the php.ini file? You have to do that
if you are using IIS.

What error do you get?

Janet


Beauford wrote:

>>From what I have been reading this is a known issue with PHP5. There 
>>is
> something in the php_mysql.dll which is not compatible. 
> 
> I wasted 3 hours today trying all the tips and tricks I could find, 
> but the bottom line is that it won't work.
> 
> This was my reason for posting to this group to see if anyone has any
ideas.
> 
> Here is one of the many links I was looking at to try and solve this. 
> http://codewalkers.com/forum/index.php?action=displaythread&forum=php
> elp&id
> =370&realm=default
> 
> Thanks
> 
> -Original Message-
> From: Janet Valade [mailto:[EMAIL PROTECTED]
> Sent: June 26, 2006 4:08 PM
> 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 documentation. 
> http://us3.php.net/manual/en/ref.mysql.php or 
> http://us3.php.net/manual/en/ref.mysqli.php
> 
> Janet
> 
> 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 Linux/Apche/MySQL/PHP5, but when I run it on 
>>Windows 2000 with PHP 4.4 I get a page full of errors. Lets forget 
>>about the errors, does anyone have any idea how to get PHP5 and MySQL 
>>to work on Windows. I have already tried 100 different variations of 
>>things from information I found searching out this problem, but maybe
> 
> someone has a new idea.
> 
>>If it were me I'd just run this site on Linux, but this is for a 
>>friend who wants to use IIS. If your curious the errors are below.
>>
>>Thanks
>>
>>B
>>
>>Warning: mysql_numrows(): supplied argument is not a valid MySQL 
>>result resource in G:\Websites\Webtest\caalogin\include\database.php
>>on line 207
>>
>>Warning: mysql_numrows(): supplied argument is not a valid MySQL 
>>result resource in G:\Websites\Webtest\caalogin\include\database.php
>>on line 218
>>
>>Warning: session_start(): Cannot send session cookie - headers already 
>>sent by (output started at
>>G:\Websites\Webtest\caalogin\include\database.php:207)
>>in G:\Websites\Webtest\caalogin\include\session.php on line 46
>>
>>Warning: session_start(): Cannot send session cache limiter - headers 
>>already sent (output started at
>>G:\Websites\Webtest\caalogin\include\database.php:207) in 
>>G:\Websit

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

2006-06-26 Thread Beauford
>From what I have been reading this is a known issue with PHP5. There is
something in the php_mysql.dll which is not compatible. 

I wasted 3 hours today trying all the tips and tricks I could find, but the
bottom line is that it won't work. 

This was my reason for posting to this group to see if anyone has any ideas.

Here is one of the many links I was looking at to try and solve this. 
http://codewalkers.com/forum/index.php?action=displaythread&forum=phphelp&id
=370&realm=default

Thanks

-Original Message-
From: Janet Valade [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2006 4:08 PM
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 documentation. 
http://us3.php.net/manual/en/ref.mysql.php or
http://us3.php.net/manual/en/ref.mysqli.php

Janet

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 Linux/Apche/MySQL/PHP5, but when I run it on 
> Windows 2000 with PHP 4.4 I get a page full of errors. Lets forget 
> about the errors, does anyone have any idea how to get PHP5 and MySQL 
> to work on Windows. I have already tried 100 different variations of 
> things from information I found searching out this problem, but maybe
someone has a new idea.
> 
> If it were me I'd just run this site on Linux, but this is for a 
> friend who wants to use IIS. If your curious the errors are below.
> 
> Thanks
> 
> B
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL 
> result resource in G:\Websites\Webtest\caalogin\include\database.php 
> on line 207
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL 
> result resource in G:\Websites\Webtest\caalogin\include\database.php 
> on line 218
> 
> Warning: session_start(): Cannot send session cookie - headers already 
> sent by (output started at 
> G:\Websites\Webtest\caalogin\include\database.php:207)
> in G:\Websites\Webtest\caalogin\include\session.php on line 46
> 
> Warning: session_start(): Cannot send session cache limiter - headers 
> already sent (output started at
> G:\Websites\Webtest\caalogin\include\database.php:207) in 
> G:\Websites\Webtest\caalogin\include\session.php on line 46
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL 
> result resource in G:\Websites\Webtest\caalogin\include\database.php 
> on line 218
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL 
> result resource in G:\Websites\Webtest\caalogin\include\database.php 
> on line 207
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL 
> result resource in G:\Websites\Webtest\caalogin\include\database.php 
> on line 218
> 


--
Janet Valade -- janet.valade.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 what it
said then it worked ok.
HTH...

PS - I had GD working ok on a simple thumbnail generation script.


On 26/06/06, Beauford <[EMAIL PROTECTED]> 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 Linux/Apche/MySQL/PHP5, but when I run it on Windows
2000
with PHP 4.4 I get a page full of errors. Lets forget about the errors,
does
anyone have any idea how to get PHP5 and MySQL to work on Windows. I have
already tried 100 different variations of things from information I found
searching out this problem, but maybe someone has a new idea.

If it were me I'd just run this site on Linux, but this is for a friend
who
wants to use IIS. If your curious the errors are below.

Thanks

B

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 207

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

Warning: session_start(): Cannot send session cookie - headers already
sent
by (output started at
G:\Websites\Webtest\caalogin\include\database.php:207)
in G:\Websites\Webtest\caalogin\include\session.php on line 46

Warning: session_start(): Cannot send session cache limiter - headers
already sent (output started at
G:\Websites\Webtest\caalogin\include\database.php:207) in
G:\Websites\Webtest\caalogin\include\session.php on line 46

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 207

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
Tom Chubb
[EMAIL PROTECTED]
07915 053312


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 Linux/Apche/MySQL/PHP5, but when I run it on Windows 2000
> with PHP 4.4 I get a page full of errors. Lets forget about the errors, does
> anyone have any idea how to get PHP5 and MySQL to work on Windows. I have
> already tried 100 different variations of things from information I found
> searching out this problem, but maybe someone has a new idea.
> 
> If it were me I'd just run this site on Linux, but this is for a friend who
> wants to use IIS. If your curious the errors are below.
> 
> Thanks
> 
> B
> 
> Warning: mysql_numrows(): supplied argument is not a valid MySQL result
> resource in G:\Websites\Webtest\caalogin\include\database.php on line 207


The fact that you get an invalid resource error from a mysql_xxx()
function indicates that you do indeed have a working MySQL lib. Looking
at the error further indicates that you are not passing a valid mysql
result handle to the function. Please show us the rest of the code where
you perform the query and attempt to retrieve the result. Since I see no
errors about connecting to the MySQL database, I assume that you have
that part working.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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
with PHP 4.4 I get a page full of errors. Lets forget about the errors, does
anyone have any idea how to get PHP5 and MySQL to work on Windows. I have
already tried 100 different variations of things from information I found
searching out this problem, but maybe someone has a new idea.

If it were me I'd just run this site on Linux, but this is for a friend who
wants to use IIS. If your curious the errors are below.

Thanks

B

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 207

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

Warning: session_start(): Cannot send session cookie - headers already sent
by (output started at G:\Websites\Webtest\caalogin\include\database.php:207)
in G:\Websites\Webtest\caalogin\include\session.php on line 46

Warning: session_start(): Cannot send session cache limiter - headers
already sent (output started at
G:\Websites\Webtest\caalogin\include\database.php:207) in
G:\Websites\Webtest\caalogin\include\session.php on line 46

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 207

Warning: mysql_numrows(): supplied argument is not a valid MySQL result
resource in G:\Websites\Webtest\caalogin\include\database.php on line 218

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 on Windows: ms sql extension problem



 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 
installed. I have only these lines in my php.ini file:

extension_dir="C:\PHP\ext"
extension=php_mssql.dll

I checked phpinfo() and it tells that my php.ini file is at the correct 
location (C:\winnt\php.ini.) I can load other extensions. Another 
example: if I add "php_curl.dll" then I get a "libsleay32.dll not found" 
error message when I try to restart apache. But I do not get any error 
message about the php_mssql.dll. It is just not loaded. I'm sure that 
all the ms sql client libs are installed, because this is the same 
machine where the ms sql server is running. What can be the problem? 
Please help me. My bosses are killing me because I could not solve this 
problem for weeks. :-(

Thanks,

  Laszlo

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 copying the DLLs into the C:\Windows\System32 that
everything started working.  Thankfully Google held the answer.

Wolf

> I checked phpinfo() and it tells that my php.ini file is at the correct
> location (C:\winnt\php.ini.) I can load other extensions. Another
> example: if I add "php_curl.dll" then I get a "libsleay32.dll not found"
> error message when I try to restart apache. But I do not get any error
> message about the php_mssql.dll. It is just not loaded. I'm sure that
> all the ms sql client libs are installed, because this is the same
> machine where the ms sql server is running. What can be the problem?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.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 
installed. I have only these lines in my php.ini file:


extension_dir="C:\PHP\ext"
extension=php_mssql.dll

I checked phpinfo() and it tells that my php.ini file is at the correct 
location (C:\winnt\php.ini.) I can load other extensions. Another 
example: if I add "php_curl.dll" then I get a "libsleay32.dll not found" 
error message when I try to restart apache. But I do not get any error 
message about the php_mssql.dll. It is just not loaded. I'm sure that 
all the ms sql client libs are installed, because this is the same 
machine where the ms sql server is running. What can be the problem? 
Please help me. My bosses are killing me because I could not solve this 
problem for weeks. :-(


Thanks,

 Laszlo

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 Regards,
Mário Gamito

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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: http://www.blueneedle.com/wordpress/?bnphplists

On Mar 17, 2006, at 7:17 AM, tedd wrote:


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 and PHP 5 working together.


tedd
--
-- 
--

http://sperling.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




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 and PHP 5 working together.


tedd
--

http://sperling.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 earlier, one of the
advantages is that PHP can run as another user instead of as
the apache user. (Of course, it's still considered rather slooow
though.)

Anyway, there are some more info here:

  http://www.php.net/manual/en/security.cgi-bin.php

> Why, after years of running PHP as an
> Apache module, the sudden conversion to CGI operation?

Remember, Miles, *your* $Web_Hosting_Company decides
(or better yet, *you* decide) whether PHP5 should run as
CGI or as an apache module. ;-)

> I've noticed occasional references of PHP5 "having issues"
> with CPanel.

I think it was also pointed earlier (somewhere) that it's the
other way around. :-)

> Is it simply easier for ISPs, given the intense competitive
> cost pressures they are under, to not wrestle with these
> issues, but to say "Here it is as a CGI if you want it."

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. 

> Regards - Miles Thompson

Regards,

- Edwin -

-- 
"The showing of partiality is not good, nor
 that an able-bodied man should transgress
 over a mere piece of bread." - Proverbs 28:21

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 the page, the web
> > > server shuts down PHP and sends out the results. The overhead
> > > of starting and stopping PHP (or Perl, etc.) was the
> > > complaint.
> > >
> > > When PHP is loaded as an Apache module there is not startup /
> > > shutdown overhead.
> > >
> > > If I have this wrong, or if PHP5 as a CGI stays resident and
> > > there is no penalty, will someone please correct me.
> >
> >No, nothing wrong there, I think.
> >
> >But there are other differences. (Like some functions not
> >working, etc.) Pros and cons, one might say. Anyway, here
> >are some results of a quick google search:
> >
> >   http://www.google.com/search?q=php+CGI+module+difference
> >
> >Hmm.. I just couldn't find it but there should be a page
> >about it on www.php.net ... (^_-)
> >
> > > Regards - Miles
> >
> >HTH,
> >
> >- Edwin -
>
>
> 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. Why, after years of running PHP as an Apache module,
> the sudden conversion to CGI operation?
>
> I've noticed occasional references of PHP5 "having issues" with CPanel. Is
> it simply easier for ISPs, given the intense competitive cost pressures
> they are under, to not wrestle with these issues, but to say "Here it is as
> a CGI if you want it."

One major difference is the CGI runs as your user - whereas the apache
module runs as the apache user which can cause problems with
permissions etc (hence "safe-mode" and "open-basedir" to try and
restrict what you can do).

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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
> 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 the page, the web
> server shuts down PHP and sends out the results. The overhead
> of starting and stopping PHP (or Perl, etc.) was the
> complaint.
>
> When PHP is loaded as an Apache module there is not startup /
> shutdown overhead.
>
> If I have this wrong, or if PHP5 as a CGI stays resident and
> there is no penalty, will someone please correct me.

No, nothing wrong there, I think.

But there are other differences. (Like some functions not
working, etc.) Pros and cons, one might say. Anyway, here
are some results of a quick google search:

  http://www.google.com/search?q=php+CGI+module+difference

Hmm.. I just couldn't find it but there should be a page
about it on www.php.net ... (^_-)

> Regards - Miles

HTH,

- Edwin -



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. Why, after years of running PHP as an Apache module, 
the sudden conversion to CGI operation?


I've noticed occasional references of PHP5 "having issues" with CPanel. Is 
it simply easier for ISPs, given the intense competitive cost pressures 
they are under, to not wrestle with these issues, but to say "Here it is as 
a CGI if you want it."


Regards - Miles Thompson


--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 3/10/2006

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 were 10 years ago.
> 
> As I understand CGI, the web server sees that the page is of
> type .php, starts up PHP, PHP processes the page, the web
> server shuts down PHP and sends out the results. The overhead
> of starting and stopping PHP (or Perl, etc.) was the
> complaint.
> 
> When PHP is loaded as an Apache module there is not startup /
> shutdown overhead.
> 
> If I have this wrong, or if PHP5 as a CGI stays resident and
> there is no penalty, will someone please correct me.

No, nothing wrong there, I think.

But there are other differences. (Like some functions not
working, etc.) Pros and cons, one might say. Anyway, here
are some results of a quick google search:

  http://www.google.com/search?q=php+CGI+module+difference

Hmm.. I just couldn't find it but there should be a page
about it on www.php.net ... (^_-)

> Regards - Miles 

HTH,

- Edwin -

-- 
"Give to a wise person and he will become still wiser.
 Impart knowledge to someone righteous
 and he will increase in learning." - Proverbs 9:9

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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.
> 
>
> A little more on dreamhost.
> PHP5 is installed as CGI, not Apache module.

Is there a drawback to running php5 as CGI?

--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html


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 the page, the web server shuts down PHP and 
sends out the results. The overhead of starting and stopping PHP (or Perl, 
etc.) was the complaint.


When PHP is loaded as an Apache module there is not startup / shutdown 
overhead.


If I have this wrong, or if PHP5 as a CGI stays resident and there is no 
penalty, will someone please correct me.


Regards - Miles 



--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 3/10/2006

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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.
> 
>
> A little more on dreamhost.
> PHP5 is installed as CGI, not Apache module.


Is there a drawback to running php5 as CGI?



--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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.



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 PHP | Architect?


At hub.org you can install anything - virtual server.

Cheers - Miles


--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 3/10/2006

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 has issues with php5 not the other way around :-)
>
> >
> > Anyone heard of any problems or a work-around?
>
> get a different hosting provider. ;-)
>
> in the mean time why not install a cpoy of apache/php5/mysql/etc
> on your local PC and play with that?
>
> >
> > Thanks.
> >
> > tedd
> >
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>


--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 provider. ;-)

in the mean time why not install a cpoy of apache/php5/mysql/etc
on your local PC and play with that?



Thanks.

tedd



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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

--

http://sperling.com

--
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 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.

sidenote: the reference related fixes introduced into php4.4 (and php5+)
can be a PITA, avoid using references unless you..

a, really know what you are doing.
b, you really need a reference.

...objects in php5 don't need to be passed around by reference - in fact
I suggest the first thing you do when updating your code is to remove
reference syntax related to passing around objects :-)



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 World?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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



[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 remembered that libxml c 
api has such capability, so, if php dom is based on such, then it would 
be able to).

Any ideas?

Thanks in advance,

cheers.

Mariano.



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.371 / Virus Database: 267.13.12/193 - Release Date: 06/12/2005

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP 5 && OO && performance && exceptions

2005-11-11 Thread Jochem Maas

read the internals@ archive - there is a chap there who is developing an php 
module
that makes objects wrappers for basic types available.

but imho:

$str = new String("W T F !!");
echo $str->getValue(), $str, $str->__toString();

is just a bit OTT. also creating and rolling out (to a group of
developers) a set of classes to use in place of basic types on the basis
of a _belief_ that it may eliminate some development errors seems to be
not an unsound basis for such as decision.

chances are that half the time developers will 'forget' the
'basetype' classes, your dealing with egos you know :-).

but then again maybe in a couple of years we will only have objects to
represent types - although so long as at least Rasmus is 'on the bridge'
of starship NCC-17-PHP I imagine that won't be happening - IFAIR the creator is 
a fan
of straigtforward procedural code in most cases - apologies to Rasmus if I 
misread him.

[EMAIL PROTECTED] wrote:

Some more thought.



To solve this problem would be necessary to create some utility class like
System in java and that way should be possible to do a System::echo($string)
based on type, i guess this can be accomplished using overloading.



Am I making any sense?



- Original Message - 
From: <[EMAIL PROTECTED]>

To: 
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 :)



Anyway, did you abandon the development with the basic types class?



Angelo



- Original Message - 
From: "Jake Gardner" <[EMAIL PROTECTED]>

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 __construct($Value) {
  $this->Value = $Value;
  }
}
$SomeString = new String("Hello World!");
Print($SomeString); // Does not print "Hello World!"

The way around this was still unsatisfactory:
class String {
  protected $Value;
  function __construct($Value) {
 $this-> Value = $Value;
 }
 function __toString() {
 return $this->Value;
 }
}
$SomeString = new String("Hello World!");
Print($SomeString); // Prints "Hello World!"

Because this has obvious limitations, and is only a fix for strings;
this doesnt work for functions that expect integer values.

In reality, there really is no way to use PHP to rewrite a type in PHP
without using the PHP "omni-type".

However, you can use type casting as it is:




http://us2.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting


http://us2.php.net/manual/en/function.settype.php


On 11/9/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


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 the


performance?




Also for every controller class that I'm making I'm also making


exceptions


class of every error that it can generate.  Same questions: It will
degrade performance to throw an exception instead of lest say a pear


error


or return false?



Just for know, I'm doing this because I believe that it will eliminate
some o problems o development and will eliminate some basic validations.





Any tips appreciate



Angelo







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP 5 && OO && performance && exceptions

2005-11-11 Thread cron
Some more thought.



To solve this problem would be necessary to create some utility class like
System in java and that way should be possible to do a System::echo($string)
based on type, i guess this can be accomplished using overloading.



Am I making any sense?



- Original Message - 
From: <[EMAIL PROTECTED]>
To: 
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 :)
>
>
>
> Anyway, did you abandon the development with the basic types class?
>
>
>
> Angelo
>
>
>
> - Original Message - 
> From: "Jake Gardner" <[EMAIL PROTECTED]>
> 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 __construct($Value) {
>$this->Value = $Value;
>}
> }
> $SomeString = new String("Hello World!");
> Print($SomeString); // Does not print "Hello World!"
>
> The way around this was still unsatisfactory:
> class String {
>protected $Value;
>function __construct($Value) {
>   $this-> Value = $Value;
>   }
>   function __toString() {
>   return $this->Value;
>   }
> }
> $SomeString = new String("Hello World!");
> Print($SomeString); // Prints "Hello World!"
>
> Because this has obvious limitations, and is only a fix for strings;
> this doesnt work for functions that expect integer values.
>
> In reality, there really is no way to use PHP to rewrite a type in PHP
> without using the PHP "omni-type".
>
> However, you can use type casting as it is:
>
>
http://us2.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting
>
> http://us2.php.net/manual/en/function.settype.php
>
>
> On 11/9/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > 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 the
performance?
> >
> >
> >
> > Also for every controller class that I'm making I'm also making
exceptions
> > class of every error that it can generate.  Same questions: It will
> > degrade performance to throw an exception instead of lest say a pear
error
> > or return false?
> >
> >
> >
> > Just for know, I'm doing this because I believe that it will eliminate
> > some o problems o development and will eliminate some basic validations.
> >
> >
> >
> >
> >
> > Any tips appreciate
> >
> >
> >
> > Angelo
> >
> >
> >
> >
> >
>
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP 5 && OO && performance && exceptions

2005-11-10 Thread cron
I was not considering that, I was using $obj_string->getValue(), the 
__toString method and type casting could save me some keystrokes :)




Anyway, did you abandon the development with the basic types class?



Angelo



- Original Message - 
From: "Jake Gardner" <[EMAIL PROTECTED]>

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 __construct($Value) {
  $this->Value = $Value;
  }
}
$SomeString = new String("Hello World!");
Print($SomeString); // Does not print "Hello World!"

The way around this was still unsatisfactory:
class String {
  protected $Value;
  function __construct($Value) {
 $this-> Value = $Value;
 }
 function __toString() {
 return $this->Value;
 }
}
$SomeString = new String("Hello World!");
Print($SomeString); // Prints "Hello World!"

Because this has obvious limitations, and is only a fix for strings;
this doesnt work for functions that expect integer values.

In reality, there really is no way to use PHP to rewrite a type in PHP
without using the PHP "omni-type".

However, you can use type casting as it is:

http://us2.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting

http://us2.php.net/manual/en/function.settype.php


On 11/9/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

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 the performance?




Also for every controller class that I'm making I'm also making exceptions 
class of every error that it can generate.  Same questions: It will 
degrade performance to throw an exception instead of lest say a pear error 
or return false?




Just for know, I'm doing this because I believe that it will eliminate 
some o problems o development and will eliminate some basic validations.






Any tips appreciate



Angelo







--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 the performance?

 

Also for every controller class that I'm making I'm also making exceptions 
class of every error that it can generate.  Same questions: It will degrade 
performance to throw an exception instead of lest say a pear error or return 
false?

 

Just for know, I'm doing this because I believe that it will eliminate some o 
problems o development and will eliminate some basic validations.





Any tips appreciate



Angelo





[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 properly. The relevant bit of XSL is below:







select="$sections/sections/[EMAIL PROTECTED] = $targetID]" />















select="$targetFile/content/headerContent/headerCornerImage" />
select="$targetFile/content/headerContent/headerShadowImage" />

--

with some sample XML as follows:

--



home_nav_middle.gif
home_nav_bottom.gif





I've checked and confirmed that pageContext gets properly initialised, 
that all the referenced documents exist and are well-formed, and that 
they contain the expected nodes. The error I get is "evaluating variable 
'cornerImage' failed", yet I cannot understand how this can be so. Apart 
from the fact that it worked perfectly fine in PHP 4, all the XML and 
XSL conforms to spec. Anyone have an idea? I'm using the PHP 5 DOM and 
XSL libraries to handle everything in my upgraded version of the code; 
the PHP 4 version used DOMXML and Sablotron.



--
Pleochism: a moment of perfect beauty, between the "before" and the "after".

Mr Daniel Lowes
Techteam
Department of Computer Science
Information Technology Building, 4-30
University of Pretoria
http://www.cs.up.ac.za/

This message and attachments are subject to a disclaimer. Please refer 
to www.it.up.ac.za/documentation/governance/disclaimer/ for full details.
Hierdie boodskap en aanhangsels is aan 'n vrywaringsklousule onderhewig. 
Volledige besonderhede is by 
www.it.up.ac.za/documentation/governance/disclaimer/ beskikbaar.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 forms. During my own testing we gained lots of time by just running
> it as a compiled Apache module instead of through CGI and in .htaccess.

Well, I guess you are right. One can compile multiple versions of PHP to
run as Apache module in parallel by changing the sources (one has to
change some symbol names) but I think Strato didn't do that since most
shared hosting services run PHP as CGI anway for security reasons.

Also, I think writing applications with high performance requirements
somewhat contradicts deploying them on shared hosts. If you need
performance: Get a dedicated server and - if you want - even compile yer
own hand-optimized PHP.

And: Clever development circumvents the CGI bottleneck. Developing is
absolutely no problem under CGI since it's done by just a few users and
here the flexibility of multiple version kicks in: You can freely
choose! For the production version you simply use a good userland cache
that minimizes the work done by PHP.


AllOLLi

  Bree: "Do you know, I’ve finally convinced Rex to buy his first orchid."
George: "Make sure you study up. I hate people who own precious flowers
 and don’t know how to take proper care of them."
   Rex: "You know what I hate? Weeds. They just pop up out of nowhere
 and you have to work so hard to get rid of them."
George: "I find that with the right chemicals you can get rid of anything."
[DH 120, earns the price for most subtext per sentence.]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.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 1&1 (about 4 million domains) and
>Strato (about 2.5 million domains) both offer SSH and the possibility to
>chosse the PHP version on a per directory basis (via .htaccess). Strato
>offers PHP 3.x, 4.0.x, 4.3.x and 5.0.x in parallel. Perhaps you should
>think about "outsourcing" your hosting *g*.
>  
>

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 forms. During my own testing we gained lots of time by just running
it as a compiled Apache module instead of through CGI and in .htaccess.

On our hosting servers we solved it by running a compiled PHP 5 Apache
module on one server, and regular on the others. This way, if someone
requests PHP 5, they can be put on the server that supports it, and if
somebody wants to switch server from PHP 4 to PHP 5, it's an easy enough
task. Or, of course, we have the CGI option to fall back on.

Regards,
Torgny

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 1&1 (about 4 million domains) and
Strato (about 2.5 million domains) both offer SSH and the possibility to
chosse the PHP version on a per directory basis (via .htaccess). Strato
offers PHP 3.x, 4.0.x, 4.3.x and 5.0.x in parallel. Perhaps you should
think about "outsourcing" your hosting *g*.

For about 13 EUR per month you get PHP3, 4, 5 and even Ruby, SSH access,
MySQL access, 4 Domains, 600MB space and 30 GB free traffic.

AllOLLi

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 PHP6
> first??!?

 It is a really serious problem, PHP 5 have so much good things specially in
terms of XML that I just want to use them in my programmes but whenever I
decide to do programming in PHP 5, I stuck on the choice of a good server.
Most of the Hosting service providers are still providing hosting in PHP 4.
 I think PHP is going through a very tough phase. It has got the
capabilities but we can not use them, thats why we can SAY that PHP is good
programming language But we can not PROVE that in practically.
 Well the original posting was about hosting service provider, somewhere I
read about HOSTWAY. they are in PHP 5 hosting.
  Zareef Aahmed

Please can some more experienced people let me have their views on this?
> Many thanks,#
> Tom
>
> On 30/09/05, Joe Wollard <[EMAIL PROTECTED]> wrote:
> > The first two results both seem pretty good at a glance:
> >
> > http://www.google.com/search?hl=en&q=php5+ssh+hosting&btnG=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 like Zend.
> > >
> > > Thanks,
> > >
> > > Ed
> > >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
>
> --
> Tom Chubb
> [EMAIL PROTECTED]
> 07915 053312
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net


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 let me have their views on this?
Many thanks,#
Tom

On 30/09/05, Joe Wollard <[EMAIL PROTECTED]> wrote:
> The first two results both seem pretty good at a glance:
>
> http://www.google.com/search?hl=en&q=php5+ssh+hosting&btnG=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 like Zend.
> >
> > Thanks,
> >
> > Ed
> >
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


--
Tom Chubb
[EMAIL PROTECTED]
07915 053312

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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=en&q=php5+ssh+hosting&btnG=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 like Zend.


Thanks,

Ed



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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


[PHP] PHP 5, LDAP/Active Directory

2005-09-12 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  
"Operations error" and other such messages when trying to bind.


On my server I'm running:
Fedora Core 4
Apache 2
PHP 5 compiled with OpenLDAP

I must confess that I'm very new to LDAP so it is likely that my  
problem is inexperience, but it seems that this issue has been  
resolved by others so I'm trying to figure out what I'm doing wrong.


To shed more light on the topic, bug #30670 [ http://bugs.php.net/ 
bug.php?id=30670&edit=0 ] seems to fit my situation perfectly. As  
some of the posts on that bug suggest, I've tried using

ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION,3);
ldap_set_option($ldap, LDAP_OPT_REFERRALS,0);
between ldap_connect and ldap_bind but I still get the "Operations  
error" message. Everyone seems to be able to get this to work as long  
as they are running PHP4, but I have yet to see (or realize I've  
seen) a solution from someone using PHP5. I've also found where  
"blizzards at libero dot it" has posted "When querying a windows  
2000/2003 AD you MUST use only SASL and not TLS (non supported)."

- Is this true?

Another thing worth mentioning here is that the company I work for  
has allowed us to build our own intranet system for our Dept and  
offers little to no support for server specs and settings, but I will  
try to get any information to the list that might be helpful.


Thanks in advance for any advice or direction you can provide on this  
topic.

-Joe W

[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  
in a downloading process at 1.9 MB. The code in the PHP script has  
not changed and all parameters that I could find that are relevant to  
this problem are given below:


the minimal code needed for download:
// $file_to_read is the complete path of the file to download
header("Content-Type: application/pdf");
header( "Content-Disposition: inline; filename=\"$filename\"");
$len = filesize($file_to_read);
header("Content-Length: $len");
@readfile($file_to_read);

php.ini file for both php version 4 and 5 contain the following  
settings that may be relevant:


allow_url_fopen = On
max_execution_time = 300 ; Maximum execution time of each script,  
in seconds
max_input_time = 300; Maximum amount of time each script may  
spend parsing request data
memory_limit = 8M  ; Maximum amount of memory a script may  
consume (8MB)

post_max_size = 200M
upload_max_filesize = 200M


Some additional details:
All files less than 1.9 MB download fine
It is not a corrupted file, because all files larger than 1.9 MB fail  
after 1.9 MB

The connection is not timing out (download of 1.9 MB takes only ~15 sec)
Mac OS X 10.3.9 with Marc Liyanage's PHP 5.0.4
Fails for both Safari and Firefox
Fails regardless of "inline" or "attachment"
Fails regardless of "pdf" or "ppt" content-type
This PHP code ALWAYS works for Marc Liyanage's PHP 4.3.4 with the  
same settings, above



What am I doing wrong??? Any other parameter in php.ini I should have  
set? Any suggestions are much appreciated.


thanks,
Jordan

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



  1   2   3   >