Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web page "Done with errors" 1

Status
Not open for further replies.

disturbedone

Vendor
Sep 28, 2006
781
AU
We have a simple webpage that was built by an ex-staff member that lists all software we have and allows the user to click to install.

Some users are saying they get the page but it says 'Done' in the status bar with a yellow exclamation point. Clicking the 'Install' button does nothing. It is only a couple of users saying this, all other users get the page fine. Clicking it gives the following information:

Code:
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)
Timestamp: Tue, 29 May 2012 02:05:32 UTC

Message: Permission denied
Line: 19
Char: 5
Code: 0
URI: [URL unfurl="true"]http://software.domain.local/[/URL]

Does this mean it is a problem with line 19 character 5 of the underlying source code? If so, that code is:

Code:
    oShell.ShellExecute(commandtoRun, commandParms, "", "open", "1");

with the first 'o' being the 5th character.

The strange thing is that all other computers work perfectly fine. They're all XPSP3.

Any ideas?
 
If it's a permission issue, I'd check if the browser configuration has the web in trusted sites and if the "Trusted sites" level allows script execution.

Cheers,
Dian
 
Turns out the GPO that is supposed to apply IE settings was not being applied for an unknown reason.

The setting in IE security setting for "Initialize and script ActiveX controls not marked as safe for scripting" was set to 'Prompt' (even though it never prompted) and the GPO should set it to 'Enable'. Manually setting this fixed the problem. And running gpupdate /force and logoff/logon (as it is a user GPO) also fixed the problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top