Re: [google-appengine] Wordpress installed to Google App Engine has infinite redirect loop on admin cp access

2014-05-07 Thread 吉積礼敏
I have got the same problem with no modification...
Is there any solution?

2014年4月23日水曜日 15時35分52秒 UTC+9 Vinny P:

 On Mon, Apr 7, 2014 at 4:28 AM, ch...@kode54.net javascript: wrote:

 I have installed Wordpress using the starter repository, with some 
 modifications for unrelated static content. Now when I attempt to use the 
 admin console, it redirect loops on https://www.kode54.net/wp-admin/. I 
 can provide any necessary configuration files if it can help anyone spot my 
 error.




 When you say, with some modifications did you edit the app.yaml file or 
 any PHP file? 

 If so, can you post those modifications here?
   
  
 -
 -Vinny P
 Technology  Media Advisor
 Chicago, IL

 App Engine Code Samples: http://www.learntogoogleit.com



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Adding search documents in a transaction

2014-05-07 Thread yngling
Bump :)

Den måndagen den 5:e maj 2014 kl. 18:43:55 UTC+2 skrev yngling:

 I want to add an entity to the datastore, and at the same time add a 
 search document (the document is just a geolocation and a timestamp, with 
 an id to locate the real entity). If the transaction fails and the entity 
 is not added to the datastore, I naturally do not want the search document 
 to be added either. Is there transactional support for adding search 
 documents?

 /Alexander


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] unable to compile MapReduceSpecification.of

2014-05-07 Thread Pravanjan Niranjan
Hi All,
   I am unable to compile  MapReduceSpecification.of  .It does work when i
select
//new DatastoreOutput(1)), but incase of new GoogleCloudStorageFileOutput(
images.sb.a-cti.com/staging/test, result.txt, text/plain, 1)), . This
show compile error not sure if i am missing something .

 I have tried replacing with different Marshallers but the result was same
.

Could some one put some light on this.


@RequestMapping(/accountJDOCounter)

public void accountJDOCounter(HttpServletRequest request,
HttpServletResponse response){

  try{



  String entityClassName = request.getParameter(entityClassName);

   String entityKind = request.getParameter(entityKind);

 if(entityKind == null){

 response.getWriter().write(Error);

 return;

 }

 MapReduceSettings settings = newMapReduceSettings().setWorkerQueueName(
default).setControllerQueueName(default).setBucketName(
images.sb.a-cti.com/staging/test);

   logger.info(Creating job15);

   String jobId = MapReduceJob.start(

  MapReduceSpecification.of(

   AccountJDO,

   new DatastoreInput(entityKind, 10),

   new AccountCounterMapper(),

   Marshallers.getStringMarshaller(),

   Marshallers.getLongMarshaller(),

   new AccountCounterReducer(),

   //new InMemoryOutputKeyValueString, Long(2)),

   new GoogleCloudStorageFileOutput(images.sb.a-cti.com/staging/test,
result.txt, text/plain, 1)),

   //new DatastoreOutput(1)),

   settings);

  // jobId is used to monitor, see step 5) below

response.getWriter().write(jobId  + jobId);

   logger.info(JobId  + jobId);

   }catch(Exception e){

 StringWriter sw = new StringWriter();

 PrintWriter pw = new PrintWriter(sw);

 e.printStackTrace(pw);

 logger.info(Error  + sw.toString());

 }

  }

-- 
Thanks,
Pravanjan

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: unable to compile MapReduceSpecification.of

2014-05-07 Thread Gilberto Torrezan Filho
Hi Pravanjan,

Can you post the compiler error message?

By the way, this kind of question is perfect to ask at StackOverflow ;-)

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: unable to compile MapReduceSpecification.of

2014-05-07 Thread Pravanjan Niranjan
This error message

The method of(String, InputI, MapperI,K,V, MarshallerK,
MarshallerV, ReducerK,V,O, OutputO,R) in the type
MapReduceSpecification is not applicable for the arguments (String,
DatastoreInput, AccountCounterMapper, MarshallerString, MarshallerLong,
AccountCounterReducer, GoogleCloudStorageFileOutput)


