RE: [PHP-WIN] Since there's a lot of IIS users on the list

2001-02-06 Thread Thor M. Steindorsson
Well, the most obvious answer is: Don't use M$ FTP. It's not secure enough, it's not manageble enough and worst of all, it's M$! If you need to run ftp on a windoze box, try Serv-U. It's powerful, cheap, fast and easy... just like me :). -Original Message- From: Asendorf, John [mailto:

[PHP-WIN] Since there's a lot of IIS users on the list

2001-02-06 Thread Asendorf, John
I guess my FTP server wasn't as secure as I should have made it. It is now though... I think... anyway. I got hit by an anonymous login which added some (what seem to be) empty directories called _micra doesn't look like I got hit worse than that though. Has anyone else seen this? If you

RE: [PHP-WIN] Dear Friends & Future Millionaire:

2001-02-06 Thread Thor M. Steindorsson
Dear Moron. Please refrain from spamming Mailing Lists. Especially when what you're offering is a fellony. Check it out, the guy who started this served 7 years in federal prison for fraud. I don't think you'd want to make the same mistake. -Original Message- From: Hi Tech Services [mail

[PHP-WIN] Dear Friends & Future Millionaire:

2001-02-06 Thread Hi Tech Services
AS SEEN ON NATIONAL TV: Making over half million dollars every 4 to 5 months from your home for an investment of only $25 U.S. Dollars expense one time THANK'S TO THE COMPUTER AGE AND THE INTERNET ! == BE A MILLIONAIRE LIKE OTHERS WITHIN A YEAR

[PHP-WIN] decryption function?

2001-02-06 Thread Doug Brewer
I am working on windows, and want to encrypt cookie information. However, all I can find is MD5() and crypt(), neither of which have a decryption counterpart. Mcrypt would work, but doesn't seem to be available on win(?). I just need to be able to get the info back out. Any suggestions? Doug Br

[PHP-WIN] Server Push with IE?

2001-02-06 Thread James Duncan
Is it possible to do a server push with IE, rather than set the browser to refresh after a certain number of seconds? f possible can someone provide me with some example PHP code to show this working, etc. Thanks James -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP-WIN] Sessions and Objects

2001-02-06 Thread Conover, Ryan
If I save an object as a session var. will I still have access to its methods. Ryan -- PHP Windows 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-WIN] Converting apostrophes for insertion into Oracle

2001-02-06 Thread Asendorf, John
It looks like the sybase magic quotes option is my salvation. It turns all POST and GET variable exchanges on the fly from '' to ' and vice versa... Thanks for all of the great suggestions everyone. John - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://

RE: [PHP-WIN] Help!!

2001-02-06 Thread Asendorf, John
I haven't been able to get COM to work since 4.0.2... Anyone else having problems with it? - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 The benefit to the government o

RE: [PHP-WIN] Changing PHP.INI Options on the fly ...

2001-02-06 Thread Andreas Lange
> I hope all this makes sense. more than i can say ;) thanx a lot ... > Saludos, > Pablo CodeDuck -- PHP Windows 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

php-windows Digest 6 Feb 2001 17:05:46 -0000 Issue 431

2001-02-06 Thread php-windows-digest-help
php-windows Digest 6 Feb 2001 17:05:46 - Issue 431 Topics (messages 5405 through 5418): Converting apostrophes for insertion into Oracle 5405 by: Florian Clever 5411 by: Asendorf, John 5413 by: Woods Ron Contr SA-ALC/FMIS 5415 by: Pablo Vera Re: COM and PH

Re: [PHP-WIN] mssql empty (not null) varchar fields

2001-02-06 Thread Frank M. Kromann
The PHP extension for MSSQL shoud strip leading and trailing spaces, but I check the code and fix it if there is an error. - Frank >Hello, > >>From habbit and an unexplained hate to NULLs I do not use them in my >databases. >I use varchar fields with empty strings ('') instead. >However MSSQL v

Re: [PHP-WIN] Help!!

2001-02-06 Thread Yoann Chevalier
This is an example for Word !! http://www.phpbuilder.com/columns/alain20001003.php3?page=2 Yoann. - Original Message - From: ¦¶µØ¼ý <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 06, 2001 2:15 PM Subject: [PHP-WIN] Help!! Hi!It's nice to meet you.I have a problem o

