Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Gallerize - Simple Photo Gallery System
  • Over the past few weeks in my spare time I've been working on creating a PHP/MySQL photo gallery system making use of Uploadify. I'm finally to a point where I believe it's ready for public consumption. It's not a finished product, but it is stable and feature-complete-enough for me to let it out in the wild.

    Features:
    - Uploadify w/ multiple file-uploads enabled for photo uploading
    - Gallery
  • Hi,Digismark, thank you very much for sharing the gallery with us,I have downloaded it and run it. many functions are working well execept for the upload images function.Do you know why ? I find that upload.php does not include the js files such as jquery.uploadify.queue.js etc... and I included them in the upload.php, but it still does not work... can you help me ? thank you in advance. :)
  • Upload.php in this system is not the same as upload.php in the default Uploadify package. I use process.php as the uploading script.
  • yes, you are right, the process.php is the file that has the same function as upload.php in the default uploadify package. but do I need to link about 7 js files into the upload.php file to make it work ? the button of upload files does not work when the mouse clicked it. can you tell me how to set the js file? thank you!
  • Hi! I am have the same problem... no upload option on the script when installed... hmmm...
  • Sorry guys, I'm not sure exactly what you're asking. The header.php file calls the includes based on the settings of the $jquery and $uploadify PHP variables.

    Aside from that, I've done some testing and I'm having problems.. sometimes the files get named out of order, or get skipped and don't get renamed. I'm not sure why it's doing this, but for now I've just turned multi: false;. It seems like since the files uploads and processing scripts are running at the same time and finishing at different times and my script does database calls that somewhat relies on them finishing in order; shit's broken. If there was some way to make it upload one, then skip to the next, that would rock.
  • @digismack:

    If there was some way to make it upload one, then skip to the next, that would rock.


    I believe setting 'simUploadLimit' : 1 would help.

    Also, I have a .NET/M$ SQL environment rather than a PHP/MySQL one. Would it be possible for you to post how you modified/enhanced the base Uploadify files? What I'm really after is the 'Description for each file during the upload process' feature you have. Since I've never tried PHP or MySQL, trying to convert your code and isolate just this feature is a bit daunting. TIA!

    Thanks
    A. Soong
  • @digismack

    Please disregard my request. Found this thread which I modified to suit my requirements.

    viewtopic.php?f=7&t=50&hilit=description&start=10

    Thanks
    A. Soong
  • It places some '/' at the begining of paths, this is not so bad if you have it in the root folder of the server, otherwise it does not function.
  • Great app!!

    but I'm stuck on something,

    when I try to upload some files it says: 'IO error' and the block where my file is in (along with the description input and gallery select) turns pink, but I don't know where i comes from or why it comes up.

    Can anybody help me with this error?

    Thnx
  • Thanks for the app.

    Something that may help those who are having trouble getting the "Upload Files" button to initiate the uploadify uploading fields.

    I put this code in a sub directory off my root folder http://yoursite.com/upload/

    and could not get the upload button to work, I then realized I had not configured my settings file with the correct paths:

    js/jquery.uploadify.settings.js

    and adjust the files paths accordingly, for me it was as simple as:

    'uploader' : '/upload/includes/swf/uploader.swf',
    'script' : '/upload/process.php',
    'cancelImg' : '/upload/images/cancel.png',
    'folder' : '/upload/uploads',
    'buttonImg' : '/upload/images/upload.png',

    good luck! And thanks for the script!
  • Heey it's me once again.

    I'm having trouble with one more thing, how about images that are very large (like 5mb). When I try to upload them, the page just hangs. It freezes at 100% but doesn't really upload the file. Does somebody know a solution to this problem?

    Thanks in advance.
  • BROWSE FOR FILES img button not appearing, I wonder what went wrong...
  • hi, i'd like to ask about the limits of fileuploads. i get errors while uploading more than 50 files (about 10MB). I already set php.ini in .htaccess like
    php_value memory_limit 2048M
    php_value post_max_size 2048M
    php_value upload_max_filesize 1024M


    but i'm always getting error about 60 seconds of running the script so I tried to set max_execution_time to 3600. but always getting the same IE Error, does anybody know? Another problem is while the image is uploaded there is some error and the picture is not displayed, so i have to delete it and to upload once more.

    Thank you for this extension!! I really apreciate it,after answering my questions i can upload my version which is pretty better than the default one :)