Thank you for reading.
I'm currently using the PHP script from here:
http://www.cantonbecker.com/canton/proj ... script.php
Here is the issue:
This Podcast PHP Script Does Not Find MP3 Files in Directory
It's a great script with the exception of 1 thing,
the MP3 files in a directory are not found by this script,
and will not display in the xml file generated by this script ...
I've used EVERY Conceivable "Path" that I can figure out to no avail.
I'll copy some of the code below for a better idea on what I'm using.
Any Ideas on what I might be doing wrong?
Thank you VERY Much in advance for your help!
Thanks,
FirstBorn
PS. I Like this smiley! ------->
Code: Select all
// CONFIGURE THESE VARIABLES:
// actual place where your mp3s live on your server's filesystem. TRAILING SLASH REQ'D.
// $musicDirectory="/var/www/html/samples.mysite.com/samples/";
// $musicDirectory="/html/samples.mysite.com/samples/";
// $musicDirectory="../samples.mysite.com/samples/";
// $musicDirectory="./samples.mysite.com/samples/";
// $musicDirectory="/var/www/home/myaccount/samples.mysite.com/samples/";
$musicDirectory="/home/myaccount/samples.mysite.com/samples/";
// corresponding web URL for accessing the music directory. TRAILING SLASH REQ'D.
$musicURL="http://samples.mysite.com/samples/";