Re: [PHP-WIN] Changing PHP.INI Options on the fly ...

2001-02-06 Thread Pablo Vera
CodeDuck: >From the PHP Manual, Section I.3 Configuration: "The configuration file The configuration file (called php3.ini in PHP 3.0, and simply php.ini as of PHP 4.0) is read when PHP starts up. For the server module versions of PHP, this happens only once when the web server is started. For

Re[4]: [PHP-WIN] Converting apostrophes for insertion into Or acle

2001-02-06 Thread Pablo Vera
John: Then, what if you do this: function fix_value($value) { if (!isset($value) || $value=="") { $value_sql="null" } else { $value_sql='"'.$value.'"'; } return $value_sql; } $SQL=" INSERT into cfull2.tbl_dl_customers (CUSTID_NUM, SHORT_NAME, FIELD3, ...) VALUES(fix_value($M

[PHP-WIN] ODBC-Links resource

2001-02-06 Thread samsom, debra
After upgrading to PHP4.0.4-win-20001210 I am now getting the following errors on my odbc_close statement: Warning: Supplied argument is not a valid ODBC_Link resource in (path of .php file). What am I doing wrong, or what am I missing. $conn = odbc_connect("PO_Hist", "userid", "password");

RE: Re[2]: [PHP-WIN] Converting apostrophes for insertion into Or acle

2001-02-06 Thread Woods Ron Contr SA-ALC/FMIS
I had the exact same problem recently with one of my forms. The only way I could resolve it was to convert all of the ' characters to a double character combo like ~` using $instring=eregi_replace("'", "~`", $instring) before the db insert/update and reversing it on the db selects. Ron Woods/GAI

[PHP-WIN] Help!!

2001-02-06 Thread 朱華璋
Hi!It's nice to meet you.I have a problem of php's com for windows. Can you use an example( sourse codes) to teach me how to write a php's program of com to connect and use word & frontpage. Thank you very much!!

RE: Re[2]: [PHP-WIN] Converting apostrophes for insertion into Oracle

2001-02-06 Thread Asendorf, John
The only problem with that is that I truncated the actual SQL statement which has about 15 variables it is updating... the combinations are dizzying... - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking Cou

[PHP-WIN] mssql empty (not null) varchar fields

2001-02-06 Thread John Chronakis
Hello, >From habbit and an unexplained hate to NULLs I do not use them in my databases. I use varchar fields with empty strings ('') instead. However MSSQL via the php4 module, returns these values as a single space character, and it forces me to trim all the returned varchar fields, before using

[PHP-WIN] Changing PHP.INI Options on the fly ...

2001-02-06 Thread Andreas Lange
hi, has anyone a quick-documentation on how to modify php.ini options via Apaches .htaccess. I know, that this is possible (i read it somewhere, but can't remember where). Things i need to changein PHP4 Session Management: - use no cookies. - name of the session. - directory for storing the sess

[PHP-WIN] 20 Million Fresh E-mail Addresses

2001-02-06 Thread Luke
TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS MESSAGE AND PUT "REMOVE" IN THE SUBJECT. 20 MILLION E-MAIL ADDRESSES FOR ONLY $249 **Over Night International Shipping Included** Many Call This "The "Perfect E-Mail List" Over 20-Million Of The Best E-Mail Addresses Av

RE: [PHP-WIN] include woes

2001-02-06 Thread Mangiola Nunzio Datavia
I'd say got for Apache. If not that, then download the latest IIS4 from the internet. I tried to run PHP4 on IIS3 and I battled for a week to get it going. Once I installed IIS4 it ran like a dream. > -- > From: Matt Williams[SMTP:[EMAIL PROTECTED]] > Sent: Friday, Februar

Re: [PHP-WIN] COM and PHP

2001-02-06 Thread Yoann Chevalier
Look at this example : http://www.phpbuilder.com/columns/alain20001003.php3?page=3 I think you forgot to activate the workbook, then to select the sheet and then to activate the sheet before writing into the cell ! Yoann. - Original Message - From: Conover, Ryan <[EMAIL PROTECTED]> To: