[PHP] development to ISP migration headache

2001-08-09 Thread duirfire

Hi folks,

I have a site on my laptop, works fine.

When I tar it up and move to my ISP for a production environment, certain things stop 
working.

The two environments are pretty much the same, except my laptop is php_mod and the ISP 
is a cgi.

Basic pages still work fine, but I'm using URL parsing to get variables and build 
pages on the fly.
When I try to call one of these pages, e.g.

http://hostname/page.php/foo/bar

I get an Internal Server Error (bla bla bla internal error or misconfurguration bla 
bla bla)

Any idea how to troubleshoot what is going on here?

tia,
suri

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] development to ISP migration headache

2001-08-09 Thread duirfire

thanks, but it's not a csoft issue - it's webaxxs

i guess i'm trying to figure out if this could be a php configuration issue, and how i 
would track it down...

cheers,
s


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] development to ISP migration headache

2001-08-09 Thread duirfire

Okay...some valid info!

the error logs are showing:

[Thu Aug  9 15:23:20 2001] [error] [client my_ip_address] Premature end of
script headers: /www/docued/cgi-bin/php

any ideas, oh gurus?

cheers,
a


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 09, 2001 4:09 PM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP] development to ISP migration headache


 thanks, but it's not a csoft issue - it's webaxxs

 i guess i'm trying to figure out if this could be a php
 configuration issue, and how i would track it down...

 cheers,
 s


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] sessions without cookies?

2001-03-27 Thread duirfire

Hi, can someone point me toward a tutorial that shows how to register info
(e.g. username, login status, and user preferences) and do this in a session
without using cookies... is this even possible?

thanks!
duirfire


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] drop down used to redirect?

2001-03-26 Thread duirfire

hmmm... thanks, but I want to use a directory.
I've tried "option value="dir1/dir2/page.html"Page/option

but the "/" url that get's passed is:

nav.php?loc=dir1%2Fdir2%2Fpage.html

can I escape the quotes somehow?

thanks!
duirfire

 -Original Message-
 From: Data Driven Design [mailto:[EMAIL PROTECTED]]
 Sent: Monday, March 26, 2001 2:11 AM
 To: duirfire; PHP User Group
 Subject: Re: [PHP] drop down used to redirect?


 You can do it with javascript like this.

 script language="javascript"
 function go(selectBox) {
 var where = selectBox.options[selectBox.selectedIndex].value;
 if (where != "") window.location = where;
 }
 /script

 form
 select onchange="go(this)"
 option value="page.html"Page/option
 ...

 Or you can use PHP like this.

 form action="nav.php" method="post"
 select name="loc"
 option value="page.html"page/option
 ...

 --- nav.php ---
 ?php
 header("Location:$loc");
 ?

 - Original Message -
 From: duirfire [EMAIL PROTECTED]
 To: PHP User Group [EMAIL PROTECTED]
 Sent: Sunday, March 25, 2001 2:39 PM
 Subject: [PHP] drop down used to redirect?


 
  Hi, can anyone point me towards an example of how to use a drop down
 select
  as a navigation jump, maybe by sending a redirect header?
 
  thanks!
  duirfire
 
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] drop down used to redirect?

2001-03-25 Thread duirfire


Hi, can anyone point me towards an example of how to use a drop down select
as a navigation jump, maybe by sending a redirect header?

thanks!
duirfire




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]