[google-appengine] Re: DKIM not being verified

2012-09-30 Thread Robert Eaves
There ia a problem. https://productforums.google.com/forum/#!category-topic/apps/verification-and-mx-records/FOsrXULt66Y On Sunday, September 16, 2012 8:37:55 PM UTC+1, Miguel wrote: Hi, Do you know if there is some problem verifying DKIM when you set ti up? I have been trying for a week now

[google-appengine] Re: DKIM not being verified

2012-09-30 Thread Scott Blystone
Same problem here with a domain and 11 domain aliases. None of them will verify. I'm going to file a support ticket if they do not verify soon! On Saturday, September 29, 2012 11:05:47 AM UTC-4, Jack Bijou wrote: I am now having the exact same problem. I have watched YouTube videos and

[google-appengine] Re: Adding an admin email cannot be completed

2012-09-30 Thread Ben
Hello, Actually I also run into problem to add a secondary admin. The second admin receive an email but: - it says that I propose the person to be a developer while I proposed to be an Owner - even thought the secondary admin accepts the invite, it is never registered. This look like a

[google-appengine] GAE and other Databases connection question

2012-09-30 Thread Juan Manuel Bedregal
Hello, I am developing a project and I am using Google App Engine to store data in the cloud. What I need is to connect to a local Oracle (or any Relational Database) obtain some data and the upload it to GAE, is it possible to connect to 2 different DataSources ? Ej: Java+GAE+Oracle In the

Re: [google-appengine] Get file size with Python

2012-09-30 Thread Takashi Matsuo
Hi Phát, Can you show us the actual code and the error message please :) -- Takashi On Sat, Sep 29, 2012 at 7:05 PM, Phát Trần phat2...@gmail.com wrote: I try to get file size with os.path(asd.txt) But I cann't. Don't know why. Any help? -- You received this message because you are

[google-appengine] Re: can't deploy my app (AttributeError: can't set attribute)

2012-09-30 Thread M.A.
I get this error when I don't use per-application password. On Wednesday, April 25, 2012 2:10:29 PM UTC+3, John Smith wrote: File C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appengine_rpc.py, line 94, in __init__ self.reason = args[Error] AttributeError:

Re: [google-appengine] Transferring data from MongoDB to Google App Engine

2012-09-30 Thread Takashi Matsuo
Hi Eugene, The first option comes to mind is the Remote API. For more details, please read: https://developers.google.com/appengine/docs/python/tools/remoteapi Re: using PyMongo on App Engine I don't think you can use the current PyMongo module because it includes some c code. With the

Re: [google-appengine] Not able to install eclipse google app engine plugin

2012-09-30 Thread Takashi Matsuo
Hi Vivek, Europa is supported. Please see: https://developers.google.com/appengine/docs/java/gettingstarted/installing I'd recommend you check your network environment and set up the correct proxy servers in your Eclipse onfiguration. -- Takashi On Sat, Sep 29, 2012 at 11:59 PM, Vivek Singh

Re: [google-appengine] Error 404 on localhost:8888

2012-09-30 Thread Takashi Matsuo
Hi zep, Can you tell me what you expect here? To me, it seems working as expected because you deleted the project, the code 404 is a weird though. I'm a bit buffled. -- Takashi On Sun, Sep 30, 2012 at 2:40 AM, zep marcelozepgam...@gmail.com wrote: Hi. After I have deleted a project on

Re: [google-appengine] Re: Adding an admin email cannot be completed

2012-09-30 Thread Takashi Matsuo
Hi Ben, Can you file a bug report with more details like app-id, e-mail addresses, etc, in our issue tracker bellow? http://code.google.com/p/googleappengine/issues/list On Mon, Oct 1, 2012 at 4:23 AM, Ben b.marcha...@gmail.com wrote: Hello, Actually I also run into problem to add a

Re: [google-appengine] We couldn't retrieve your list of Kinds.

2012-09-30 Thread Takashi Matsuo
Hi pyo, Do you still have the issue? If yes, what's the app-id? On Fri, Sep 28, 2012 at 11:05 AM, pyo pc...@ldscanada.ca wrote: Hi, I am in the process of migrating from master/slave to high-replication. I've just deployed my new hrd-app, but when I try to go to the data store viewer, I see

Re: [google-appengine] Duplicate app when you have too many apps

2012-09-30 Thread Takashi Matsuo
Hi Nicholas, Now you can create some more apps, can you try again? -- Takashi On Wed, Sep 26, 2012 at 2:37 PM, Nicholas Jitkoff nicho...@jitkoff.comwrote: I'm running into the same issue (using this address). I've got a dozen apps, and need to migrate them over. On Friday, August 24,

Re: [google-appengine] Re: Error code 104

2012-09-30 Thread Takashi Matsuo
On Sat, Sep 29, 2012 at 12:17 PM, Ricardo rica...@proelosoftware.comwrote: I´m changing a property of a child thata has a relation owened one-to-many, and in the end saving the parent´s entity. In one transaction? How big is the change? Are those child entities necessarily to have the owned

[google-appengine] Re: Get file size with Python

2012-09-30 Thread GregF
Appengine does not give you access to the filesystem. You will need to use either the datastore or the blobstore to store local information. Cheers! Greg. On Saturday, 29 September 2012 22:05:42 UTC+12, Phát Trần wrote: I try to get file size with os.path(asd.txt) But I cann't. Don't know

Re: [google-appengine] Re: Get file size with Python

2012-09-30 Thread Gopal Patel
It prohibits writing. It allows reading anyway you want. On Mon, Oct 1, 2012 at 9:02 AM, GregF g...@vig.co.nz wrote: Appengine does not give you access to the filesystem. You will need to use either the datastore or the blobstore to store local information. Cheers! Greg. On Saturday, 29

Re: [google-appengine] Re: Get file size with Python

2012-09-30 Thread Phát Trần
So use we use read file. And how can we know its size Vào 10:58:48 UTC+7 Thứ hai, ngày 01 tháng mười năm 2012, gops đã viết: It prohibits writing. It allows reading anyway you want. On Mon, Oct 1, 2012 at 9:02 AM, GregF gr...@vig.co.nz javascript:wrote: Appengine does not give you access to

Re: [google-appengine] Re: Get file size with Python

2012-09-30 Thread Takashi Matsuo
import os size = os.stat(filename).st_size # or size = os.path.getsize(filename) Does one of these work for you? On Mon, Oct 1, 2012 at 1:39 PM, Phát Trần phat2...@gmail.com wrote: So use we use read file. And how can we know its size Vào 10:58:48 UTC+7 Thứ hai, ngày 01 tháng mười năm 2012,

[google-appengine] Re: 500s from appstats filter

2012-09-30 Thread Amit Sangani
We are seeing similar exceptions in our logs when appstats are enabled. Did anyone find a way to resolve this? On Saturday, March 24, 2012 9:37:16 AM UTC-7, Carter wrote: We are getting 500s due to uncaught ApiDeadlineExceededException in the appstats filter for Java. Is there a way to

Re: [google-appengine] Re: Get file size with Python

2012-09-30 Thread Phát Trần
I tried but it's not work. Vào 12:02:56 UTC+7 Thứ hai, ngày 01 tháng mười năm 2012, Takashi Matsuo (Google) đã viết: import os size = os.stat(filename).st_size # or size = os.path.getsize(filename) Does one of these work for you? On Mon, Oct 1, 2012 at 1:39 PM, Phát Trần