[google-appengine] Re: Uploading files for App Engine website

2018-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Grant, How did you deploy your app and to which environment? Your attached app.yaml does not seem to present itself in yaml format, and contains a log excerpt. Do you want to deploy to the App Engine environment, or to an instance of Compute Engine? If your plan to deploy your app in t

[google-appengine] Re: Uploading Files directly to Cloud Storage without going through App Engine Instances

2018-10-26 Thread samiislam via Google App Engine
I am providing you the Github sample for Java to upload Objects to Cloud Storage bucket since you were able to go through the first step of

[google-appengine] Re: Uploading Files - filename

2013-05-31 Thread Junchao gu
Can you be more specific on your example? I found this on stackoverflow too. but I am not sure how to use this . On Monday, June 8, 2009 2:59:47 AM UTC+8, Todd wrote: > > It took me hours to discover this, and I wanted to share, since I > could not find it anywhere else on the net. > > To get t

[google-appengine] Re: Uploading Files.

2011-01-07 Thread Shoubhik
Ohkay... Thanks T :) On Jan 4, 4:45 pm, Tim Hoffman wrote: > Hi > > Time to read your getting started guide.  You can't upload/write to the > filesystem. > Everything must be stored in either the datastore, blobstore, or memcache. >  Thats it there > is no where else the application can put data

[google-appengine] Re: Uploading Files.

2011-01-04 Thread Tim Hoffman
Hi Time to read your getting started guide. You can't upload/write to the filesystem. Everything must be stored in either the datastore, blobstore, or memcache. Thats it there is no where else the application can put data inside the appengine ecosystem. Rgds T -- You received this message

[google-appengine] Re: Uploading Files - filename

2009-06-08 Thread Sylvain
Another thing is that filename with ";" is buggy. Try to send a file like "my;file.jpg" --> it returns my. I think it's a bug in a python module that checks the headers. Regards On 8 juin, 14:52, J wrote: > I've just completed a project that does uploading of files. What I > found (through exp

[google-appengine] Re: Uploading Files - filename

2009-06-08 Thread J
I've just completed a project that does uploading of files. What I found (through experimentation, unfortunately) was that, in addition to Todd's recommendation below, what was sent to the server was browser dependent -- Safari and Chrome work one way, Firefox another. I'll probably write somethin

[google-appengine] Re: Uploading Files - filename

2009-06-07 Thread Ian Lewis
did something like self.request.FILES["myfile"].name not work? Since uploading files is a fairly common use case, would it be a good idea to get this added to the documentation? On Mon, Jun 8, 2009 at 3:59 AM, Todd wrote: > > It took me hours to discover this, and I wanted to share, since I > c