HTTP Request Problem

Boogie

New member
Hello,

i see not artist & track title, when i open showtitle.html

I see only 'Here you'll see track title:'
artist & track title stored are in the  temp file, if i play with radioboss..
temp file have chmod 777


Where is my Mistake ?

Boogie



 
I suppose you're using this guide http://www.djsoft.net/smf/index.php/topic,3176.0.html ?

If so, the first thing you should check is if the temp-title.txt file contains the current track title.
 
djsoft said:
I suppose you're using this guide http://www.djsoft.net/smf/index.php/topic,3176.0.html ?
Yes

djsoft said:
If so, the first thing you should check is if the temp-title.txt file contains the current track title.
Artist & Track Title are properly in the temp file

And chmod of temp file is 777
 
It uses AJAX to display information from file on web page... Please check that you have Java Script enabled.
If your page is available on Internet you can post its address here and probably we'll figure out what's wrong.
 
djsoft said:
Please check that you have Java Script enabled.
Java Script is enabled

djsoft said:
If your page is available on Internet you can post its address here and probably we'll figure out what's wrong.
it's only a Testsite.. and RadioBoss running

 
In showtitle.htm try changing the
xmlhttp.open("POST", "/temp_title.txt?"+rand_no, true);
to
xmlhttp.open("POST", "temp_title.txt?"+rand_no, true);
or
xmlhttp.open("POST", "/test/temp_title.txt?"+rand_no, true);
 
djsoft said:
In showtitle.htm try changing the
xmlhttp.open("POST", "/temp_title.txt?"+rand_no, true);
to
xmlhttp.open("POST", "temp_title.txt?"+rand_no, true);
or
xmlhttp.open("POST", "/test/temp_title.txt?"+rand_no, true);
it works :)
with: xmlhttp.open("POST", "temp_title.txt?"+rand_no, true);

by the way
i have a Winamp Plugin for that..but it works not with RadioBoss

many Thanks
 
I'm glad it work.

It's better not to use plugins. A bug in a plugin can harm stability or lead to an undefined behavior. So when possible, please RadioBOSS features instead of plugins.
 
Back
Top