Re: [google-appengine] GAE Static files not working locally on windows

2014-01-04 Thread Google Tasks Backup Moderator
On my Windows system running GAE Python, I found that any absolute URLs were mapped to the equivalent absolute folder on my hard drive. For example href=/static/favicon.ico is mapped to c:\static\favicon.ico I worked around this by creating a symbolic link, by issuing the following command

Re: [google-appengine] Error server 500

2013-11-18 Thread Google Tasks Backup Moderator
What do the logs show? Go to https://appengine.google.com/ and check the logs for that application. On 15 November 2013 01:40, cosmin.george...@credis.ro wrote: After i deploy the apps in google apps i received error 500 this is my link of my course: credis-ecdl2.appspot.com Can somebody

Re: [google-appengine] Problem With Handlers...

2013-10-21 Thread Google Tasks Backup Moderator
I suspect that the problem may be pattern used for the books URL. Instead of *- url: /books/** try *- url: /books/.** On 12 October 2013 04:06, Mark Tyers markty...@gmail.com wrote: I am trying to create a simple web with URIs like: xxx.appspot.com/books/book/42 I would like the book code

Re: [google-appengine] How block bing bot by ip

2013-09-25 Thread Google Tasks Backup Moderator
You could try setting up a robots.txt file, which bingbot should hopefully adhere to. On 14 September 2013 01:08, João Verissimo Ribeiro joao.integra...@gmail.com wrote: Hello, I am suffering with bingbot. At times there are 10 robots at the same time, consume about 3,000 requests. I

Re: [google-appengine] Re: problem with app engine

2013-08-10 Thread Google Tasks Backup Moderator
What do you see in the logs for the application? Click on the Logs link on the left hand side of the dashboard for your application at https://appengine.google.com/ On 11 August 2013 01:08, lonelyboy26 phanthanhha...@gmail.com wrote: please instruct me to fix it, i need it as soon as possible

Re: [google-appengine] How to show key name from datamodel.all() on Django template

2013-07-30 Thread Google Tasks Backup Moderator
Try myProject.*key* On 27 July 2013 18:48, Hayato Hoshikawa hayato1...@gmail.com wrote: Hi Team, I would like to know how to show key name from datamodel.all() on Django template. Wrote below code but don't find how I can make key_name at the red line. Please tell me how to make them

Re: [google-appengine] Re: Has anyone received a warning email like this?

2013-07-11 Thread Google Tasks Backup Moderator
Hi Waleed, Have you received a response from Google? If you would like us to help you understand that unusual activity, please reply directly to this email. It is indeed puzzling that they send a link to Bulk Email Sender guidelines if your app does not send emails. Regards, Julie On 12

Re: [google-appengine] server error

2013-06-24 Thread Google Tasks Backup Moderator
What do the application logs show? On 24 June 2013 14:00, Oscar Soto oscarso...@gmail.com wrote: ALL TIME!!! Error: Server ErrorThe server encountered an error and could not complete your request. If the problem persists, please reporthttp://code.google.com/appengine/community.html your

Re: [google-appengine] Unable to deploy proxy server

2013-06-23 Thread Google Tasks Backup Moderator
That message generally occurs if you have 2-factor authentication, but have entered your normal account password. If your account uses two factor authentication, you must use an application specific password, as specified at http://www.google.com/support/accounts/bin/answer.py?answer=185833 You

Re: [google-appengine] Re: GoogleAppEngineLauncher - status icon yellow, should be green

2013-06-18 Thread Google Tasks Backup Moderator
Is it possible that another program is already using port 8080? What happens if you direct your browser to localhost:8080? On 18 June 2013 14:05, Anurag Mathur mathuranura...@gmail.com wrote: I am getting this error while starting the app. From the UI, it all stays greyed out for ever.

Re: [google-appengine] help

2013-06-16 Thread Google Tasks Backup Moderator
According to http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx Error 3 indicates The system cannot find the path specified. Does 'C:\google\appengine\demos exist? Do you have permission to access that folder? For example, a non-admin user may not have permission to

Re: [google-appengine] How many re-tries should I wrap my (failing) URL fetches in?

2013-06-12 Thread Google Tasks Backup Moderator
I'm using Python, so I import time and use time.sleep() On 13 June 2013 00:45, Cesium cesiumpic...@gmail.com wrote: My overnight tests show that N=2 is not sufficient. I'll bump it up to 4. Do you use: Thread.sleep() ? David -- You received this message because you are subscribed to

Re: [google-appengine] Re: App Engine is down with 500 Internal Server Error

2013-06-11 Thread Google Tasks Backup Moderator
I have been seeing many timeouts retrieving OAuth tokens over the past few days, but now this error occurs for EVERY user request! My app tasks-backup is now unusable. On 12 June 2013 00:01, Amy Zech alz...@gmail.com wrote: Our apps are also still down. On Tuesday, June 11, 2013 9:36:35

Re: [google-appengine] How many re-tries should I wrap my (failing) URL fetches in?

2013-06-11 Thread Google Tasks Backup Moderator
I use 4 tries in total. The original, then 1 retry, then sleep and retry, then sleep a little longer and retry one last time. In my experience, if it hasn't succeeded after the first sleep, it almost never succeeds after the 2nd sleep, but I still give it that one extra chance, because it does

Re: [google-appengine] Error: Server Error The server encountered an error and could not complete your request.

2013-06-08 Thread Google Tasks Backup Moderator
Check the logs for your application at https://appengine.google.com/ The logs should give you some indication as to where the error is. On 8 June 2013 17:12, Peter Odhiambo pokay...@gmail.com wrote: I really can't figured how to solve this error. every time i try to run my app i get the error

Re: [google-appengine] App Engine to Calendar Authentication

2013-06-08 Thread Google Tasks Backup Moderator
Hi James, As pointed out by someone else earlier, the redirect URI needs to be https. Also, if you are using Python, I've found the easiest method to implement Oauth2 is to use the Oauth2Decorator supplied by Google. See

Re: [google-appengine] Regarding the Backend development of my Android APP

2013-06-04 Thread Google Tasks Backup Moderator
Try these https://developers.google.com/appengine/docs/python/gettingstartedpython27/ https://developers.google.com/appengine/docs/python/gettingstartedpython27/usingdatastore PHP link on the left side at https://developers.google.com/appengine/ On 4 June 2013 18:18, innerne...@gmail.com

Re: [google-appengine] Re: Problem with DeadlineExceededError

2013-06-01 Thread Google Tasks Backup Moderator
Sometimes it takes more than the default 5 seconds for a remote API call to complete, and I think that we need to accept that. The solution is to increase the timeout period. I have been using the following workaround to increase the timeout. Just add this snippet above the rest of the import

Re: [google-appengine] Re: Is this group moderated?

2013-05-23 Thread Google Tasks Backup Moderator
Hi John, The amount of time it takes for a post to appear is highly variable. I have seen posts from others that have been delayed more than a day, and other times, I see posts within a few minutes. I can see three messages from you in this thread (16:04, 16:06 from your Gmail account and 16:07

Re: [google-appengine] Trying to post from incognito mode to test if it is working. If it works, I'll delete this post

2013-05-23 Thread Google Tasks Backup Moderator
Received On 23 May 2013 16:09, John Wheeler j...@highvolumeseller.com wrote: Testing if my account is allowed to post. Sorry, but I've tried to post several items and they're not showing up. -- You received this message because you are subscribed to the Google Groups Google App Engine

Re: [google-appengine] Deployment with java

2013-05-20 Thread Google Tasks Backup Moderator
You may find some useful information at https://developers.google.com/appengine/docs/java/gettingstarted/ On 21 May 2013 03:17, Vincenzo Chindemi chindemi.vince...@gmail.com wrote: Hi, i would develope an app for App Engine with an internet page(index.html) to need the deployment of my own

Re: [google-appengine] App Engine Server Error

2013-05-17 Thread Google Tasks Backup Moderator
Hi Todd, When I go to http://mass-automation.com/ I am redirected to http://support.mass-automation.com/ which appears to display correctly for me (using Chrome on Windows 8 desktop mode, in Australia). It may be that they had a temporary application or server problem. Cheers, Julie On 16

Re: [google-appengine] Re: Strange behavior with static .png file

2013-05-13 Thread Google Tasks Backup Moderator
Is there any particular reason why you are trying to access the png files directly? If they are displayed in an HTML page, they work fine. This SO article may also help http://stackoverflow.com/questions/15179915/serve-static-png-files-with-an-image-png-content-type-not-image-x-png On 14 May

Re: [google-appengine] Strange behavior with static .png file

2013-05-12 Thread Google Tasks Backup Moderator
I believe the problem is because GAE is returning Content-Type: image/x-png(according to curl, see below), and some browsers may not interpreting x-png as png (and hence downloading, as suggested by timh). I do not know why GAE is serving the file as x-png. On my system (Chrome on Windows), it

Re: [google-appengine] Migrating to Python 2.7 - anything to watch out for?

2013-05-05 Thread Google Tasks Backup Moderator
I can answer your second question - you can have both Python 2.5 and 2.7 versions of your app, as different versions. On 5 May 2013 10:24, NP nearapo...@gmail.com wrote: My app is currently deployed on GAE using python 2.5. I have made changes to the code and it is now running on python 2.7

Re: [google-appengine] Re: help on backends

2013-04-27 Thread Google Tasks Backup Moderator
Asterisk means match zero or more of the *preceding character* */.** means a forward-slash followed by *zero *or more characters. This matches the root, and any other page off the root (e.g. it matches both *my-site.appspot.com/* and *my-site.appspot.com/mypage*) */** means zero or more

Re: [google-appengine] Inequality operators on two properties at once

2013-04-24 Thread Google Tasks Backup Moderator
If TextSearch doesn't help, and since Datastore doesn't allow more than one property per query to have inequality filters, then I can see only two possibilities, depending on the amount of data that you expect to have. If the amount of data is small, you could filter on one property using GQL

Re: [google-appengine] Re: Webpages are not updating properly after a datastore operation performed

2013-04-22 Thread Google Tasks Backup Moderator
I had a similar problem with one of my apps. I solved it by using @db.transactional e.g. @db.transactional def update_program(program_data): # Using transactional to ensure that DB is consistent before displaying programs again program_data.put() Then, whenever I need to update