Re: [PHP-DB] Re: PHP/MySQL not available remotely...

2002-12-04 Thread Jeffrey_N_Dyke

do you have the persmissions set either for [EMAIL PROTECTED](which
would only work from remotehost.com) or username@'%' (which would work for
that username from any host)


hth
jeff


   
 
Chase
 
chase@ck2000.   To: [EMAIL PROTECTED]  
 
biz cc:   
 
 Subject: [PHP-DB] Re: PHP/MySQL not 
available remotely...  
12/04/2002 
 
10:58 AM   
 
   
 
   
 




Okay, it was suggested that I may not have my register_globals flagged to
on but I do.  I still can't seem to make any remote connect to the
server.
Again, there are no errors, it just flat don't work.

Chase


Chase [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I seem to have a bit of an issue with my PHP/MySQL settings...

 A basic PHP bit like ?php echo $REMOTE_ADDR; ? works great on my
 webserver.  However, with any form of DB access the page just hangs... I
 don't get an error, but I don't get results either.  I also have
 phpMyAdmin-2.3.3 running.  I can access that from the server directly,
but
 if I try to get to it via any other machine I get NO results.

 I am running IIS 5 with PHP4 and MySQL v3.23.53-max.

 Suggestions?





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





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




Re: [PHP-DB] Re: PHP/MySQL not available remotely...

2002-12-04 Thread David Smith
Are you able to connect to the MySQL server from the command line using
a non-php client?

--Dave

On Wed, 2002-12-04 at 09:04, [EMAIL PROTECTED] wrote:
 
 do you have the persmissions set either for [EMAIL PROTECTED](which
 would only work from remotehost.com) or username@'%' (which would work for
 that username from any host)
 
 
 hth
 jeff
 
 
  
   
 Chase  
   
 chase@ck2000.   To: [EMAIL PROTECTED]
   
 biz cc: 
   
  Subject: [PHP-DB] Re: PHP/MySQL not 
available remotely...  
 12/04/2002   
   
 10:58 AM 
   
  
   
  
   
 
 
 
 
 Okay, it was suggested that I may not have my register_globals flagged to
 on but I do.  I still can't seem to make any remote connect to the
 server.
 Again, there are no errors, it just flat don't work.
 
 Chase
 
 
 Chase [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  I seem to have a bit of an issue with my PHP/MySQL settings...
 
  A basic PHP bit like ?php echo $REMOTE_ADDR; ? works great on my
  webserver.  However, with any form of DB access the page just hangs... I
  don't get an error, but I don't get results either.  I also have
  phpMyAdmin-2.3.3 running.  I can access that from the server directly,
 but
  if I try to get to it via any other machine I get NO results.
 
  I am running IIS 5 with PHP4 and MySQL v3.23.53-max.
 
  Suggestions?
 
 
 
 
 
 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



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




Re: [PHP-DB] Re: PHP/MySQL not available remotely...

2002-12-04 Thread Jason Wong
On Thursday 05 December 2002 00:44, Chase wrote:
 Yes I am.

 I was just asked to create a simple web page that would display the
 visitors IP address using:

 ?php echo $REMOTE_ADDR; ?

So you're saying that the above works ...

 and when I call this up over the intranet or internet it works just fine.
 However, I was also asked to create a page that would just display the PHP
 Info screen and that will only show up on the server..  I can't get that
 page to show remotely.

... but ?php phpinfo(); ? doesn't work??

 Based on this, I think my error is in my setups for either PHP4 or IIS...

If phpinfo() doesn't work then I think you've got far bigger problems than 
setups to worry about ;-)

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *


/*
I knew one thing: as soon as anyone said you didn't need a gun, you'd better
take one along that worked.
-- Raymond Chandler
*/


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




Re: [PHP-DB] Re: PHP/MySQL not available remotely...

2002-12-04 Thread Chase
The phpinfo() call works great on the server itself, but I cannot get the
information to display to anyone that connects to the server.


Jason Wong [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 On Thursday 05 December 2002 00:44, Chase wrote:
  Yes I am.
 
  I was just asked to create a simple web page that would display the
  visitors IP address using:
 
  ?php echo $REMOTE_ADDR; ?

 So you're saying that the above works ...

  and when I call this up over the intranet or internet it works just
fine.
  However, I was also asked to create a page that would just display the
PHP
  Info screen and that will only show up on the server..  I can't get that
  page to show remotely.

 ... but ?php phpinfo(); ? doesn't work??

  Based on this, I think my error is in my setups for either PHP4 or
IIS...

 If phpinfo() doesn't work then I think you've got far bigger problems than
 setups to worry about ;-)

 --
 Jason Wong - Gremlins Associates - www.gremlins.biz
 Open Source Software Systems Integrators
 * Web Design  Hosting * Internet  Intranet Applications Development *


 /*
 I knew one thing: as soon as anyone said you didn't need a gun, you'd
better
 take one along that worked.
 -- Raymond Chandler
 */




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




RE: [PHP-DB] Re: PHP/MySQL not available remotely...

2002-12-04 Thread dufronte

-Original Message-
From: Jason Wong [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 04, 2002 11:48 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Re: PHP/MySQL not available remotely...

On Thursday 05 December 2002 00:44, Chase wrote:
 Yes I am.

 I was just asked to create a simple web page that would display the
 visitors IP address using:

 ?php echo $REMOTE_ADDR; ?

So you're saying that the above works ...

 and when I call this up over the intranet or internet it works just
fine.
 However, I was also asked to create a page that would just display the
PHP
 Info screen and that will only show up on the server..  I can't get
that
 page to show remotely.

... but ?php phpinfo(); ? doesn't work??

Oh my GOD.. this is a really big problem... why don't you try using
APACHE web server... in my experience... IIS alwas delivered so many
errors with PHP.




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