[google-appengine] How do I install Wordpress on App Engine?

2022-07-25 Thread Carter Olayemi
Hello, I am trying to install Wordpress on App Engine but I am confused about the steps, I need someone to help we with the details of how to do it. I have a couple of Wordpress site on Compute Engine but I am billed even though there is no traffic to those site this is why I want to use App

[google-appengine] Re: 409 Conflict Another transaction by user XXX is already in progress for app: s~YYYY

2013-09-26 Thread Carter
We're getting the same error even after rollback AND trying different versions that have never been deployed previously. Please start this issue: https://code.google.com/p/googleappengine/issues/detail?id=10021 On Wednesday, September 25, 2013 7:51:26 PM UTC-7, UnifyLog wrote: 409 Conflict

[google-appengine] NoSuchMethodError error from Java MapReduce GoogleCloudStorageLineInputReader

2013-09-24 Thread Carter
Any clues on how to fix this? We are getting uncaught exceptions with NoSuchMethodError. We're on 1.8.4 and using what we believe is th latest version of the gcs client and java pipeline. Uncaught exception from servlet java.lang.NoSuchMethodError:

[google-appengine] Re: Attention Java MapReduce users

2013-05-29 Thread Carter Maslan
We get compile errors when we ant the latest version of the java mapreduce library with java SDK 1.8.0. Error is Builder() has private access. Is there an existing fix for that? [javac]

[google-appengine] Re: Attention Java MapReduce users

2013-05-29 Thread Carter Maslan
an update later today. On Wed, May 29, 2013 at 1:32 PM, Carter Maslan car...@maslan.com wrote: We get compile errors when we ant the latest version of the java mapreduce library with java SDK 1.8.0. Error is Builder() has private access. Is there an existing fix for that? [javac] /mr2

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

2012-11-30 Thread Carter
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 handle these beyond turning off appstats? 2012-03-24 09:16

[google-appengine] Re: App Accessible via HTTPS but not HTTP

2012-06-19 Thread Hamilton Carter
Hi, I believe you can cause this to happen in your app.yaml file. If you have something like: url: .* script: main.py secure: always it might 'force' all accesses through https. Best Regards, Hamilton On Monday, June 18, 2012 12:41:29 PM UTC-5, emmett9001 wrote: I have an appengine

[google-appengine] 500s from appstats filter

2012-03-24 Thread Carter
We are getting 500s due to uncaught ApiDeadlineExceededException in the appstats filter for Java. Is there a way to handle these beyond turning off appstats? 2012-03-24 09:16:49.137 Uncaught exception from servlet com.google.apphosting.api.ApiProxy$ApiDeadlineExceededException: The API call

[google-appengine] Dashboard 500 errors - no access

2012-03-23 Thread Carter
We cannot access https://appengine.google.com/ We repeatedly get the 500 error: 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 problem and mention this error

[google-appengine] Re: Lots of HTTP 500 errors and all instances restarted by GAE!

