Re: Installation problems
Did you do a forum search? I believe this happens when you forget to upload in BINARY, but do a forum search and see if I'm correct.
Re: Installation problems
I did do a forum search and found out about the binary upload but Im not sure how to do it. I uploaded the files using core ftp and have never had to do any binary uploading before.
Re: Installation problems
It's probably in the options...there's ascii and binary uploading. Fiddle with the tools and options till you find it. Try right clicking the items you want to upload, see if you get the option, or check the help files for your FTP client, it should tell you.
Re: Installation problems
Thanks so much for that, turns out it was only at a click of a button and the ftp help files didnt say how to upload in binary. Ive been using ftp for about three or four years now and Ive never had to use Binary uploading.
It showed a few other errors but Ive got it working but theres something else. The site has no layout on it, Im sure its something Ive done. The images are looking for http://charmedmedia.fansource.org/charm ... es/images/ which isn't there. Any ideas?
$config = array();
$config['ffmpeg'] = "/usr/bin/ffmpeg";
$config['mplayer'] = "/usr/bin/mplayer";
$config['mencoder'] = "/usr/bin/mencoder";
$config['flvtool'] = "/usr/bin/flvtool2";
$config['basedir'] = "/home/charmedm/public_html/";
$config['baseurl'] = "charmedmedia.fansource.org";
include($config['basedir'] . "/include/vshare.php");
Re: Installation problems
Looks like you have a subdomain set up and the script is not "seeing" the CSS file that runs the layout and all that.
Try this:
Code:
$config = array();
$config['ffmpeg'] = "/usr/bin/ffmpeg";
$config['mplayer'] = "/usr/bin/mplayer";
$config['mencoder'] = "/usr/bin/mencoder";
$config['flvtool'] = "/usr/bin/flvtool2";
$config['basedir'] = "/home/charmedm/public_html/fansource";
$config['baseurl'] = "http://charmedmedia.org/fansource";
include($config['basedir'] . "/include/vshare.php");
If that doesn't work try searching the forums for setting up with a subdomain. You may have to do something to your .htaccess as well. Search for "subdomain" in the search, you'll probably find a post about it.