Skip to content

Bulk upload or a crapy sheet

Discussion about Free Wallpaper Script. Installation, bugs, feature requests, modification and other questions.
Post any bugs for lates release
  • This topic has 6 replies, 3 voices, and was last updated 12 years ago by veppa.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #527
    script22
    Participant

      I download the script
      is simple to use and look cool
      but bulk upload is not working
      i use the upload.csv and edit the 2 image that are by default
      i get a white screen

      what is the problem ??

      the script is hosted on hostgator
      chmod 777 user-content and subfolders but nothing

      why bulk upload is so hard tu use ?
      why not a ftp like window to select files that need to upload

      #528
      dn3
      Participant

        It doesn’t currently work. If you look one topic down, I posted all about it a couple days ago, and whoever runs this forum deleted my topic. I’m guessing yours will be too.

        Why he wants to hide the fact that it doesn’t work, so people like us keep wasting our time, I couldn’t tell you.

        The function bulkinsert() is missing a call to use_helper(‘ParseCSV’); which will clear up the error, but I haven’t got the view for it working yet, so yeah, you’ll just get a 404.

        If you make any progress please let me know, as we can’t assume our posts will last long here. :/

        #529
        script22
        Participant

          is a lost of time this script
          my php skills is all most none
          if you make this script to work bulk upload send me an email at [email protected]
          i pay 10 $ paypall

          #530
          dn3
          Participant

            If I get it fixed, I’ll post the fix here freely. It would be nice if the script author would comment on this problem, and if he is going to fix it.

            #531
            veppa
            Keymaster

              Guys I am looking into this bulk upload issue.

              I moved website to other server that is why your previous post might be deleted. Meanwhile you can enable debug mode by adding you current ip address to config.php file at the top to $arr_dev=array(‘your_ip’);

              you can find your current ip by googling. It may be some php module is not installed in your server. Please can you enable debug mode and post your findings here.

              I couldn’t check forum for several days, sorry guys for delay. Will try to resolve issue asap.

              #532
              dn3
              Participant

                Well, I fixed it, and you can update the code in the package easily.

                It was missing a few calls to the helper file for parsing the csv file, so I made these changes to AdminController.php:

                Find:

                function bulkPreview()
                	{

                Add after:
                use_helper('ParseCsv');

                Find:

                function bulkWrite()
                	{

                Add after:
                use_helper('ParseCsv');

                Find:

                function bulkErrorDownload()
                	{

                Add after:
                use_helper('ParseCsv');

                Find:

                function bulkPendingDownload()
                	{

                Add after:
                use_helper('ParseCsv');

                And that should do it. I’m not 100% sure the last two are needed, I didn’t feel like trying to generate errors to test it, but it appears that anytime you init the class ParseCSV() from AdminController.php it was not finding the include.

                On the processing screen, it would be good to add some sort of loading gif, or some indicator that it’s actually running. Sometimes it’s pretty slow between the “inserted 20” lines, and people may think the script has timed out.

                Thanks for responding.

                #533
                veppa
                Keymaster

                  Thanks for solving problem, I added it in version 1.2.1 which can be downloaded from wallpaper script page.

                Viewing 7 posts - 1 through 7 (of 7 total)
                • You must be logged in to reply to this topic.