Re: [google-appengine] Text

2013-04-11 Thread Julie Smith
Please be more specific in your questions! It depends on the language. For example, in Python *new_string = string1 + string2* On 11 April 2013 15:13, Newbee wrote: > How to concatenate Text in GAE > > -- > You received this message because you are subscribed to the Google Groups > "Google App

Re: [google-appengine] Allow/Deny access by user

2013-04-05 Thread Julie Smith
Hi Rik, You can revoke access to any application at https://accounts.google.com/IssuedAuthSubTokens This page lists all connected Sites, Apps and Services, as well as application-specific passwords. Cheers, Julie On 5 April 2013 13:45, Rik Scarborough wrote: > When you first log into an appe

Re: [google-appengine] user sign out google app engine without sign up Google account

2013-03-08 Thread Julie Smith
If you are using Chrome, one possible workaround is to set up multiple user browser profiles, where each profile signs into a different Google account. This has the advantage of allowing the user to be signed into multiple Google accounts simultaneously. Cheers, Julie On 9 March 2013 11:46, mi

Re: [google-appengine] Error: Server Error

2013-03-06 Thread Julie Smith
Please check your log files from the admin console. On 5 March 2013 23:41, 血未冷 wrote: > Error: Server Error The server encountered an error and could not > complete your request. > > If the problem persists, please > reportyour problem and > m

Re: [google-appengine] http://localhost:9090 is not loading consistently

2013-02-26 Thread Julie Smith
Do you see anything in the Logs window? Are you running the latest 1.7.5 SDK? On 23 February 2013 01:12, srinivas guddati wrote: > I am going through coursebuilder tutorial on google app engine. When I > start the application and click on browse, some times the localhost is not > loading and

Re: [google-appengine] Dashboard not loading, logs not viewable

2013-02-22 Thread Julie Smith
It's happening to me too when I'm logged in to my Google account. It was working about 15 minutes ago, but now I get error 503 An unexpected failure has occurred. Please try again. However, if I access appengine.google.com from my Apps account, I get the the "Welcome to Google App Engine" screen.

Re: [google-appengine] Some static images not uploaded, but they are shown in local

2013-02-20 Thread Julie Smith
Check the case of the file names. Windows doesn't care about case, but the webserver does. e.g., myapp.appspot.com/static/image.jpg will return 404 if the file name is actually Image.jpg or image.JPG, etc. On 19 February 2013 05:12, Indavelopers Almería wrote: > I have a problem with some static

Re: [google-appengine] Can't Edit APP on GAE

2013-02-04 Thread Julie Smith
If you are using Python, you can download your code from GAE as per the instructions at https://developers.google.com/appengine/docs/python/tools/uploadinganapp#Downloading_Source_Code On 4 February 2013 07:34, Ayick Tigabelas wrote: > how can I edit an existing my application? somebody help

Re: [google-appengine] What is the best way to handle storing data > 1MB that must be part of a transaction?

2013-01-20 Thread Julie Smith
I had a similar situation with a list of variable length lists of variable length dictionaries. I used pickle to pack the data into a single structure. I then sliced the pickled data into smaller (<1MB) chunks and stored each chunk in an entity which contains a blobstore and a sequence number. On

Re: [google-appengine] Re: Issues implementing URL slug

2013-01-16 Thread Julie Smith
Is it possible that there is indeed a syntax error in your index.html template file? If you check the console output in Chrome Tools > Javascript Console > Console it should indicate the where the error is. If you click on the error line number on the right hand side, the console will show the

Re: [google-appengine] Re: Issues implementing URL slug

2013-01-16 Thread Julie Smith
NP, can you give an actual example of a URL that you are having problems with? Which version of the SDK and Python are you running? It works for me using App Engine SDK release: "1.7.4" and Python 2.7.3 I agree with Jesse that < and > should not be used in a URL, however as far as I can tell from

Re: [google-appengine] Issues implementing URL slug

2013-01-16 Thread Julie Smith
Hello NP, That code works for me running on the development server on Windows 7 running Chrome 23. You haven't included your app.yaml, so I used *handlers:* * * *- url: /.** * script: main.py * Is that what you have? Regards, Julie On 16 January 2013 08:17, NP wrote: > I'm trying to imp

Re: [google-appengine] Sunsetting double wildcard SSL certificate support for applications serving from appspot.com

2013-01-13 Thread Julie Smith
If your version is *abc-1* in the versions page, and your app ID is *myapp*, then the full URL will be *abc-1-dot-myapp.appspot.com* On 14 January 2013 15:54, Robert Kluin wrote: > How will this impact people using secure only URLs that are testing a > new version of the app before making it de

Re: [google-appengine] The requested URL /My%20Favourites.html was not found on this server.

2013-01-08 Thread Julie Smith
Firstly, are you using Python, Java or Go? Secondly, is My Favourites.html a static file, or dynamically served by your application? What do you mean by "when trying to open two tabs in my website"? On 9 January 2013 05:34, Teja Setty wrote: > this is the error i'm getting when trying to open

Re: [google-appengine] Error: Server Error I need help please

