[PHP-WIN] The COM problem when converting from ASP to PHP

2004-04-23 Thread Steven Kidd
Hi, <> When I converting lines of ASP code: <% dim keysobjs dim privkey dim pubkey dim seed Set keysobj= CreateObject("wmrmobjs.WMRMKeys") keysobj.GenerateSigningKeys privkey, pubkey seed = keysobj.GenerateSeed() Response.Write privkey Response.Write "" Response.Write pubkey Response.Write "" Re

[PHP-WIN] RE: [PHP-NIX] File upload

2004-04-23 Thread Jattie van der Linde
There is some server level setting that alos limits file size uploads. Can not recall the detail of it thou! -Original Message- From: Ragnar [mailto:[EMAIL PROTECTED] Sent: 23 April 2004 06:01 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP-NIX] File upload Hi guys/girls, I am h

[PHP-WIN] Re: COM on remote machine

2004-04-23 Thread M.Staiger
> Meanwhile I found an indication that the IP-Address of the remote machine > has to be stated when instanciating the com object .. but HOW? Which format? > Is there an example existing? .. my monologue is to be continued ... Here's an example of how to use real dcom : $E = new COM("Excel.Applica

Re: [PHP-WIN] [PHP-NIX] File upload

2004-04-23 Thread Viraj Kalinga Abayarathna
can you send me the fread() part of your script? and what is the OS you are tring this? any how i like to share my coding which I did few weeksback for one of my Windows buddy. Vk. Ragnar wrote: > Hi Vk, > > I tried this beforehand, but to no avail. The documentation > also states that this

Re: [PHP-WIN] [PHP-NIX] File upload

2004-04-23 Thread Ragnar
Hi Vk, I tried this beforehand, but to no avail. The documentation also states that this form field entry does not overwrite the max_filesize_setting in php.ini, when uploading. so even if I set the hidden form field to 30MB and the .ini setting is 8MB the file will be rejected if it's over 8MB.