Hello!
I'm building an application using codeigniter and the wonderful grocery crud. The thing is that I encountered the following:
1. I have created a TEXT field in my mysql database named adContent, which is meant to store the location of a file through set_upload_field.
2. I have specified $crud->set_field_upload("adContent","assets/uploads/files/");
When I create a new record, I can upload a file, and it gets uploaded. If I then save the record, I can see the thumbnail in the table. My problem is that
if I try to edit the record and press "Delete" next to the uploaded image, it doesn't work! All I get is "Deleting" (translated in my current locale of course) and the spinning arrows next to it. It does not actually delete the file nor it allows me to upload another. Am I missing something?
Thanks!