[PHP-WIN] Re: IIS5, ISAPI PHP Slow load after timeout

2004-06-04 Thread Alan McDonald
Is there any way to build the isapi version of PHP such that there is no small stub dll (i.e. php4isapi.dll) and the main dll php4ts.dll - but instead to have one monolithic dll. This would force IIS to load and cache the dll permanently. Alan "Alan McDonald" <[EMAIL PROTECTED]>

[PHP-WIN] IIS5, ISAPI PHP Slow load after timeout

2004-06-03 Thread Alan McDonald
I have Win2000 Server, PHP4 installed with ISAPI module. Output_buffer is ON php4isapi is in the c:\php directory php4ts.dll is in the system32 directory. All works OK especially when traffic is high to the site. But when traffic is low and I assume a timeout expires, it appears to me that php4ts.d

[PHP-WIN] Re: easiest way to make a complicated PDF form...

2004-02-24 Thread Alan McDonald
YAPS? at http://www2.interakt.ro/products/free-php-scripts.html Alan "Leo Divinagracia" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > i know of 2 classes: > > http://ros.co.nz/pdf/ > > and > > http://fpdf.org/ > > but each one makes you make each element by hand. i mean i have one

[PHP-WIN] PHP execution speed in Win2K

2004-02-23 Thread Alan McDonald
I have my dev machine on Win2003 Server and my production on Win2K Server. Does anyone know of a setting on the win2K env which would cause it to perform very slowly? After letting the app ly dormant for only a few minutes and then requesting a new page, the app is very slow to respond, then it's f

Re: [PHP-WIN] Re: header-session problem

2004-02-16 Thread Alan McDonald
"Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > bullshit, I have apache and php setup as CGI... in most of my scripts > that require to store unsensitive user info while he's online I use > sessions. I never used PHPSESSID as well... > you don't think you do - but you'd be

Re: [PHP-WIN] Re: header-session problem

2004-02-16 Thread Alan McDonald
ions. I never used PHPSESSID as well... > > replying to orriginal poster: > if you would add session_start(); to your first page I bet things would > start working. That's related to the fact mentioned before that > cookies/sessions do not save/start if you use redirect. Starting them >

Re: [PHP-WIN] Re: header-session problem

2004-02-16 Thread Alan McDonald
r different pages? > > -Original Message- > From: Alan McDonald > To: [EMAIL PROTECTED] > Sent: 2004-02-16 10:57 > Subject: [PHP-WIN] Re: header-session problem > > I'm afraid that's not what the seesion is all about. > The session is a unique value. It is a

[PHP-WIN] Re: header-session problem

2004-02-16 Thread Alan McDonald
I'm afraid that's not what the seesion is all about. The session is a unique value. It is assigned to a cookie if specified in php.ini or is tagged along in all your URLs as a query string or $_GET and has the name PHPSESSID by default unless you change it. If you want to save something fro page 1

[PHP-WIN] setcookie & header(Location

2004-02-13 Thread Alan McDonald
On Win2003 it's fine but Win2k will not allow me to use setcookie and then a header("Location combination. I've tried the workaround of renaming php.exe to nph-php.exe for non-parsed header mode but it doesn;t work. What is the genrally used workaround for combining these command on the one page? t

[PHP-WIN] Re: Problem with mail()

2003-12-04 Thread Alan McDonald
Your SMTP server is denying relay - go the IIS manager, select SMTP and the properties and allow relay for localhost Alan "Gerardo Rojas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I am trying to send mail with the mail() function. My environment is Win2K proffessional. IIS5.0 and

Re: [PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
t some html codes in the contents... :) > > > > this one should be ok~~~ > > > > > > > $HTML_H = "welcomeM"; > > $HTML_B = "Geee~"; > > $HTML_T = ""; > > > > $content = $HTML_H . $HTML_B . $_POST["content"] .

Re: [PHP-WIN] Award Notice

2003-12-04 Thread Alan McDonald
toby - ignore it - it's spam - the famous nigerian letter! Alan "Toby z" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > what on earth is all this > > or have i missed somethin here > > :S :| :[ > > --- Greg Ossai <[EMAIL PROTECTED]> wrote: > > > > > STRITLY CONFIDENTIAL >

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
"content"]); > $from= addslaehses($_POST["from"]); > > mail($to, $subject, $content, $from); > > ?> > > well, now it's correct! > > > > > from Wollongong, NSW :) > > > > Alan McDonald wrote: > > > >&

[PHP-WIN] mail($To problem

2003-12-04 Thread Alan McDonald
Can someone tell me why I might be getting this problem? I construct an HTML email and send it,... it's fine,... it goes But the last > character after the /html tag gets truncated. I always get >"; I do not see the http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] equivalence to global.asa

2003-10-31 Thread Alan McDonald
In PHP, is there an eivalent construct as a "application start point" or "application wide variables" as well as the session constructs available? I am just comparing to how I used to do things with ASP and would like to find something similar. thanks Alan -- PHP Windows Mailing List (http://www.

[PHP-WIN] Re: @ symbol

2003-10-19 Thread Alan McDonald
thanks "Dvdmandt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > To display errors or not (if they show up that is)... The @ will disable > error-reporting... > > -- > // DvDmanDT > MSN: [EMAIL PROTECTED] > Mail: [EMAIL PROTECTED] > &qu

[PHP-WIN] @ symbol

2003-10-19 Thread Alan McDonald
I've searched but cannot find in the PHP manual what the difference between include and @include - can someone tell me? thanks alan -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] IDE's

2003-10-18 Thread Alan McDonald
It seems that the popular IDE's assume that you are running against a localhost webserver or they run in their own webserver. If you want to edit and run files via FTP client, then you are restricted to keeping a real browser window open. There are all sorts of differences between what the internal

[PHP-WIN] Includes Q

2003-10-18 Thread Alan McDonald
I now this is old and I've searched and found answers to this issue but justa as a reality check.. includes are only done via fully qualified filesystem paths or fully qualified URLs? this is one solution Is there no such thing as relative URL includes? thanks Alan -- PHP Windows Mailing Lis

Re: [PHP-WIN] Error calling php_info

2003-10-18 Thread Alan McDonald
phpinfo() no underscore Alan "Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Getting CHM version of PHP manual would be the right thing to do. It's > index/search is the best way to learn about functions you need. > > Good luck ;) > > Donny > > Yosvel Reyes wrote: > > >Hi Al