okay... im a software engineer...
recently im doing a website for a service providing company
which they will installed (already in their client's pc) a software...
then now in my website.. will provide updating patches for user to update their software (or add some files in specific folder)...
but that patches is in exe form.. just like normal installation file..
The confirmation form is OK to provide to the client..
which mean I'm NOT those want installing software in Transparetly/Invisible...
(as i search around forum.. alot ppl are looking for this)..
My purpose is actually want the clients Open the EXE file directly instead of Download+Open..
I've search around some ActiveX forum.. which alot people saying that PHP is unable to do that ? (I'm not sure about this)
So.. right now.. who can give some opinion or codes that actually can doing this ?
Running EXE like installing software on Web (PHP)
Moderator: General Moderators
- aaronhall
- DevNet Resident
- Posts: 1040
- Joined: Tue Aug 13, 2002 5:10 pm
- Location: Back in Phoenix, missing the microbrews
- Contact:
Doesn't sound like PHP will do the job. PHP only sends the data and information about the data to the browser -- the browser handles the rest. I doubt that you'll find a browser that will run an executable without the users permission. Except maybe IE -- you're best bet is an ActiveX control (would work in IE only, though).
Re: Running EXE like installing software on Web (PHP)
PHP can do exactly the same as any other server side language.xfuture wrote:I've search around some ActiveX forum.. which alot people saying that PHP is unable to do that ? (I'm not sure about this)
What's wrong with having the "Open or Save As.." dialogue? Just tell the users to click "Open" .. make the link to the .exe something like "Click here to update (select "open from current location" when prompted)".
Re: Running EXE like installing software on Web (PHP)
Erm.. because most of our client is Female..onion2k wrote: PHP can do exactly the same as any other server side language.
What's wrong with having the "Open or Save As.." dialogue? Just tell the users to click "Open" .. make the link to the .exe something like "Click here to update (select "open from current location" when prompted)".
(Im sorry to say that part of the females is really lack of computer knowledge.. and some of them might mess up with those files!)
which we mean to minimize the problem...
Would you like to advise me how PHP doing that ?
- aaronhall
- DevNet Resident
- Posts: 1040
- Joined: Tue Aug 13, 2002 5:10 pm
- Location: Back in Phoenix, missing the microbrews
- Contact:
Re: Running EXE like installing software on Web (PHP)
PHP cannot.xfuture wrote:Would you like to advise me how PHP doing that ?