waferdave Posted February 22, 2010 Share Posted February 22, 2010 Hi. I'm created a simple website for a friend who wants people to log in and upload images. I purchased this PHP image uploader --> http://activeden.net/item/php-image-gallery-with-uploader-so-no-need-for-xml-editing/32832 there is a link on the page on how it should work. Within the files downloaded, their included a help file, which stated: ***** When uploading to your site you must include the following: -centerLoader.as -getimages.php -upload.php -photoAlbumFlashCS3_v2.swf or photoAlbumFlash_v2_8.swf -Images Folder ***** the getimages.php file was this. <? function getFiles($dir,$rep){ $dp=@opendir("./".$dir."/".$rep); $file=""; $tag=""; while($file= readdir($dp)){ if($file!="." && $file!=".."){ $tag.=".".$dir."/".$rep."/".$file.","; } } return $tag; } $tag=getFiles("","images"); echo "&tag=$tag"; ?> When i created the website, which is here. http://www.chickenboyhouseteapotcat.com/ (password is 'kate') the user can select their image however it doesn't upload, but goes blank. but when i go into my file manager on my go daddy hosting, the images which have been attempted to upload are in the images folder. any help would be great. thanks. Quote Link to comment Share on other sites More sharing options...
premiso Posted February 22, 2010 Share Posted February 22, 2010 I did not realize that the comments / suggestions forum offered help. Intriguing! Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted February 22, 2010 Share Posted February 22, 2010 Did you attempt to get support from the author, considering it is a purchased script? Quote Link to comment Share on other sites More sharing options...
waferdave Posted February 22, 2010 Author Share Posted February 22, 2010 ye, no reply :/ the images are uploading to the gallery, as i can see that in the internal images folder, but there just not visible Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.