php-windows Digest 25 Feb 2003 05:17:12 -0000 Issue 1604

Topics (messages 18687 through 18691):

Re: Unexplained CGI error
        18687 by: Michael Power
        18689 by: Anthony

Re: Subject: help! for my project...
        18688 by: Neil Smith

html2pdf on windows?
        18690 by: Anthony

programming help wanted
        18691 by: David OBrien

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
What is a CVS???

I'm having the same problem.  Everything works fine on a Win2K server with
no patches.  Run Windows update and apply all the patches then install PHP
and suddenly you start getting the CGI errors as described.

Please clarify what I/we need to install to fix this...

Cheers
Mike


> "Christoph Christ"
> This bug has been fixed - take the latest CVS snapshot where a bugfix for
> that problem has been applied.
>
> The problem is, that php.exe crashes under IIS (seems to be a not properly
> handled buffer overflow situation).
>
> Kind regards
> Christoph Christ
>
> > I had a very nice little application I was working on. I selected
options
> > from an html page and then after selection I called a PHP script.  It
> > worked
> > just fine, but now when I use the same code unchanged, it gives me the
> > error
> > you see below and nothing more. This has happened to me twice before.
What
> > gives?  There must be something I'm doing, but I can't figure what it
is.
> > I
> > can't be the only person who's gotten this.  Please help!
> >
> > Thanks,
> >
> > CGI Error
> > The specified CGI application misbehaved by not returning a complete set
> > of
> > HTTP headers. The headers it did return are:
> >



--- End Message ---
--- Begin Message ---
You'll get that error under IIS if you try to view a file that doesn't
exist.  IIS tries to send the file to the PHP engine, but since there is no
file, you get the message you posted.  Check your form and make sure that
the action is set yo the correct page and that it is resolved correctly.
You'll most likely find your problem there.

- Anthony


"Mary Sweeney" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I had a very nice little application I was working on. I selected options
> from an html page and then after selection I called a PHP script.  It
worked
> just fine, but now when I use the same code unchanged, it gives me the
error
> you see below and nothing more. This has happened to me twice before. What
> gives?  There must be something I'm doing, but I can't figure what it is.
I
> can't be the only person who's gotten this.  Please help!
>
> Thanks,
>
> CGI Error
> The specified CGI application misbehaved by not returning a complete set
of
> HTTP headers. The headers it did return are:
>
>



--- End Message ---
--- Begin Message --- Hi Jeffry - first thing I would do in a real world situation is to take advantage of the power of MySQL features. Most imortantly, to search a site, I would ask you to look up in the MySQL manual :

FULLTEXT INDEX

feature in MySQL. This indexes and sorts your specified fields as you insert them, so you don't have to. You then have an index of words in the DB. Fulltext also ranks words with a threshold, so that if for example a lot of text contains the word 'the', it is given a low specificity and not returned in searches.

Hope that helps
Regards,
Neil Smith.

At 13:36 24/02/2003 +0000, you wrote:
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 24 Feb 2003 16:59:12 +0800
From: "Jeffrey S. Payao" <[EMAIL PROTECTED]>
MIME-Version: 1.0
To:  [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Subject: help! for my project...

hi guys! can anyone please help me in my project. please. im currently creating my thesis, a site with a search engine. i googled and found a lot for my projects. now my problem is i cant display my article links. :( im using php+apache+mysql on my w2k. here are the following code i took from http://www.devarticles.com/



create table searchWords
 (
  wordId int auto_increment,
  word varchar(50),
  articleIds varchar(255),
  primary key(wordId),
  unique id(wordId)
);

insert into articles values(0, 'MySQL is a great database', 'If you\'re after a top quality database, then you should consider MySQL. MySQL is packed with features, and can be installed on both Linux and Windows servers.');

insert into searchWords values(0, 'MySQL', '1');

insert into searchWords values(0, 'install', '1');


--- End Message ---
--- Begin Message ---
has anyone gotten html2pdf to work on NT?  I'm putting together a Linux box
right now to use specifically for this purpose but since part of my app is
NT only it would be awesome if I could get it to run on my NT box.  IIS5 and
Win2K if that makes any difference.

If you've done this, please help me out :)

- Anthony




--- End Message ---
--- Begin Message --- I am currently writing a access db program to php www site conversion. It is a maintenance work
order program for a construction business. I'm having a hard time doing what I want and was wondering
if the fresh pair of eyes approach would help me.


The person i'm doing this for (family) gets a fuel report from the drivers of the vehicles
data on it contains:
the date, odometer reading, how much fuel was put in, the price, and where the vehicle is at (job location)
I have all this historical data in a table


I'm doing the standard preventive maintenance type thing
like change the oil every 3000 miles, check the fluid levels, change tranny fluid etc...
I have a table which has the pmactionid, type of equipment it applies to "AUT" for auto "TRK" for truck etc.. , the frequency it should be done, and a few more fields


What I have done so far is @ http://www.ontheislands.com Take a look and see if you can figure out what's going on.
Most of the action stuff is done and some of the fuel log stuff and the workorder stuff I'm messing with now


What I need it to do (I have some of this done already) is when I click on "new work order" it will check the fuellog table find the last entry, check the odometer reading, and then pull the maintenance items that are due from the pmactions table onto a blank workorder. I am just having a heck of a time with how I can make this work like I want it to
If the completed workorder comes back in and the mechanic didn't do one of the items, the incomplete ones need to be flagged so they will show up on the workorder the next time it is generated also it something non PM wise needs to be done to the equipment (like replace windshield) the user can add it to the next workorder to be generated.


If someone has done something similar or thinks they can help i would appreciate it.
There may be some money in it for you but I'm doing it for cheap since it is family.


Thanks in advance
-Dave



--- End Message ---

Reply via email to