So my app is getting some small audio files via the gluon.tools fetch method, and then storing them manually in the upload folder via the store() method. While this works fine on a local server, it doesn't seem to work on GAE. It's throwing a runtime error: "you must specify a Field(...,uploadfolder=...)". Looking at the DAL gluon, this seems to imply that there is no path specified for the upload folder, even though that should be a default argument for Field() regardless of backend. Anyone have any ideas why?
Here is the code: audio_file = StringIO.StringIO(fetch(audio_url)) self.classcont_id = current.db.classcont.insert(...., quest_audio = current.db.classcont.quest_audio.store(audio_file, self.audio_name) ,....) current.db.commit() Thanks. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

