Connecting Tech Pros Worldwide Help | Site Map

Hyperlink from intranet web page to local files on my computer

  #1  
Old July 17th, 2005, 03:35 AM
Bill
Guest
 
Posts: n/a
I'm creating a company intranet, and every employee has certain
program we want them to be able to run from it, meaning we want the
link to the program to be on the intranet page. For example, Adobe
Photoshop resides on all the employees computer under "C:\Program
Files\Adobe\Photoshop 7.0\Photoshop.exe"

However, when I enter that as a hyperlink on the page, it does not run
the program.

Is there a way to get a web page to run a program on the local host?

Thanks,

Bill
  #2  
Old July 17th, 2005, 03:35 AM
Jochen Daum
Guest
 
Posts: n/a

re: Hyperlink from intranet web page to local files on my computer


Hi!
[color=blue]
>I'm creating a company intranet, and every employee has certain
>program we want them to be able to run from it, meaning we want the
>link to the program to be on the intranet page. For example, Adobe
>Photoshop resides on all the employees computer under "C:\Program
>Files\Adobe\Photoshop 7.0\Photoshop.exe"
>
>However, when I enter that as a hyperlink on the page, it does not run
>the program.
>
>Is there a way to get a web page to run a program on the local host?
>[/color]
Luckily not. What about I put a link to YOUR "format c:\" on my
webpage?

Some signed Java Applet or ActiveX thing might do it.

HTH, Jochen
[color=blue]
>Thanks,
>
>Bill[/color]

--
Jochen Daum - CANS Ltd.
PHP DB Edit Toolkit -- PHP scripts for building
database editing interfaces.
http://sourceforge.net/projects/phpdbedittk/
  #3  
Old July 17th, 2005, 03:35 AM
Stefan Weiss
Guest
 
Posts: n/a

re: Hyperlink from intranet web page to local files on my computer


Bill <billzimmerman@gospellight.com> wrote:
[color=blue]
> I'm creating a company intranet, and every employee has certain
> program we want them to be able to run from it, meaning we want the
> link to the program to be on the intranet page. For example, Adobe
> Photoshop resides on all the employees computer under "C:\Program
> Files\Adobe\Photoshop 7.0\Photoshop.exe"
>
> However, when I enter that as a hyperlink on the page, it does not run
> the program.[/color]

This is not a PHP issue, but a browser security feature. Depending on
the browser(s) you are using there are different ways to get around
this (if you _really_ want to; remember, you're disabling a security
feature). In MSIE you would have to configure the intranet environment
as "trusted", and in Mozilla there's a hidden configuration option in
the prefs.js or user.js files:
user_pref("security.checkloaduri", false);

HTH,
stefan
  #4  
Old July 17th, 2005, 03:36 AM
jn
Guest
 
Posts: n/a

re: Hyperlink from intranet web page to local files on my computer


"Bill" <billzimmerman@gospellight.com> wrote in message
news:8da5f4f4.0401191249.44473444@posting.google.c om...[color=blue]
> I'm creating a company intranet, and every employee has certain
> program we want them to be able to run from it, meaning we want the
> link to the program to be on the intranet page. For example, Adobe
> Photoshop resides on all the employees computer under "C:\Program
> Files\Adobe\Photoshop 7.0\Photoshop.exe"
>
> However, when I enter that as a hyperlink on the page, it does not run
> the program.
>
> Is there a way to get a web page to run a program on the local host?
>
> Thanks,
>
> Bill
>[/color]

<a
href="file:///C:/Program%20Files/Adobe/Photoshop%207.0/Photoshop.exe">Photos
hop</a>

You will still get a security warning window.


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Asp.net Important Topics. shamirza answers 0 January 18th, 2007 05:15 AM
Understanding Server.MapPath laura answers 7 July 22nd, 2005 03:40 AM