On Wed, May 7, 2014 at 8:39 PM, Gilberto Torrezan Filho 
gilberto.torre...@gmail.com wrote:

 Hi Pravanjan,

 Can you post the compiler error message?

 By the way, this kind of question is perfect to ask at StackOverflow ;-)

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/d/optout.




-- 
Thanks,
Pravanjan
Dev *formcreator http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: unable to compile MapReduceSpecification.of

2014-05-07 Thread Pravanjan Niranjan
Sorry completer error message looks like this.

Multiple markers at this line

- The method of(String, InputI, MapperI,K,V, MarshallerK,
MarshallerV, ReducerK,V,O, OutputO,R) in the type
MapReduceSpecification is not

 applicable for the arguments (String, DatastoreInput,
AccountCounterMapper, MarshallerByteBuffer, MarshallerByteBuffer,
AccountCounterReducer,

 InMemoryOutputKeyValueString,Long)

- The method of(String, InputI, MapperI,K,V, MarshallerK,
MarshallerV, ReducerK,V,O, OutputO,R) in the type
MapReduceSpecification is not

 applicable for the arguments (String, DatastoreInput,
AccountCounterMapper, MarshallerString, MarshallerLong,
AccountCounterReducer,

 GoogleCloudStorageFileOutput)


Thanks,

Pravanjan


On Wed, May 7, 2014 at 8:44 PM, Pravanjan Niranjan 
pravanjan.niran...@a-cti.com wrote:

 This error message

 The method of(String, InputI, MapperI,K,V, MarshallerK,
 MarshallerV, ReducerK,V,O, OutputO,R) in the type
 MapReduceSpecification is not applicable for the arguments (String,
 DatastoreInput, AccountCounterMapper, MarshallerString, MarshallerLong,
 AccountCounterReducer, GoogleCloudStorageFileOutput)


 On Wed, May 7, 2014 at 8:39 PM, Gilberto Torrezan Filho 
 gilberto.torre...@gmail.com wrote:

 Hi Pravanjan,

 Can you post the compiler error message?

 By the way, this kind of question is perfect to ask at StackOverflow ;-)

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/d/optout.




 --
 Thanks,
 Pravanjan
 Dev *formcreator http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*




-- 
Thanks,
Pravanjan
Dev *formcreator http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: unable to compile MapReduceSpecification.of

2014-05-07 Thread Pravanjan Niranjan
I have added the same in stackoverflow .


http://stackoverflow.com/questions/23522523/app-engine-map-reduce-java-could-not-compile-mapreducespecification-of

Thanks,
Pravanjan


On Wed, May 7, 2014 at 8:48 PM, Pravanjan Niranjan 
pravanjan.niran...@a-cti.com wrote:

 Sorry completer error message looks like this.

 Multiple markers at this line

 - The method of(String, InputI, MapperI,K,V, MarshallerK,
 MarshallerV, ReducerK,V,O, OutputO,R) in the type
 MapReduceSpecification is not

  applicable for the arguments (String, DatastoreInput,
 AccountCounterMapper, MarshallerByteBuffer, MarshallerByteBuffer,
 AccountCounterReducer,

  InMemoryOutputKeyValueString,Long)

 - The method of(String, InputI, MapperI,K,V, MarshallerK,
 MarshallerV, ReducerK,V,O, OutputO,R) in the type
 MapReduceSpecification is not

  applicable for the arguments (String, DatastoreInput,
 AccountCounterMapper, MarshallerString, MarshallerLong,
 AccountCounterReducer,

  GoogleCloudStorageFileOutput)


 Thanks,

 Pravanjan


 On Wed, May 7, 2014 at 8:44 PM, Pravanjan Niranjan 
 pravanjan.niran...@a-cti.com wrote:

 This error message

 The method of(String, InputI, MapperI,K,V, MarshallerK,
 MarshallerV, ReducerK,V,O, OutputO,R) in the type
 MapReduceSpecification is not applicable for the arguments (String,
 DatastoreInput, AccountCounterMapper, MarshallerString, MarshallerLong,
 AccountCounterReducer, GoogleCloudStorageFileOutput)


 On Wed, May 7, 2014 at 8:39 PM, Gilberto Torrezan Filho 
 gilberto.torre...@gmail.com wrote:

 Hi Pravanjan,

 Can you post the compiler error message?

 By the way, this kind of question is perfect to ask at StackOverflow ;-)

 --
 You received this message because you are subscribed to the Google
 Groups Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/d/optout.




 --
 Thanks,
 Pravanjan
 Dev *formcreator
 http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*




 --
 Thanks,
 Pravanjan
 Dev *formcreator http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*




