|
Hi,
I am tryning out CGI-scripts for the first time but without success. I have read many tutorials and followed may threads in different forums but I can not make it work. I am using a appache web server on a Fedora 10 machine. I always have problem ...
Started by M.Rezaei on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
EDIT - The problem is with permissions, but not with read permissions, as you .
Apache it has read access.
|
|
For posting AJAX forms in a form with many parameters, I am using a solution of creating an iframe , posting the form to it by POST, and then accessing the iframe 's content. specifically, I am accessing the content like this:
$("some_iframe_id").get(...
Started by Ovesh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Ieframe.dll/http_500.htm ), and that causes the cross-domain access denied error..
|
|
I am "lazy loading" a 3rd party ad script on my website by overwriting the document.write function and restoring it at a later time. This ad script creates an iframe, and tries to write to it.
I am seeing an "Access is denied" error in Internet Explorer...
Started by Bilal Aslam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, if the following is set try from which you're trying to access....
If you are setting the domain of the document, trying to access a dynamically injected iFrame can throw access errors in IE.
Explicitly set on your page.
|
Ask your Facebook Friends
|
I'm creating a popup window with no URL source using window.open(). I don't give it a URL because soon I'll want to post a form to it. However, in the meantime I'd like to display a short "Now loading..." message so the user isn't looking at a blank page...
Started by jodonnell on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Site, then do the document.open() to access it.
|
|
In my page load I check something, and I want to display the standard Access Denied message without going through the hassle of creating a page to redirect to.
Is there an easy way?
Started by SLC on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd do something....
Response.Clear() Response.Write("Access Denied") Response.End
You want to return a HTTP return code of 401 ("access denied")
So,
Response.Clear(); Response.StatusCode = 401; Response.End();
should with 401.
|
|
Hi,,
I am trying to access my 8GB USB drive at work, but it gives an error that says "access is denied", I know that they have resticted access at work. Is there anyway I can break into this from my local machine? weird thing is that my account is under...
Started by Mustafa A. Jabbar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Reasons that you might be restricted:
IT doesn't have enough time to ... .
Contact your internal support people or follow the rules.
In short, the restrictions are there for a reason.
I doubt the site owners want us to help you hack your employers systems .
|
|
What could it mean if I make an ajax request with the jQuery .load() and I get no response at all in firefox or chrome, and in ie8 I get an error saying "Access is Denied"?
Answer Snippets (Read the full thread at stackoverflow):
If you're loading a page that's in a different domain (example: www.yoursite.com and you're trying to load "yoursite.com" or even "google.com"),... .
It usually means you are trying to violate the same origin policy and request data from a different host .
|
|
I have a Windows 2003 Standard x64 Server with SP2.
After deleting a large number of folders from a folder, the OS is reporting "Access Denied" on any attempt to read or manipulate the folder. When examining the folder's properties, the Security tab is...
Started by magnifico on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I would guess that once you release it or....
Use a tool like Process Explorer to see if anything has an open handle on the folder .
When I've seen this it was because a process was holding the folder open but the folder was in the process of being deleted .
|
|
I'm using an ASP.NET to call my WCF service. in my service, I access a file but I get this exception :
FaultException '1 was not handled by user code : Access to the path 'C:\Users\attilah\Documents\Visual Studio 2008\Projects\at\att\UploaderTemp\attilah...
Started by Attilah on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is file access audit in Windows....
Mind you - when you call a WCF service, the access to the file will not be made under your own of those limited system account have access to that file on disk on your server?? Most likely not...
|
|
I keep getting access denied when trying to access my new site through a browser.
In central admin i am primary administrator of the web app, i can connect to it using sharepoint designer and edit files and save them. Just when i try to browse to the ...
Started by chicken on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
New sites, but can't access them ...
|