[PHP] Problem with fopen()

2002-04-30 Thread Ben Turner
I am trying to complete an email application which will send messages to lists. Problem is, I am trying to write the messages out so that they will be available to a server application which actually sends the messages and does all the dirty work but I am getting the error that I cannot create

Re: [PHP] db driven site on IIS

2002-03-27 Thread Ben Turner
In my experiances ASP didn't handle this task well. I would suggest looking at www.microsoft.com to see how they accomplish what you are attempting. It isn't as pretty as Apache handles it but their's works. They accomplish it by sending the files via querystring and then parsing out the

[PHP] Required problem....

2002-03-05 Thread Ben Turner
I am just setting up a server that I am leasing through Rackshack.net. I am having some difficulties just trying to get myphpadmin running. Here is the error I am receiving... anyone know anything about this?? It isnt terribly descriptive and I have no idea why it isnt working. The path is

Re: [PHP] Required problem....

2002-03-05 Thread Ben Turner
I have got access from admin (the apache user) to those files as well as the directory. Nothing seems to be working. - Original Message - From: Martin Towell [EMAIL PROTECTED] To: 'Ben Turner' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, March 05, 2002 5:34 PM Subject: RE: [PHP

[PHP] CheckBoxes....

2002-03-02 Thread Ben Turner
Don't checkboxes, if you name them all the same name, produce a comma delimited string in php of the values selected??? such as for 15 checkboxes with numeric values would produce a string such as ,,,1314,,,18 when the form was submited?? This is the way it was handled in ASP...

Re: [PHP] CheckBoxes....

2002-03-02 Thread Ben Turner
, isset($a) would return 1 and isset($b) would return 0. Hope that helps. Jeff At 10:07 PM 3/2/2002 -0700, Ben Turner wrote: Don't checkboxes, if you name them all the same name, produce a comma delimited string in php of the values selected??? such as for 15 checkboxes with numeric values

[PHP] anyone else been having this problem???

2002-03-01 Thread Ben Turner
I just developed a new site and some of the users that I have go to visit the site are prompted (under IE only) to download a language pack. Not sure why and to top all of that, the language pack it prompts them to download is blank Meaning the prompt doesnt say what language pack. So

[PHP] changing the http status from file not found to....

2002-02-26 Thread Ben Turner
I have a php site that I am working on and I am using a 404 page to display db contents. It works great in a web browser but it is still returning HTTP_STATUS_NOT_FOUND to a crawler when it crawls the site. Does anyone know if this can be changed from within the php to trick the crawler into

Re: [PHP] changing the http status from file not found to....

2002-02-26 Thread Ben Turner
I guess if anyone knows of a place, is there a source on the web that details the headers sent to the page for valid pages??? I checked php.net and nothing was there on the subject - Original Message - From: Ben Turner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 26

Re: [PHP] changing the http status from file not found to....

2002-02-26 Thread Ben Turner
to accomplish this. At this point it is looking like I will be creating simple php pages including the 404 script to pull the page from the database. This is going to be very messy as a page must be created for every entry into the database... Thanks! Ben - Original Message - From: Ben Turner

Re: [PHP] changing the http status from file not found to....

2002-02-26 Thread Ben Turner
in case anyone is wondering... I fixed the problem (it appears) by using header(HTTP/1.0 200 OK); in case anyone else runs across this problem. Just setting header(Status: 200 OK); wasnt enough it appears... - Original Message - From: Ben Turner [EMAIL PROTECTED] To: [EMAIL PROTECTED

[PHP] Newbie question...

2002-02-22 Thread Ben Turner
This may be a bit off topic but I am trying to install the pdflib package for Linux so I can make pdfs through php and I was wondering if anyone might know the command to download a file via CRT from an http source. I apologize to the OT but I cant seem to get much of anything to work for me.

Re: [PHP] What is the different between Apache and IIS?

2002-02-19 Thread Ben Turner
Well im relativly new to the apache environment but I have gotten a huge grasp on it through my use of ASP and IIS. Sure there are some stark differences but I can tell you that I can already duplicate my rather advanced sometimes ASP applications into php. In the short time I have had it

Re: [PHP] What is the different between Apache and IIS?

2002-02-19 Thread Ben Turner
Not mention budget friendly-ness - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 20, 2002 12:26 AM Subject: Re: [PHP] What is the different between Apache and IIS? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and

[PHP] got some advice.... need to know the lingo

2002-02-10 Thread Ben Turner
Hello everyone, I am working on converting a site from ASP to PHP and I was wondering if their where any built in functions to perform screen scraping. In ASP, the XML DOM is most commonly used to accomplish this. I am thinking that there should be something to get the task done in PHP but I

Re: [PHP] Re: got some advice.... need to know the lingo

2002-02-10 Thread Ben Turner
] To: [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 4:53 PM Subject: [PHP] Re: got some advice need to know the lingo Ben Turner wrote: Hello everyone, I am working on converting a site from ASP to PHP and I was wondering if their where any built in functions to perform screen

[PHP] Redirect problem.... UGH!!

2002-01-30 Thread Ben Turner
I am trying to put together a very simple redirect from php. all it is supposed to do is pull down the $p var and ship the user off to the destination. Ready for some code? ? #Header(Location: index.html); ? When I try this on a Linux server using PHP... everything works fine. The minute I

[PHP] Got a problem I cant figure out

2002-01-27 Thread Ben Turner
Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line 47 I am receiving this error on my page but the problem is that line 47 is the ? and last line of the page. Is their something Im missing here?? Thanks, Ben

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-24 Thread Ben Turner
I am actually an ASP developer who is trying to take my current company in the LAMP direction. I have been working on ASP/Win32/Just about everything else Microsoft can throw out, and now I am really realizing the benifits of a LAMP environment. I think during the gold rush, a lot of small

Re: [PHP] quit me off the php list

2002-01-15 Thread Ben Turner
/Quit Thyago Consort :D Hey I tried! - Original Message - From: Thyago Consort [EMAIL PROTECTED] To: Adam Baratz [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:00 PM Subject: [PHP] quit me off the php list -Original Message- From: Adam

[PHP] Maybe OT but I was wondering....

2002-01-08 Thread Ben Turner
I am trying to set up a completely dynamic site using php and a mysql backend. I am trying to find somewhere that I can identify a custom 404 error page and then pull the page based on the document directory. Problem is, is this even possible in PHP? I haven't found too much related to custom