-- 
Thanks,
Pravanjan
Dev *formcreator http://alpha.formcreator.a-cti.com/pages/logInForm.jsp*

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine 1.9.4 Released

2014-05-07 Thread Eric Han
thanks - the link worked just now for me. Let me know if you're still 
having troubles. The blog link is to the 1.9.3 release, hence my comment 
on this [1.9.4] and the past [1.9.3] release, please see our blog post 
[from 1.9.3 where it talks about the immediate next releases]. apologies 
if that wasn't clear.

As for Java, no updates to share about in my post. More will be coming soon 
:).

On Thursday, May 1, 2014 6:05:49 PM UTC-7, husayt wrote:

 Hi Eric, the link to blog post is wrong.
 Besides, is there anything for java version?
 thanks

 On Thursday, 1 May 2014 22:06:31 UTC+1, Eric Han wrote:

 Hi Everyone,
 We are pleased to announce the latest release of Google App Engine 1.9.4. 
 For more about the general theme on this and the past release, please see 
 our blog 
 post(http://googlecloudplatform.blogspot.com/2014/04/announcing-release-of-google-app-engine-1-9-3.html).

 Release 1.9.4 includes the following enhancements.
 Version 1.9.4 - April 30, 2014

 *Python*

- Fixed an issue with the Search API where it does not correctly parse 
 expressions that use the subtraction operator without surrounding 
 whitespaces.
- Fixed an issue with the devappserver Search API allowing searches for a 
 field with a negated value.
- Fixed an issue with the devappserver Search API not handling searches 
 for empty quotes the same way as production.
- Fixed an issue with the devappserver Search API not matching documents 
 with atom fields the same way as production.
- Fixed an issue with the devappserver Search API allowing expressions 
 that use the snippet operator over a numeric field.
- Fixed an issue with the devappserver Search API allowing sorting 
 expressions to use the snippet operator.
- Fixed an issue with the devappserver Search API not validating that 
 cursors are from a previous search.
- Fixed an issue with the devappserver Search API not parsing queries 
 that use the fuzzy search operator (~).
- Fixed an issue with the devappserver Search API not validating the 
 default value for sorting expressions on date fields.
- Fixed an issue with the devappserver memcache viewer not displaying 
 items with non-ASCII characters properly.
   - https://code.google.com/p/googleappengine/issues/detail?id=9459
- Fixed an issue with the devappserver allowing arbitrarily large file 
 uploads using HTTP POST requests. It now matches production limits of 32MB.
   - https://code.google.com/p/googleappengine/issues/detail?id=10384
- Fixed an issue with NDB deserialization looping infinitely when nested 
 value is None.
   - https://code.google.com/p/googleappengine/issues/detail?id=10758

 *PHP*

- Fixed an issue with libcurl giving a load error for Mac OS X Snow 
 Leopard clients.
   - https://code.google.com/p/googleappengine/issues/detail?id=10405
- Fixed an issue with making simultaneous mysqli connections to the same 
 CloudSQL instance causing the request to time out.


 thanks,eric hanGoogle Cloud Platform



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] SAMPLE for GCS json client with appengine

2014-05-07 Thread husayt
Is there any sample code for newle released GCS Json client library
https://developers.google.com/storage/docs/json_api/v1/


There is one here 
https://developers.google.com/storage/docs/json_api/v1/json-api-java-samples, 
but I am looking at sample connecting from appengine.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-07 Thread Gilberto Torrezan Filho
Confirmed: appcfg.sh update on 1.9.3 works as intended.

I hope it gets fixed on next update.

On Monday, May 5, 2014 8:48:50 PM UTC-3, Gilberto Torrezan Filho wrote:

 Hi Fernando,

 Thanks for your message (I was feeling lonely here =P). I'll check it out.

 Gilberto


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.