[PHP] ASP, ODBC, IIS 5, and PHP
I appear to be having a problem where when I run a PHP script that uses ODBC calls my ASP/ODBC driven pages stop functioning. When I run a PHP script that does not use ODBC there does not seem to be any problems with my ASP/ODBC pages. I was wondering if anyone out there has ever run in to a problem similar or if there are different issues running PHP ASP ODBC and IIS 5 on Win2k Advanced Server. Thanks Kevin Pratt -- 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] Something weird
Why not just make all your pages force a no cache or a refresh? Kevin - Original Message - From: "Inércia Sensorial" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 1:32 PM Subject: Re: [PHP] Something weird > Me too. I always put 'check for new versions' or 'don´t cache' or similar. > While I am aware that cached pages doesn't perform well with dinamic pages, > the browser developers are also aware that what the user want is to see the > page. > > If you ask any average user what is his preference 'Load faster or don't > cache?'... he will probaly answer 'load faster', IF he knows what the hell a > cached page is... > > -- > > > Julio Nobrega. > > A hora está chegando: > http://sourceforge.net/projects/toca > > "scott [gts]" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > maybe it's just me, but caches drive me nuts... > > > > i know... but IMO, i'll take a slight performance > > hit any day to make sure i get the most recent page... > > > > > -Original Message- > > > From: Inércia Sensorial [mailto:[EMAIL PROTECTED]] > > > Subject: Re: [PHP] Something weird > > > > > > > for some bizarre reason, almost every browser i've seen > > > > has the default option set to "cache everything and never > > > > look for updates" > > > > > >Connection speed. Cached pages load faster > > > > > > -- > 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]
Re: [PHP] Something weird
okie :) just thought it was funny that everybody is talking about something that can be changed . :) and it was also a little bit of a shot at everybody's rants... I completely agree that taking the small performance hit is much better than getting the old version of a site... and I can say this because I live in the country and only get 26.4k so I should really want to have a cache.. Have fun! Kevin - Original Message - From: "Inércia Sensorial" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 2:07 PM Subject: Re: [PHP] Something weird > Kevin, we were talking about cache in an user point of view... > > :-D > > > > -- > > > Julio Nobrega. > > A hora está chegando: > http://sourceforge.net/projects/toca > > "Kevin Pratt" <[EMAIL PROTECTED]> wrote in message > 009f01c10655$b3558e40$0300a8c0@ouelong">news:009f01c10655$b3558e40$0300a8c0@ouelong... > > > > -- > 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]
Re: [PHP] Something weird
dunno... I just make all my pages force a reload for everyone :) - Original Message - From: "Inércia Sensorial" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 2:29 PM Subject: Re: [PHP] Something weird > Me too. Once I changed browser and took me days to find out why some pages > weren´t changing :-) > > Does the header(); function returns some kind of true or false? Maybe we > could tell users to don´t cache to show all dynamic stuff. I heard somewhere > (not sure about this) that Refresh on meta and similar techniques doesn't > always work... (well, like everything! :)) > > -- > > > Julio Nobrega. > > A hora está chegando: > http://sourceforge.net/projects/toca > > "Kevin Pratt" <[EMAIL PROTECTED]> wrote in message > 00a901c10659$00c74580$0300a8c0@ouelong">news:00a901c10659$00c74580$0300a8c0@ouelong... > > okie :) just thought it was funny that everybody is talking about > something > > that can be changed . > > > > :) > > > > and it was also a little bit of a shot at everybody's rants... I > completely > > agree that taking the small performance hit is much better than getting > the > > old version of a site... and I can say this because I live in the country > > and only get 26.4k so I should really want to have a cache.. > > > > > > Have fun! > > Kevin > > > > -- > 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] PHP as a shell script
Can anyone direct me to a place where I can read up on how to use php as a shell scripting language? Thanks Kevin Ouelong Group www.ouelong.com -- 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] PHP as a shell script
Is there any special switches I have to pass to the compile of php to create the php binary? Kevin - Original Message - From: "Ben Bleything" <[EMAIL PROTECTED]> To: "'Kevin Pratt'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 11:03 AM Subject: RE: [PHP] PHP as a shell script > It's simple. Find your php binary (or build one if you don't have > one)... I think 'which php' will find it. > > Then, write a php file with '#!/path/to/php -q' at the top. Use any one > of the various execution methods to run your programs. Done! > > I've been doing this for quite a while. I find it easier than > 'traditional' shell scripting => > > More questions? Ask! > Ben > > -Original Message- > From: Kevin Pratt [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 09, 2001 10:02 AM > To: [EMAIL PROTECTED] > Subject: [PHP] PHP as a shell script > > Can anyone direct me to a place where I can read up on how to use php as > a > shell scripting language? > > > Thanks Kevin > Ouelong Group > www.ouelong.com > > > -- > 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]
Re: [PHP] PHP as a shell script
Yep all done thanks... Kevin - Original Message - From: "scott [gts]" <[EMAIL PROTECTED]> To: "php" <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 1:26 PM Subject: RE: [PHP] PHP as a shell script > dont use --with-apxs or --with-apache > > ./configure --my-options > make > make test > make install > > that should do it. > > > -Original Message- > > From: Tyler Longren [mailto:[EMAIL PROTECTED]] > > Sent: Monday, July 09, 2001 3:07 PM > > To: Kevin Pratt; [EMAIL PROTECTED] > > Subject: Re: [PHP] PHP as a shell script > > > > > > Just don't compile it with apache or some other web server. It should > > create the executable then. > > > > Tyler > > > > - Original Message - > > From: "Kevin Pratt" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Monday, July 09, 2001 12:01 PM > > Subject: [PHP] PHP as a shell script > > > > > > > Can anyone direct me to a place where I can read up on how to use php as a > > > shell scripting language? > > > > > > > > > Thanks Kevin > > > Ouelong Group > > > www.ouelong.com > > > > > > > > > -- > > > 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 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] Image manipulation
Does any one know if you can check the dimensions of a GIF file? Thanks Kevin -- 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]