This is a discussion on trusted website activex omzeilen.php vbscript within the PHP Language forums, part of the PHP Programming Forums category; Hello, Voor een website willen "trusted website" omzeilen. Aan de hand van php en vbscript is er een ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
Voor een website willen "trusted website" omzeilen. Aan de hand van php en vbscript is er een script die microsoft word documenten leest en die in de database "mysql" opslaat. Om dit te laten gebeuren, moeten internet gebruikers ons website toevoegen bij "vertrouwde website". Hoe kunnen we dit omzeilen. Vriendelijke dank voor je hulp. |
|
|||
|
tthallah <tthallah@hotmail.com> wrote:
> Voor een website willen "trusted website" omzeilen. Aan de hand van > php en vbscript is er een script die microsoft word documenten leest > en die in de database "mysql" opslaat. Om dit te laten gebeuren, > moeten internet gebruikers ons website toevoegen bij "vertrouwde > website". Hoe kunnen we dit omzeilen. This is a clientside question, using clientside vbscript is restricted to the IE browser, so ask the question in an approriate group. I surely hope it isn't possible to circumvent the activex restrictions in the way you propose, if you want people to upload documents to a database on a server why not simply use a form with input ytpe='file'? That way it works in all browsers and there is no need to let the browser execute potentially harmful code (filesystem interaction). BTW there are dutch groups related to server and clientside html stuff: nl.internet.www.* -- Daniel Tryba |
|
|||
|
tthallah wrote:
> Hello, > > Voor een website willen "trusted website" omzeilen. Aan de hand van > php en vbscript is er een script die microsoft word documenten leest > en die in de database "mysql" opslaat. Om dit te laten gebeuren, > moeten internet gebruikers ons website toevoegen bij "vertrouwde > website". Hoe kunnen we dit omzeilen. > > Vriendelijke dank voor je hulp. Hi tthallah, Try reposting your question in english. Not many people understand Dutch, strangely enough.... Dutch: Herschrijf je vraag in het engels. Bijna niemand begrijpt nederlands en dit is een internationale nieuwsgroep. Regards, Erwin Moller |
|
|||
|
Thanks for your response. My English isn't very good.
We have a website that's programmed with php. We also have a website page, that's programmed with php and vbscript. For uploading ms-word documents, the uploading isn't the problem. But reading the file ms-word automatically, and save the text on a database, that's the issue. Visitors have to add us to their "trusted website", to activate it. How can we solve this problem. I hope I've informed you well. Sincerely Thallah. Erwin Moller <since_humans_read_this_I_am_spammed_too_much@spam yourself.com> wrote in message news:<415d41a2$0$78749$e4fe514c@news.xs4all.nl>... > tthallah wrote: > > > Hello, > > > > Voor een website willen "trusted website" omzeilen. Aan de hand van > > php en vbscript is er een script die microsoft word documenten leest > > en die in de database "mysql" opslaat. Om dit te laten gebeuren, > > moeten internet gebruikers ons website toevoegen bij "vertrouwde > > website". Hoe kunnen we dit omzeilen. > > > > Vriendelijke dank voor je hulp. > > Hi tthallah, > > Try reposting your question in english. > Not many people understand Dutch, strangely enough.... > > Dutch: > Herschrijf je vraag in het engels. Bijna niemand begrijpt nederlands en dit > is een internationale nieuwsgroep. > > Regards, > Erwin Moller |
|
|||
|
tthallah <tthallah@hotmail.com> wrote:
> But reading the file ms-word automatically, and save the text on a > database, that's the issue. Visitors have to add us to their "trusted > website", to activate it. How can we solve this problem. Move that from the client to the server, if you are running php on a windows machine than even the same script can be used. Else there are a couple of doc to text programs (like antiword). Pros: works everywhere, not dependend on unreliable client... Cons: costs you cpu power -- Daniel Tryba |