Om de ûnderfining foar jo te ferbetterjen is tydlik de funksjonaliteit dan dizze website troch ûnderhâldswurk beheind. Wannear in artikel jo probleem net oplost en jo in fraach stelle wolle, kin ús stipemienskip jo helpe yn @FirefoxSupport op Twitter en /r/firefox op Reddit.

Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Mear ynfo

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

Error accessing localhost

  • 6 antwurd
  • 2 hawwe dit probleem
  • 12 werjeftes
  • Lêste antwurd fan shrdlu1497

more options

I am trying to access a database on my PC using Firefox and PHP.

The Javascript code I am using is

xmlHttp=new XMLHttpRequest();

var url = 'http://Localhost:8080/Library/dbRequest.php/';

xmlHttp.open("GET",url,false);

xmlHttp.send(null); (this is line 68)

I get the error:

Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: [localhost] :: sendQuery :: line 68" data: no]

I have all wampserver services running

The Javascript and php code files are in c:\wamp\www\Library

Thanks in advance

I am trying to access a database on my PC using Firefox and PHP. The Javascript code I am using is xmlHttp=new XMLHttpRequest(); var url = 'http://Localhost:8080/Library/dbRequest.php/'; xmlHttp.open("GET",url,false); xmlHttp.send(null); (this is line 68) I get the error: Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: [localhost] :: sendQuery :: line 68" data: no] I have all wampserver services running The Javascript and php code files are in c:\wamp\www\Library Thanks in advance

Alle antwurden (6)

more options

Firefox has restricted use of synchronous XMLHttpRequest in some cases. I don't know whether there is a good page summarizing the changes, so I'm not sure whether your example is affected by them. Could you try setting async to true? I realize this requires other code changes, so perhaps wait for other comments.

more options

I've tried synchronous/asynchronous. Nothing seems to work. I must be missing something obvious. Does anyone have an example of using JS and PHP with the current version of Firefox? Thanks

more options

Is there anything relevant in the Error Console (Ctrl+Shift+j)?

Is the requesting page located on the identical hostname and port number?

more options

The error console message is

Timestamp: 2012-06-26 11:40:55 Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://localhost/Library/dbfuncs.js :: sendQuery :: line 69" data: no]

This is all running on my PC using Wampserver

more options

I think Firefox might consider this a cross-site request if you are running your script on port 80 and sending a request to port 8080. Is that necessary? There is a mechanism for permitting such requests, as described in this article: HTTP access control (CORS) - MDN.

more options

I'm not trying to do a cross-site request. I've tried using

'http://Localhost:8080/Library/dbRequest.php/' and

'http://Localhost:80/Library/dbRequest.php/'

but I still get the same error.

If I leave out the 'http://Localhost:8080/ part I do get a cross-site error 8012.

It's very frustrating because I used to be able to do everything I want but now I can't.

Thanks for help.