Log in

View Full Version : What is wrong?



auriaks
12-12-2010, 06:53 PM
Hi,

I have ajax script in my website and when I pushed on image which is connected with that script I got that message. I attached it here:[What is wrong with this Thing?]

http://www.filez.muffinz.eu/download/92964_wtf.png

Kind regards, Aurimas

Schmoopy
12-12-2010, 07:37 PM
Try using an image that is saved on your server.

Looks like you're using an image directly from another site (hotlinking), and that's why it's asking for authentication.

auriaks
12-13-2010, 11:54 PM
Those images are saved on my server...

traq
12-14-2010, 03:07 AM
are you electrictoolbox.com?
-if not-
are you sure your script is configured correctly?

What is the script trying to retrieve?

auriaks
12-15-2010, 02:35 AM
I just found something with that website:


function example_ajax_request(page){
$('#example-placeholder').html('<br/><img src="http://www.electrictoolbox.com/images/ajax-loader.gif" width="220" height="19"/><br/>');
setTimeout(function(){example_ajax_request_go(page);}, 500);
}


Its not about ajax... its about GIF loading picture. I will just change the source to my image from my server...

Thanks for quick help anyway...

traq
12-15-2010, 04:11 AM
there ya go...

glad you figured it out :: thumbsup ::

erdemtepe
12-26-2010, 08:30 PM
function example_ajax_request(page){
$('#example-placeholder').html('<br/><img src="http://www.electrictoolbox.com/images/ajax-loader.gif" width="220" height="19"/><br/>');
setTimeout(function(){example_ajax_request_go(page);}, 500);
}


?