[web2py] Re: problem related to GAE server

2012-05-11 Thread Prakhar Srivastava
I don't i can say this problem 
but in GAE it accept only .png file and other expect .jpg  
i don't get the perfect solution.

On Thursday, 10 May 2012 11:33:17 UTC+5:30, Prakhar Srivastava wrote:
>
> what is the max image size we can upload through the img tag ?
> Because my application is working fine the local server and rock server 
> when i upload my application on GAE server then it's not showing properly 
> www.pixelofn.appspot.com
>
> this is my application actually it stack because he one photo should 
> appear in the middle then navigation come from right hand side.
>
> HOW CAN I SOLVE THIS PROBLEM ???



[web2py] Re: problem related to GAE server

2012-05-10 Thread howesc
you don't upload images via the img tag.  that is used to show images.

GAE does not make a distinction of the image size of the URL used as the 
src of an IMG tag.

if you are storing images in the DB, on GAE you have max of 1mb i believe, 
if you want to use more than that you need to use the blobstore on GAE.  if 
these are static files that you are uploading with your application code i 
don't think there is a file size limit, but i do think there is a total 
code+static files size limit.

On Wednesday, May 9, 2012 11:03:17 PM UTC-7, Prakhar Srivastava wrote:
>
> what is the max image size we can upload through the img tag ?
> Because my application is working fine the local server and rock server 
> when i upload my application on GAE server then it's not showing properly 
> www.pixelofn.appspot.com
>
> this is my application actually it stack because he one photo should 
> appear in the middle then navigation come from right hand side.
>
> HOW CAN I SOLVE THIS PROBLEM ???