2012-11-28 Thread Julie Smith
Please go to your dashboard and check your logs. On 29 November 2012 14:00, Nicolas Perez wrote: > Hello...after i deployed my app from eclipse i go to the welcome page > > http://nxtest-01.appspot.com > > But when i click on "Available Servlets: Test" i got this > * > * >> >> *Error: Server Er

Re: [google-appengine] App Engine : Getting server Error

2012-11-13 Thread Julie Smith
What error message are you seeing in the logs? The logs (available from the link at the left of the dashboard) should give more details as to the cause of the error. On 11 November 2012 23:06, djgoogleuser wrote: > Hi guys > > I am getting server error now . I mistakenly clicked dis

Re: [google-appengine] Re: Taskqueue execution latency up by 1000x

2012-11-13 Thread Julie Smith
FYI, it is issue #4901 at http://code.google.com/p/googleappengine/issues/detail?id=4901 On 14 November 2012 06:24, vlad wrote: > I ditched TaskQueue for all requests with timeouts of less than 60 sec. It > was simply too unreliable. Btw, there is a ticket filed for feature > requesting a TaskQ

Re: [google-appengine] Re: Google App Engine - Create a Engine not working

2012-11-05 Thread Julie Smith
*Hi Deex,* * * *Which editor did you use to edit the app.yaml file? Only standard ASCII text (or UTF-8 without BOM) should be used. * * * *Cheers,* * * *Julie* On 5 November 2012 14:54, Deborah Ryan wrote: > I am receiving the special characters are not allowed message when trying > to run the

Re: [google-appengine] Google App Engine - Create a Engine not working

2012-11-05 Thread Julie Smith
*Hi Joel,* * * *My apologies, the Dashboard is only visible once you have created at least 1 application.* * * *Normally, when you click the [Create Application] button, you are taken to a screen which prompts you to "Create an Application" and asks you to choose an Application Identifier.* * * *Ar

Re: [google-appengine] Google App Engine - Create a Engine not working

2012-11-04 Thread Julie Smith
*Please check your logs from the dashboard. They should give some indication as to the cause of the error. * On 4 November 2012 17:17, Joel Aniol wrote: > Seems there is a Problem with the App Engine > everytime i hit "Create Application" (https://appengine.google.com/start) > i got the Error me

Re: [google-appengine] Reliability of URLFetchService

2012-10-26 Thread Julie Smith
*I am using Python (not Java), but I was receiving significant numbers of * DeadlineExceeded* errors (many per day). Since using this patch to increase the timeout to 10 seconds, I have not seen any *DeadlineExceeded* errors.* *The fix for Python was to add the following code before importing http

Re: [google-appengine] Re: Awesome loading requests

2012-10-26 Thread Julie Smith
*Thank you for posting something positive. I think that we can all do with an injection of positivity today. * On 27 October 2012 11:07, alex wrote: > Yes, 260ms. Not only that one, the average. > > That's an unrealistic *if* for Java apps, but I'm not starting a language > flame. Just wanted to

Re: [google-appengine] Re: Web site completely down + appengine console not accessible

2012-10-26 Thread Julie Smith
developers.google.com/appengine is down too. It would definitely be nice to hear something from Google. On 27 October 2012 02:07, Nicanor Babula wrote: > Yes, hearing from google would be nice.. > > > On Fri, Oct 26, 2012 at 5:05 PM, Thiago Catoto wrote: > >> Can some one from Google Team say

Re: [google-appengine] Create an Application error

2012-10-26 Thread Julie Smith
*There can be many causes for a server error. Please go to appengine.google.com and check the logs for your application for more information. * On 26 October 2012 23:44, Conny Dai wrote: > anyone have idea? > when I create a new application > it show > Server Error > > A server error has occurred

Re: [google-appengine] Downloading Source Code

2012-10-24 Thread Julie Smith
*Hi Janika,* * * *It sounds like you may be running the command from the Python command prompt.* * * *The appcfg.py command is designed to be run from a normal Windows commnand prompt (cmd.exe).* * * *The syntax is indeed used without the angle brackets;* appcfg.py download_app -A *apageaboutturtle

Re: [google-appengine] Google App Engine TemplateDoesNotExist

2012-10-12 Thread Julie Smith
2 things to possibly consider: (1) Rather than including the '/' path separator character manually, the os.path.join function is used to join path components using whichever character is appropriate (e.g., '\' for Windows, '/' for Unix). Try; path = os.path.join(os.path.dirname(__file__), "te

Re: [google-appengine] Got Error when uploading,help plz

2012-10-11 Thread Julie Smith
*I have occasionally received this error, and in each case it was related to Internet access problems. One time it was my ISP's DNS, so I changed my DNS to use Google (8.8.8.8 and 8.8.4.4 as per * https://developers.google.com/speed/public-dns/?hl=es* On another occassion my ADSL router required a

Re: [google-appengine] I registered a test application, how can I see it executing?? Help

2012-10-02 Thread Julie Smith
You should be able to see the app running at* * http://rbmudacity.appspot.com/ but it would appear that your app is not handling requests. You don't say which language you used. If you are using the Python sample at https://developers.google.com/appengine/docs/python/gettingstarted/usingwebapp and