Home › Forums › Free wallpaper script › Bug Tracker › Bulk upload or a crapy sheet
Tagged: bulk insert, fatal error, fixed, parseCSV
This topic contains 10 replies, has 5 voices, and was last updated by veppa 1 year, 1 month ago.
-
AuthorPosts
-
May 9, 2011 at 19:33 #527
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 screenwhat is the problem ??
the script is hosted on hostgator
chmod 777 user-content and subfolders but nothingwhy bulk upload is so hard tu use ?
why not a ftp like window to select files that need to uploadMay 9, 2011 at 20:08 #528It 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. :/
May 10, 2011 at 16:02 #529is 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 don_script@yahoo.com
i pay 10 $ paypallMay 10, 2011 at 18:07 #530If 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.
May 15, 2011 at 22:56 #531Guys 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.
May 16, 2011 at 18:01 #532Well, 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.
June 3, 2011 at 07:09 #533Thanks for solving problem, I added it in version 1.2.1 which can be downloaded from wallpaper script page.
February 7, 2012 at 22:17 #817Existe un error de escritura en el archivo AdminController.php en la versión 1.2.1.
Hece llamado al archivo ParseCsv.php, por lo tanto si aparece un nombre cambiado, dara un error de archivo no encontrado.
Buscar y cambiar los 4 errores siguientes:
En la linea 880 aprox. reemplazar: use_helper(‘parseCSV’); por este: use_helper(‘ParseCsv’);
En la linea 903 aprox. reemplazar: use_helper(‘parseCSV’); por este: use_helper(‘ParseCsv’);
En la linea 985 aprox. reemplazar: use_helper(‘parseCSV’); por este: use_helper(‘ParseCsv’);
En la linea 1014 aprox. reemplazar: use_helper(‘parseCSV’); por este: use_helper(‘ParseCsv’);Probar y funciona perfectamente.
Saludos
miguelrusoApril 2, 2012 at 03:25 #842for linux server ensure that the file name match (case sensitive) to name used in sys\app\controllers\AdminController.php
ParseCsv.php use_helper(‘ParseCsv’)
the version 1.2.1 has use_helper(‘ParseCSV’); and the file name is ParseCsv.php
April 2, 2012 at 18:11 #843Thanks guys, I missed this issue in previous version. Just realized it now. fixed it with case sensitive use_helper(‘ParseCSV’); in version 1.2.2.
Also fixed category editing and category linking for russian alpabet letters.
Thanks again for pointing this out.
April 3, 2012 at 06:46 #845Messed with this case sensitive issue again. Fixed in version 1.2.3. renamed ParseCsv.php to ParseCSV.php
-
AuthorPosts
You must be logged in to reply to this topic.
