[PHP-WIN] files

2003-02-26 Thread Aidal
Hi NG. I have a problem with an php application handling files. The problem is when my app. opens an excisting file with text in it for editing. How do I make sure that the edited (new) text doesn't just get written like a layer over the old text, so if the new text is shorter than the old one, t

[PHP-WIN] Re: Is ASP.NET faster than php?

2003-02-26 Thread Steve Yates
"Charles P. Killmer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >Does anyone have any thoughts about PHP vs ASP.NET? See http://www.php.net/manual/en/faq.languages.php , including the comments. - Steve Yates - When all else is lost, the future still remains. ~ Taglines by Tagl

php-windows Digest 26 Feb 2003 21:36:28 -0000 Issue 1607

2003-02-26 Thread php-windows-digest-help
php-windows Digest 26 Feb 2003 21:36:28 - Issue 1607 Topics (messages 18708 through 18721): Re: newbie BASIC sessions... 18708 by: Robert Nürnberg Re: Disable FTP in Win32 Binary ? 18709 by: speedfreak.chello.be Re: Subject: Disable FTP in Win32 Binary ? 18710 by: N

[PHP-WIN] not serving css styles?, css not showing up on local dev box

2003-02-26 Thread Beach, Jim
Win98, Apache 1.3.20, PHP 4.06. I realize this isn't an Apache forum but you folks are a very helpful bunch and PHP and Apache are like peas in a pod so I though I'd give it a try here. My CSS styles don't display on my dev box but they show up just fine from my web host. In other words, the a

[PHP-WIN] Send mail

2003-02-26 Thread Orlando Castañeda
I am trying to send an e-mail like this: There are no errors, but the e-mail is never sent ! I apreciate any help ! Tito [EMAIL PROTECTED] [EMAIL PROTECTED] ICQ # 32019090

Re: [PHP-WIN] newbie: installing php_gd

2003-02-26 Thread Anthony Ritter
Rich, On MS Win 98 / Apache / PHP 4 If somebody out there using Win can check my php.ini file and advise me what I'm doing wrong. I have uncommented: .. extension=php_gd.dll .. and have included: .. extension_dir = C:\php4\extensions ...

[PHP-WIN] Installing php_domxml.dll extension

2003-02-26 Thread Richard Shearn
I am trying to install php_domxml.dll and get the error: Unknown(): Unable to load dynamic library 'c:\php\extensions\php_domxml.dll' - The specified procedure could not be found. libxml2.dll and iconv.dll are in my c:\windows\system32 directory I have edited php.ini setting extension_dir = "c

RE: [PHP-WIN] newbie: installing php_gd

2003-02-26 Thread Rich Gray
Does it work if you have it like this... extension_dir = C:/php4/extensions Rich > -Original Message- > From: Anthony Ritter [mailto:[EMAIL PROTECTED] > Sent: 26 February 2003 16:58 > To: [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] newbie: installing php_gd > > > In my php.ini file, thi

Re: [PHP-WIN] newbie: installing php_gd

2003-02-26 Thread Anthony Ritter
In my php.ini file, this is what it looks like: .. extension_dir = C:\php4\extensions\; directory in which the loadable extensions (modules) reside extension=php_gd.dll ... Thank you, TR -- PHP Windows Mailing List (http://www.php.net/) To

RE: [PHP-WIN] newbie: installing php_gd

2003-02-26 Thread Rich Gray
Tony Is the php.ini directive extensions_dir set correctly? Rich > Using MS Win 98 / PHP 4 and Apache. > > I tried running the following script but got an undefined call to: > > ImageCreate() > > The following copy is located in my php.ini file...one of which is: > > .. > ;extens

[PHP-WIN] Is ASP.NET faster than php?

2003-02-26 Thread Charles P. Killmer
I love php but I must choose the fastest scripting language. Without going to extremes like c++ compiled. At least not until I get a library that provides most of the things that make php convenient. Does anyone have any thoughts about PHP vs ASP.NET? Charles Killmer

[PHP-WIN] newbie: installing php_gd

2003-02-26 Thread Anthony Ritter
Using MS Win 98 / PHP 4 and Apache. I tried running the following script but got an undefined call to: ImageCreate() The following copy is located in my php.ini file...one of which is: .. ;extension=php_gd.dll .. I tried uncommenting this line to no avail. What is

Re: [PHP-WIN] Re: Subject: Disable FTP in Win32 Binary ?

2003-02-26 Thread Per Lundberg
On Wed, 2003-02-26 at 10:48, Neil Smith wrote: > Easy enough to do (my ISP does this) : Look up disable_functions in > http://www.php.net/manual/en/features.safe-mode.php > > You need to set in your php.ini file a list of disallowed functions (just > add the function_name for FTP functions to the

Re: [PHP-WIN] Duplicate entry removal

2003-02-26 Thread Michael Power
Better yet define the required dataset with SQL to speed the whole process up: "SELECT YEAR(your_date) FROM table_name GROUP BY your_date"; Cheers Mike > "Matt Hillebrand" > array_unique() > > |-Original Message- > |From: Per Christian [mailto:[EMAIL PROTECTED] > | > |Hi > | > |I'm build

[PHP-WIN] Re: Subject: Disable FTP in Win32 Binary ?

2003-02-26 Thread Neil Smith
Easy enough to do (my ISP does this) : Look up disable_functions in http://www.php.net/manual/en/features.safe-mode.php You need to set in your php.ini file a list of disallowed functions (just add the function_name for FTP functions to the list). You can of course do this better by per-site conf

[PHP-WIN] Re: Disable FTP in Win32 Binary ?

2003-02-26 Thread speedfreak
Greg wrote: > Hi! > > Can someone provide guidance on how to disable FTP in the Win32 Binary > version? > > (The IT Security team at my workplace does not permit FTP. We may not be > able to use PHP unless FTP is disabled, but haven't figured out how to do it > on the Win32 binary version.) > > A