2012-03-13 Thread Carter
We too are getting lots of 500s. Example below: 2012-03-13 09:20:56.381 Failed startup of context com.google.apphosting.utils.jetty.RuntimeAppEngineWebAppContext@1abcd9b{/,/ base/data/home/apps/s~camiologger/1.357444708065977584} org.mortbay.util.MultiException[java.lang.NullPointerException,

Re: [appengine-java] Problem with CSS on deployment

2012-02-07 Thread Carter Maslan
This sounds like the known CSS content type deployment bug that is fixed in 1.6.2.1 (again, after also fixing in 1.6.1.1) On Tue, Feb 7, 2012 at 6:37 PM, WillSpecht willspe...@gmail.com wrote: Since I upgraded to the latest SDK my css has been acting really weird. On random deployments my

Re: [appengine-java] Problem with CSS on deployment

2012-02-07 Thread Carter Maslan
you can download the new sdk and then point eclipse to use that new sdk (i.e. you do not have to wait for the eclipse plugin update) On Feb 7, 2012, at 9:31 PM, WillSpecht willspe...@gmail.com wrote: So looks like I just have to wait till this update pushes to eclipse. -- You received

[google-appengine] Re: (mostly) Consistent 20-second delay in starting backend tasks

2012-02-05 Thread Carter
We regularly but erratically see 10-20 minute delays in running push queue tasks. The tasks sit in the queue with ETA as high as 20 minutes *ago* without any errors or retries. (the problem seems unrelated to queue settings since our Maximum Rate, Enorced Rate and Maximum Concurrent all far

Re: [google-appengine] Re: (mostly) Consistent 20-second delay in starting backend tasks

2012-02-05 Thread Carter Maslan
tasks, but I don't have any recent empirical evidence of that. And I *think* I've been told that should not be the case. Robert On Sun, Feb 5, 2012 at 19:27, Carter Maslan car...@maslan.com wrote: Nicholas - For our examples of the 10-20 minute delay: app_id=s~camiologger queue

Re: [google-appengine] Re: (mostly) Consistent 20-second delay in starting backend tasks

2012-02-05 Thread Carter Maslan
The app always has front end traffic and I have noticed the delay at times with high traffic. On Feb 5, 2012 10:57 PM, Robert Kluin robert.kl...@gmail.com wrote: Does the app get a lot of front-end traffic or is it sitting idle when the delays occur? On Mon, Feb 6, 2012 at 01:38, Carter

Re: [appengine-java] Re: app engine server availability

2012-01-27 Thread Carter Maslan
This has been bad for us. We've seen continual failures in our running app starting at: 2012-01-27 05:27:26.339 PST and continuing through: 2012-01-27 06:50:17.318 PST Things appear to be normal now, but we're missing Dashboard graphs for everything prior to 6:50 PST. On Fri, Jan 27, 2012 at

Re: [appengine-java] WEB-INF/appengine-generated/datastore-indexes-auto.xml

2012-01-27 Thread Carter Maslan
Just making sure that you know that the xml file is populated lazily as your development server runs your app's specific queries against the datastore. So the file is populated only after your app has run through its query paths on the dev server. On Fri, Jan 27, 2012 at 7:40 AM, John Goche

Re: [appengine-java] json communication with google app engine

2012-01-16 Thread Carter Maslan
We have been happy with our use gson on server side too: of http://code.google.com/p/google-gson/ On Mon, Jan 16, 2012 at 4:44 PM, Bruno Fuster brunofus...@gmail.com wrote: Hi, I have an iphone app running exactly like you said :) I'm using VRaptorhttp://vraptor.caelum.com.br/en and

Re: [google-appengine] Re: How to defend against deployment-specific production bugs

2012-01-15 Thread Carter Maslan
am, Carter jcmas...@gmail.com wrote: Is there a way to deploy Task Queue definitions separately from the deployment of the whole application? We plan to start alternating app versions with each and every deployment as a way to defend against deployment-specific bugs. However, we have

Re: [appengine-java] Re: problem with Content-type: null with css files

2012-01-13 Thread Carter Maslan
with *each and every* deployment in order to catch deployment-specific bugs? Or do you think your deployment-related testing is sufficiently good that we can rely on the integrity of deployment? thanks, Carter On Wed, Jan 11, 2012 at 5:22 PM, Ikai Lan (Google) ika...@google.comwrote: We have

Re: [appengine-java] Re: problem with Content-type: null with css files

2012-01-13 Thread Carter Maslan
thanks for the tips. We will start alternating versions with each deployment. I have another question about managing target/target for queues that I will post under a distinct topic. thanks, Carter On Fri, Jan 13, 2012 at 3:16 PM, Ikai Lan (Google) ika...@google.comwrote: Re: Carter Going

[google-appengine] How to defend against deployment-specific production bugs

2012-01-13 Thread Carter
switching to the new version, it appears that we would have to re-deploy just to update the version numbers in the queue.xml configuration - which would defeat the safeguard because we'd be deploying again. thanks for any tips, Carter p.s. - we were motivated to come up with a strategy after

[appengine-java] Cause of NoClassDefFoundError?

2012-01-09 Thread Carter
We are sporadically getting this java.lang.NoClassDefFoundError error even though we have no deployment changes at all. Any tips on finding the cause of this error? 2012-01-09 16:44:23.725 Uncaught exception from servlet java.lang.NoClassDefFoundError: Could not initialize class

[google-appengine] is User user_id() unique for all time?

2012-01-08 Thread Carter
Is user_id() unique for all time? That is, even if a Google Account is deleted, the user_id() of that deleted account will never appear again in any other user_id, right? We are clarifying our understanding of this statement from

Re: [appengine-java] Re: problem with Content-type: null with css files

2012-01-01 Thread Carter Maslan
we had the same problem and it was solved by updating the css file (with a space) and pushing again (without an app version change). Appreciate any info you find on preventing this problem. It behaved as though it was a problem in GAE's caching of static files. On Dec 30, 2011, at 8:34 PM,

Re: [appengine-java] Any Hands-on Sample for CRON-jobs ?

2011-12-29 Thread Carter Maslan
Yes we use it, if this is what you mean: http://code.google.com/appengine/docs/java/config/cron.html ? On Wed, Dec 28, 2011 at 10:16 PM, suresh ashok suresh@gmail.com wrote: Hi, Did anyone used the CRON-jobs in Java. Regards, Suresh -- You received this message because you are

Re: [appengine-java] Re: Any Hands-on Sample for CRON-jobs ?

2011-12-29 Thread Carter Maslan
you write a java sevlet that handles the url specified by each cron entry in cron.xml. On Dec 29, 2011, at 1:02 AM, suresh ashok suresh@gmail.com wrote: Hi Carter, i had gone through the URL given but how it is used in java. Is just .xml files are fair enough to use Cron jobs

[appengine-java] Use of com.google.appengine.repackaged

2011-12-19 Thread Carter
After upgrading to 1.6.1, we get this message: Use of com.google.appengine.repackaged may result in your app breaking without warning for our use of: import com.google.appengine.repackaged.com.google.common.util.Base64; Is there a preferred Base64 encoder we can use instead? -- You received

Re: [appengine-java] Datastore indexes

2011-12-16 Thread Carter Maslan
you have to run through the code path locally (not just compile) to get auto generated indexes. then use vacuum index to delete old indexes once you are certain you have defined all your indexes in datastore-indexes.xml On Dec 16, 2011, at 8:03 AM, Gaël gael.ober...@gmail.com wrote:

[appengine-java] cache.put() with OutOfMemoryError exception

2011-11-28 Thread Carter
Any tips on diagnosing and resolving java heap space error? The exception is thrown in the call to memcache. I read through other postings but didn't see any tips on resolving. 2011-11-28 08:58:00.176 Uncaught exception from servlet java.lang.OutOfMemoryError: Java heap space at

[google-appengine] Re: MASSIVE ApiProxy$CancelledException Exceptions since Friday Night.

2011-11-28 Thread Carter
Our example of this problem (unfortunately on our /payment page). Appreciate any tips in diagnosing and resolving. 2011-11-26 20:28:45.543 /payment/ com.google.apphosting.api.ApiProxy$CancelledException: The API call taskqueue.BulkAdd() was explicitly cancelled. at

[google-appengine] Memcache put: Error setting single item

2011-11-04 Thread Carter
We get bursts (about 10 error log entries) of this error message every day or so: Memcache put: Error setting single item Any tips on diagnosing the cause of the failure? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this

[google-appengine] How to use Relative URL to access handler in different version of application?

2011-09-08 Thread Carter
of an application? thanks, Carter -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com

[google-appengine] Re: How to use Relative URL to access handler in different version of application?

2011-09-08 Thread Carter
I'm still interested in techniques for relative URLs to be shared across versions, but I've found a solution to the Task Queue specific problem in the use of target http://code.google.com/appengine/docs/java/config/queue.html#target On Sep 8, 10:28 am, Carter jcmas...@gmail.com wrote: Since

Re: [google-appengine] The most efficient way to enumerate variations of properties in a subset

2011-08-13 Thread Carter Maslan
http://code.google.com/p/appengine-mapreduce/ is a good way - if by efficient you mean efficiently performed on app engine. On Sat, Aug 13, 2011 at 1:29 PM, Tom Fishman tom.fish...@dishcrunch.comwrote: Say there are the following entities: {ID:1, width: 5, height: 11, ... }, {ID:2, width:

[google-appengine] Re: which custom HTTP header names allowed?

2011-08-03 Thread Carter
Any info on GAE-acceptable names for custom HTTP headers? We can use User-Agent as workaround, but we'd like to know our options. On Jul 27, 3:58 pm, Carter jcmas...@gmail.com wrote: We have a proxy that needs to send the client's IP address to GAE. We tried setting acustomHTTPheader of X

Re: [google-appengine] Re: Automated way to switch from M/S to HR?

2011-08-03 Thread Carter Maslan
I felt your pain on MS; but after moving to HRD Tuesday, our app has not experienced a single timeout error in 24 hours. So don't give up. On Aug 3, 2011, at 2:25 PM, David s2kd...@gmail.com wrote: I've just about given up on the thought that AppEngine is a good service. It's good in

Re: [google-appengine] Re: which custom HTTP header names allowed?

2011-08-03 Thread Carter Maslan
. thanks again, Carter On Wed, Aug 3, 2011 at 10:18 PM, Robert Kluin robert.kl...@gmail.comwrote: Hi Carter, If it is a proxy how about using X-Forwarded-For? I tested using curl, it doesn't get filtered. Robert On Wed, Aug 3, 2011 at 12:04, Carter jcmas...@gmail.com wrote: Any

[google-appengine] most efficient bulk delete code?

2011-08-02 Thread Carter
Is this the most efficient code for bulk delete? Is there a SELECT __key__ technique that's faster? This currently deletes 100 at a time, but it's slow. public long deleteBefore(Date d, long maxRecords) throws DaoException { PersistenceManager

Re: [google-appengine] most efficient bulk delete code?

2011-08-02 Thread Carter Maslan
, Carter jcmas...@gmail.com wrote: Is this the most efficient code for bulk delete? Is there a SELECT __key__ technique that's faster? This currently deletes 100 at a time, but it's slow. public long deleteBefore(Date d, long maxRecords) throws DaoException

[google-appengine] which custom HTTP header names allowed?

2011-07-27 Thread Carter
We have a proxy that needs to send the client's IP address to GAE. We tried setting a custom HTTP header of X-client-ip, but that seems to get filtered by GAE. We could include the info in use User-Agent, but that seems hack-ish. The doc (http://code.google.com/appengine/docs/java/runtime.html )

[google-appengine] JDO's getObjectById(keyString) does not look at the *whole* keyString?

2011-07-07 Thread Carter
This problem is specific to Java JDO implementation. Do you agree that this should be filed as a bug? (i.e. key names should be opaque strings rather than interpreted by JDO to determine entity kind?) getObjectById() is using only the first part of the supplied keyString as the *whole* key in

Re: [google-appengine] JDO's getObjectById(keyString) does not look at the *whole* keyString?

2011-07-07 Thread Carter Maslan
kind? On Thu, Jul 7, 2011 at 10:38 AM, Carter jcmas...@gmail.com wrote: This problem is specific to Java JDO implementation. Do you agree that this should be filed as a bug? (i.e. key names should be opaque strings rather than interpreted by JDO to determine entity kind?) getObjectById

[google-appengine] Can --datastore_path= be shared between Java and Python versions on dev_appserver?

2011-06-22 Thread Carter
We're trying to get the Python version of the app to read from the same datastore as is used by the Java Eclipse version of the app on the local dev_appserver. We have tried setting the Python App Engine launch flag -- datastore_path= to the path used by Eclipse (e.g. /war/WEB-INF/

[google-appengine] Better to use Key or User in referencing Users?

2011-06-16 Thread Carter
Is a query on type User more expensive than querying on type Key? In storing references to users of your application across multiple Kinds, which is better the better approach assuming I don't need locking for transactions? a) store the User type (the actual User object) or b) store a Key type

[google-appengine] lots of 500s - service down?

2011-06-07 Thread Carter
My Java app is getting lots of 500s this morning. Example message: 2011-06-06 12:17:21.539 Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this

[google-appengine] Re: Versions issue

2009-04-20 Thread Carter Rabasa
I'm having the same problem (id = twitter2ff). I've tried incrementing the version number, to no avail. Can someone please help? On Apr 16, 4:07 pm, Николай Тенев tenev.niko...@gmail.com wrote:   Hi Jeff, changing version in app.yaml and upload works. AppID is facebook-playground.appspot.com

[google-appengine] When do the new limits go live?

2009-02-13 Thread Carter Rabasa
I am currently getting a urlfetch.ResponseTooLargeError on an attempt to retrieve a 1.5MB file. I figure it will take time to roll-out the changes to all instances, any idea when the push will be complete? Thanks, Carter Rabasa http://www.socialdm.com

[google-appengine] Roadmap Request: increase the urlfetch limits

2009-02-07 Thread Carter Rabasa
shut-down due to the size of the response. I realize that this is meant to prevent abuse of resources, but maybe these calls could simply be rolled-in to the bandwidth caps? --Carter Rabasa http://twitter2ff.appspot.com http://twitter2mail.appspot.com http://ff2disqus.appspot.com http

[google-appengine] Re: Deleting stuff

2008-12-16 Thread Carter Rabasa
I'm having the EXACT same problem, and no amount of delay seems to be helping. Has anyone figured this out? On Nov 21, 4:00 pm, Ben Nevile ben.nev...@gmail.com wrote: Hi Chris - thanks for your response. A 2 second delay?  Really?  I don't think that would help. 1. Another of my apps is

[google-appengine] Re: Deleting stuff

2008-12-16 Thread Carter Rabasa
Some more information: app_id = twitter2ff offending model = TwitterUser On Dec 16, 1:14 pm, Carter Rabasa carter.rab...@gmail.com wrote: I'm having the EXACT same problem, and no amount of delay seems to be helping.  Has anyone figured this out? On Nov 21, 4:00 pm, Ben Nevile ben.nev