|
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
|
We are using the ASP.NET 1.1 version of dtSearch and are having an issue that is affecting our users authenticating with Active Directory (AD). This issue also is affecting another custom, in-house .NET 1.1 DLL in the same websites.
When a standard user...
Started by dirq on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If your file system does not have the appropriate permissions setup .
While I can't say for sure I suspect there may to access resources as the actual user.
Just a though....
It could cause an access denied.
|
|
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 friends,
I am tring to open the COM1 port but I am getting this error message "Access to the port 'COM1' is denied". Actualy, I am writing a program for sending SMS via net. I accept there could be an error, but "Access denied" error should not arised...
Answer Snippets (Read the full thread at stackoverflow):
You will need to write some code to ensure that only one thread is trying to access the port at a given ....
Since you tagged this asp.net, are you trying to access the port with multiple access a com port at a time.
Using the port.
|
|
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 .
|