[PHP-WIN] Re: "Headers already sent" error message

2002-09-10 Thread Steve Yates
> "R.S. Herhuth" <[EMAIL PROTECTED]> schreef in bericht > news:[EMAIL PROTECTED]... > > What is the cause of this error? what sort of things should I check > > for? I didn't see the code if you posted it, but make sure there are no blank lines before your script starts. Even one blank line

[PHP-WIN] Re: using apache on a network

2002-09-10 Thread Steve Yates
"M.B." <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > when I type in that he must Listen to then everytime I'm not > connected to to the network, my computer with the apache server can't run. When you are not connected, Windows will not load the card dri

[PHP-WIN] Re: all variables unset on w2k pro.

2002-09-10 Thread Steve Yates
> "Lasse Riis" <[EMAIL PROTECTED]> wrote in message... > > I've been trying to install php 4.2.2 on my w2k box. I suspect you are not using the "new" method to address variables. Use $_POST['varname'] instead of $varname, or use extract($HTTP_POST_VARS) at the top of your script to autocreat

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Michael Baron
Sorry, I should clarify, I am using a postgres database on slack for my local user data (I have not ported it w2000 machine), but the site talks to an AS400 for its main data that customers are looking for. As far as I can tell, the files that fail to include are random (all you have to do is

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Dash McElroy
Huh. 16 Gigs I presume. How did you set this machine up or did someone else set it up? I find it a bit odd that you can run the DB just fine on slack but can't access it well from php/slack. Oh well. Is there any pattern in the files' reluctance to be include()'d or is it just random? Do they fa

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Michael Baron
It is a single processor PII box with an IDE drive (16mb). The box is sitting on the other side of the country from me, so I do not know the exact specs. The database is still runninng on our Slack box (pg 7.1), a very beefy dual PIII IBM eServer. [EMAIL PROTECTED] wrote: > Hmm. What's the h

[PHP-WIN] Re: all variables unset on w2k pro.

2002-09-10 Thread Tracker1
"Lasse Riis" <[EMAIL PROTECTED]> wrote in message... > I've been trying to install php 4.2.2 on my w2k box. I'm using apache > 1.3.6 or is it 1.3.26? but the problem is the same with IIS. I can add > the cgi og the sapi module, but the problem is the same. I HAVE NO > VARIABLES > > What's wron

RE: [PHP-WIN] PHP/MySQL/APache on CD

2002-09-10 Thread Asendorf, John
Here's the original message that was posted on the MySQL-Win listserver: > -Original Message- > From: David Shields [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 16, 2002 5:31 AM > To: [EMAIL PROTECTED] > Subject: Demo CD > > > Hi all. I had a requirement to produce a demo of our ap

Re: [PHP-WIN] Help, Parse error caused by quotes andapostrophes infunction, How do I fix this?

2002-09-10 Thread Steve
Try this: exec("convert picture.jpg -font Arial-Bold -pointsize 20 -fill red -gravity southeast -draw \"text 10,10 'my text to add to picture'\" text-overlay.jpg"); That SHOULD work; if it doesn't, put \' isntead of ' as well. " is more friendly about escaping things than ' is :-) ' is fo

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread php
Hmm. What's the horsepower in the machine? It seems as if it should be enough. Is the database running on that machine or a separate one? What about the disk interface? I'm running out of suggestions... -Dash On Tue, 10 Sep 2002, Michael Baron wrote: > This server is running two of our lowest

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Michael Baron
This server is running two of our lowest volumne applications. The main one only sees about 150 logins a day and each one lasts about 20-30 minutes of page viewing(it is only released to our largest customers). The other one sees about 1500 hits a day. It is running on a little dell desktop wi

[PHP-WIN] Help, Parse error caused by quotes andapostrophes in function, How do I fix this?

2002-09-10 Thread Kurtis Harper
The following is the format needed in order to run the convert command from command line, but I have a problem in exec() format: convert picture.jpg -font Arial-Bold -pointsize 20 -fill red -gravity southeast -draw "text 10,10 'my text to add to picture'" text-overlay.jpg this causes probl

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread php
I figured there had to be a good reason. At least you're still using Apache :) Forgive me for suggesting you rip out Apache 1.3.x and replace it with Apache2. Just out of curiosity, how busy is this website? -Dash 186,282 miles per second: It isn't just a good idea, it's the law! On Tue, 10 S

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Michael Baron
[EMAIL PROTECTED] wrote: > Are you serious about using Apache 1.3.6? Yowser that's old!!! I'd update > to Apache 2 and PHP 4.2.3 right away! > > I've had no problems on my Win2k (workstation) using Apache 2.0.39 and PHP > 4.2.2. What are the specs on the hardware? > > And why'd you move from sl

php-windows Digest 10 Sep 2002 16:15:59 -0000 Issue 1332

2002-09-10 Thread php-windows-digest-help
php-windows Digest 10 Sep 2002 16:15:59 - Issue 1332 Topics (messages 15738 through 15747): Re: Intermittent Parse Error 15738 by: php.l1te.net 15739 by: Rasmus Lerdorf 15747 by: Michael Baron Re: . becomes _ when submitting page 15740 by: Kjell Hansen Re:

Re: [PHP-WIN] Intermittent Parse Error

2002-09-10 Thread Michael Baron
Rasmus Lerdorf wrote: >>Are you serious about using Apache 1.3.6? Yowser that's old!!! I'd update >>to Apache 2 and PHP 4.2.3 right away! > > > Apache 1.3.x is fine. I'd upgrade to a later version of Apache 1.3 > though. Apache 2 with PHP is not ready yet. > > -Rasmus > I apologize, I mean I

[PHP-WIN] Re: Calling DLL from PHP

2002-09-10 Thread Brian 'Bex' Huff
The 'extension' option tells PHP that the dll has been compiled to be a PHP-specific library... you should not do this if you are simply trying to run a dll as a COM object. To do that, you need to register the COM object as normal, and follow the instructions here (Italian): http://www.php.

[PHP-WIN] Re: "Headers already sent" error message

2002-09-10 Thread M.B.
But if you are using an if (/else) statement, then you can do the following to fix it. if($...){ } exit; else { } exit; So if you would have an header in one of the two place, you can fix it like this, but then you have to use the exit-command on both places!! "R.S. Herhuth" <[EMAIL PROTECTED]

[PHP-WIN] using apache on a network

2002-09-10 Thread M.B.
Hi, I have installed PHPTraid so, that went OK. But I have a network and I would like to see the pages on the computers that are connected to the servercomputer. (win ME) I tried a lot of things already and I have one problem: when I type in that he must Listen to then everytime I'm not connected

Re: [PHP-WIN] PHP/MySQL/APache on CD

2002-09-10 Thread M.B.
Whel and me too. "Luis Ferro" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Please, > > Post/repost on the mailling list (or send a copy to me) as i'm also > interested on how to assemble a solution like that... > > Thanx in advance, > Luis Ferro > > Asendo

Re: [PHP-WIN] Re: Calling DLL from PHP script

2002-09-10 Thread Luis Moreira
Hi 1) Question1 How do you run PHP, "Manual Start" or "Service"? If "Service", did you restart the service AFTER changing PHP.INI ? 2) Question 2 > > 'D:/Php/php-4.2.1-Win32/extensions/Visqwin.dll' - %1 is not a valid Windows NT application. in D:\Program Files\Apache Are you s

[PHP-WIN] Re: Calling DLL from PHP script

2002-09-10 Thread Pozzer Franco
> > Thanks for all for read my msg and sorry if my english it is not good. > Thanks also for time to spend to me. > > My env it is WinNt SP6.0 Apache 1.3.24 PHP 4.2.1. > > I must be use my dll. I send you a .zip file with dll. > > I have put the dll into the path directory of the extensions of the