Search found 23 matches

by GC
Wed Sep 04, 2002 7:00 pm
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

well I just put your url in my rtb app, and removed the username and password from the application and it worked. You should see that my current song is going through. Are you sure you set the $rtb_user and $rtb_pass variables in the config.php file? Yeah. The only weird thing I notice is that when...
by GC
Wed Sep 04, 2002 12:35 pm
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

maybe it's just me but I can't see a different between the two, i just woke up though so I might be missing something scrap what you got and download www.radiotoolbox.com/radiotoolbox/rtb_catcher_php.zip re-extract and reconfigure it. Also be sure to use a username and password, not just nothing. D...
by GC
Wed Sep 04, 2002 5:33 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

yea the catcher script is borked again, re-extract it over the one you got on your site. Okay, I seem to have figured one thing out.. // If register globals is off, then we get are vars this way. if (isset($_REQUEST)) { while(list($varname, $varvalue) = each($_REQUEST)) { $$varname = $varvalue; } }...
by GC
Wed Sep 04, 2002 4:29 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Jay wrote:just put a blank file called includes.php in it's place

cather.php will know how to handle that.
After it's updated a few times.. it's still blank.. and it still doesn't work. Huh. Weirdness..
by GC
Wed Sep 04, 2002 3:30 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Jay wrote:yea catcher is going to expect some vars in the includes.php, so if you modify that file it could cause problems in the catcher script.
Okay.. BTW: the copy of the catcher script zip is missing includes.php, so I can't replace it..
by GC
Wed Sep 04, 2002 2:35 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

well something strange is happening with catcher.php now no matter what I put for username and password it does not return BADPASSWORD are you modifying that script in any way? Another thing is that I noticed you are using Apache 2. I have not messed much with Apache 2 so that might be contributing...
by GC
Wed Sep 04, 2002 2:13 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Jay wrote:yea just remove the second ImageString function in whatimplayin.php, the one that DOES NOT say Playing:
Okay, that works.. :)

But it's not updating properly. As far as I can tell from RTB, it is updating, and so is the log service, but the includes file is no longer being updated..
by GC
Wed Sep 04, 2002 2:01 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

http://www.radiotoolbox.com/radiotoolbox/rtb_catcher_php.zip redownload extract just catcher.php and place it in your RTB directory. I just realized that you probably have Register_Globals off in PHP. Aces! It wasn't working, but then I added the following as you instructed me to in another thread:...
by GC
Wed Sep 04, 2002 1:38 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

hmm something weird is going on, I noticed a couple of things when I went to your catcher.php file it just throws out the header but not BADPASSWORD, which it should because I am not sending it a username or password try re-extracting the scripts and the config file and re-configuring it. Another t...
by GC
Wed Sep 04, 2002 1:25 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Jay wrote:is RTB saying anything in the Current Stats screen about the Script service?
It's working normally..
by GC
Wed Sep 04, 2002 1:20 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

yes but if you view the source of the page you will clearly see that our HTML comment is still there. Go ahead and delete the includes.php file make sure that RTB is running and updating your script Done.. whatimplaying.php returns the base image with the base text, but catcher.php is broken now..
by GC
Wed Sep 04, 2002 12:42 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Jay wrote:change the line that reads
header("Content-Type....

to

// header("Content-Type...

this way we can see what PHP is returning as an error
http://mp3.uhoh-boom.com/whatimplayin.php

Looks like mostly gibberish to me..

Code: Select all

‰PNG  IHDR,Põ‘m±PLTEÿÿÿ’’……
by GC
Wed Sep 04, 2002 12:22 am
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

yea I was afraid of this, some distribution of catcher is generating an HTML comment. I can't find it in my dist but anyhow download www.radiotoolbox.com/radiotoolbox/rtb_catcher_php.zip this and reconfigure it. Sorry about that. Well, now it at least sizes the image correctly.. still a red x thoug...
by GC
Tue Sep 03, 2002 11:54 pm
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

could you copy the contents of your includes.php file into a post here so I can examine it? Thanks, <!-- Song stats Generated by Radio ToolBox written by Jay Krivanek --> <?php $current_song = 'Matthew Good Band - 03 - Apparitions'; $listeners = '0'; $max_listeners = '1'; $touch_interval = '30'; $l...
by GC
Tue Sep 03, 2002 10:48 pm
Forum: Radio Toolbox
Topic: Red X?
Replies: 29
Views: 25019

Red X?

http://mp3.uhoh-boom.com/whatimplayin.php <?php include("includes.php"); dl("extensions/php_gd.dll"); header("Content-Type: image/png"); $im = imagecreatefrompng("songband1.png"); if ($im) { ImageString($im, 1, 17, 4, "Playing: ".$current_song, 2); I...