Hello,
I thought I'd bite the bullet and try this Knoppix thing so I could see where LINUX was at, wow, I have been so used to old school unix with nothing but a command line interface.
Now it's a complete windows environment, icons (i'm sure they nicked a couple of MS icons - or is it the other way round?)
I'm seriously impressed and concidering parting from MS software, however, there's always a but, isnt there!
I loaded my site up in the Knoppix supplied Konquerer browser and have found that my AJAX script doesn't work.
(works fine in the FireFox browser - which I'm writing this thread on - though I don't like the fonts on this OS!)
the code that runs is
all I get is "There is a problem with AJAX, please contact support."
Is there a different return code for Konquerer other than 200?
Thanx 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
I thought I'd bite the bullet and try this Knoppix thing so I could see where LINUX was at, wow, I have been so used to old school unix with nothing but a command line interface.
Now it's a complete windows environment, icons (i'm sure they nicked a couple of MS icons - or is it the other way round?)
I'm seriously impressed and concidering parting from MS software, however, there's always a but, isnt there!
I loaded my site up in the Knoppix supplied Konquerer browser and have found that my AJAX script doesn't work.
(works fine in the FireFox browser - which I'm writing this thread on - though I don't like the fonts on this OS!)
the code that runs is
Code:
function alertContents() {
if (http_request.readyState == 4) {
if(http_request.status && http_request.status == 200) {
// Call global AJAX function
AJAX(http_request.responseText,retvars);
} else {
alert('There is a problem with AJAX, please contact support.');
}
}
}
all I get is "There is a problem with AJAX, please contact support."
Is there a different return code for Konquerer other than 200?
Thanx 1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.