We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 1203
    • 7 Posts
    I have some problem
    Quote from: Tyreal2012 at Feb 06, 2011, 12:30 PM



    I’ve uplaoded it to the server, ran the install, all fine, however when i try and upload a file, it just comes back with a http error, but it doesnt tell me anything else.

    what is this? how fix

    Thanks
      • 18453
      • 66 Posts
      Dude, please read the readme file included.
      Step 2. Make sure the assets/galleries/ folder has write permissions....
        • 1203
        • 7 Posts
        folder "galleries" has write permissions 777, but duaring files uploading came back HTTP Error
          • 18453
          • 66 Posts
          Maybe you should check your error logs and try uploading with an other browser.
            • 1203
            • 7 Posts
            Problem still not solved

            When I had moved the site to another hosting that the problem disappeared.
            What is the problem on the first hosting.
              • 18453
              • 66 Posts
              I’ve had similar problems.
              They could have something to do with php safe mode and/or owner permissions for files/folders.
              If thats the case then there is nothing you can do but to move to another host.
              I don’t have much knowledge about this, but I have a way to test this.

              You could test this by creating an album try uploading some photo’s first.
              Then find the ID of the album resource.
              Then use the MODx filemanagement to delete galleries/ID (folder).
              And now use FTP client to manually create a new folder in galleries with the same ID.
              And then try to upload photo’s in that same album again.
              If it works now then you’d better find an other webhost..
                • 1203
                • 7 Posts
                I solved this problem. I added in .htaccess file following construction

                SecFilterEngine off
                grin
                  • 30912
                  • 463 Posts
                  Has anyone figures out how to display multiple galleries without excluding docs, basically were going to have a bunch galleries and id like to just define a series of parents (like ditto i.e &parents=`1,2,3,4` ) rather than excluding every page from the call.

                  at present if i want to display multiple galleries i need to add

                  [[EvoGallery? &docId=`112` &itemTpl=`thumbGal` &display=`images` &type=`simple-list` ]]
                  [[EvoGallery? &docId=`113` &itemTpl=`thumbGal` &display=`images` &type=`simple-list` ]]
                  [[EvoGallery? &docId=`114` &itemTpl=`thumbGal` &display=`images` &type=`simple-list` ]]

                  Ta
                    • 9995
                    • 1,613 Posts
                    Multiple document id’s can be specified by commas (no spaces), or * for all documents

                    http://rtfm.modx.com//display/ADDON/EvoGallery%3bjsessionid=094BBB39C702D5696CB211922567421D
                      Evolution user, I like the back-end speed and simplicity smiley
                      • 30912
                      • 463 Posts
                      It explodes when i do that, SQL error:

                      SQL: SELECT * FROM `demonstration`.`modx_portfolio_galleries` WHERE (content_id = ’112’ ORcontent_id = ’113’ ORcontent_id = ’114’ ORcontent_id = ’115’) ORDER BY id ASC

                      Snippet is:

                      [[EvoGallery? &docId=`112,113,114,115` &itemTpl=`thumbGal` &display=`images` &type=`simple-list` ]]