Problem: The streaming audio script we are trying to run is not connecting to our audio folder.

Page: http://imvufm.200u.com/iRadeo/
Script: http://www.iradeo.com/
Provider: http://www.free-web-host.me/
Audio Folder: http://imvufm.200u.com/iRadeo/mp3/

Details: My business is trying to start our own online streaming radio station. We have found a free hosting provider with 40GB of disk space and unlimited bandwidth, PHP, mysql, perl, and webmail, with ads. I believe we have everything necessary for the script we are trying to run.

What we have done with the script so far:
1) installed the script
2) opened the config file
3) in the config file: set the Absolute path or full path to my mp3 directory to: /home/imvufm/public_html/iRadeo/mp3/
4) in the config file: set the Public address for the audio folder to: http://imvufm.200u.com/iRadeo/mp3/
5) added a single mp3 file to my audio folder
6) changed the colors around in the css files

Here are the instructions they give for installing:
http://www.iradeo.com/help/

I have been looking around the net for anyone who has successfully setup an iradeo and I can on find like 3 of them. Can anyone tell me what I should do to figure out what is wrong? I have already tried contacting the provider, with no response. IRadeo has zero support, except for the one small help file. I have also setup a php script to tell me the path to the audio folder: http://imvufm.200u.com/iRadeo/mp3/path.php

There are a few of these radios on the net, so I know the script works...
I think I just have the script or my hosting options configured wrong.
Where do I go from here?

Our Config File:

<?php
// (c) iRadeo.com


// Your Player Title
$title = 'IMVU FM';

// Label Display Feature
// Display labels inside player.
// Set any label to '' to hide it.

$labels = array(
'song' => 'Song',
'artist' => 'Artist',
'album' => 'Album'

);

// Absolute path or full path to your mp3 directory.(eg: /absolute-path/mp3s/)
// If you need assistance, request this information from your web hosting provider.

$mp3_dir = '/home/imvufm/public_html/iRadeo/mp3/';

// Public address for your audio folder.
// If you need assistance, request this information from your web hosting provider.

$http_path = 'http://imvufm.200u.com/iRadeo/mp3/';

// Shuffle Mode Feature
// Enabled - Streams files randomly from specified directory.
// Disabled - Sorts files alphabetically by filename/pathname and play sequentially.
// Enter true to enable or false to disable feature.

$shuffle = false;

// Skip Feature
// Limits the number of skips before having to stream one whole audio file.
// Unlimited skips: -1
// No skipping: 0
// X Skips (then must listen to entire audio): 1+

$skip_limit = 0;

// File Type Supported
// DO NOT EDIT
// Only .wav and .mp3 will work.

$playable = array('mp3', 'wav');

// Auto Play Feature
// Enabled - Streams files automatically when web page loads.
// Disabled - Requires users to click on play button to start streaming.
// Enter true to enable or false to disable feature.

$auto_play = true;

?>
    Write a Reply...