[google-appengine] Re: help me!

2018-09-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Minka, If there are no requests received by your service, App Engine does not create new instances, and reduces the number of instances to a minimum, depending on the settings you have chose in your project. How does your app.yaml look like? You should not publish any confidential inform

[google-appengine] Re: Help me for signing up GCP

2017-11-14 Thread 'Taher (Cloud Platform Support)' via Google App Engine
Please see the answer from your other post. On Tuesday, November 14, 2017 at 9:04:22 AM UTC-5, srinath reddy wrote: > > I am from India. I don't have credit card for signing up for GCP. Please > find me a solution to get insi

[google-appengine] Re: Help me mail

2017-10-09 Thread timh
You could set up a relay proxy for SMTP running on a high port that connects to your customers SMTP server and connect to that. T On Friday, October 6, 2017 at 9:05:36 PM UTC+8, Karl Tinawi wrote: > > Hi George/all, > > We're a small startup and we've invested in Google Cloud infrastructure > f

[google-appengine] Re: Help me mail

2017-10-06 Thread Karl Tinawi
Hi George/all, We're a small startup and we've invested in Google Cloud infrastructure for hosting our platform. We offer a B2B service and it is imperative for our customers to send emails to their clients using our platform (thus using their SMTP). We're at a critical juncture in our early d

[google-appengine] Re: Help me, GAE/PHP Inexplicable behavior google cloud storage' s response

2017-09-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Satoshi, You must start uploading to this URL within 10 minutes of its creation. Have you followed the relevant documentation page at "Allowing Users to Upload Files" with all the steps indicated there? How

[google-appengine] Re: help me

2017-09-06 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Satoshi, unfortunately community support is only available in English so I am not able to provide you with adequate help. It sounds like you either need code troubleshooting help or want to report a bug. If you require code troubleshooting help we recommend you post your question on Stack

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-04 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
I'm glad to hear you were able to resolve your issue. To answer your question, many service accounts are automatically created for you to perform operations on your project on behalf of your services. The App Engine service account is one such account but it turned out to not be necessary for y

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 中村智
Oh! I solved this issue! I added storage.objects.create to allAuthenticatedUsers, then my service users got to upload files. Thank you very much Yannick. Your hint is very helpful for me. 2017年9月2日土曜日 7時31分12秒 UTC+9 中村智: > > Hello and thank you Yannick. > How can I change ACL and How can I check

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 中村智
Hello and thank you Yannick. How can I change ACL and How can I check default bucket? I use blobstore.create_upload_url('path'). I do not specify bucket_name. Does App Engine's service account mean project owner? Please tell me manage page url and how to add read/write permissions to App Engine'

[google-appengine] Re: Help me! Recently I can not upload files with blobstore! 503 Error occurred.

2017-09-01 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello, a Blobstore 503 error usually means that the App Engine service account does not have access to the Google Cloud Storage bucket in which your blobs are stored. Could there have been any such changes to the bucket ACLs recently? You should make sure that App Engine's service account does

[google-appengine] Re: Help me mail

2017-08-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Google Compute Engine does not allow outbound connections on ports 25, 465, and 587. By default, these outbound SMTP ports are blocked because of the large amount of abuse these ports are susceptible to. You can find more information on how to send email from a VM and what services to use on the

[google-appengine] Re: HELP ME IN GOOGLE APP ENGINE !!!

2013-11-08 Thread Ales Justin
You don't use enough of UPPER CASE in your app or in your HELP ME. ;-) -- 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...@googlegr

[google-appengine] Re: HELP ME IN GOOGLE APP ENGINE !!!

2013-11-08 Thread Hassan Hamed
sir i did it but the same thing .. actually am trying to implement code igniter !! cause that is the framework i want to use .. thanks On Wednesday, November 6, 2013 9:01:49 PM UTC+1, Hassan Hamed wrote: > > PLEASE ANY GOOD GOOGLE APP ENGINE GURU HERE ? TO HELP ME SOLVE MY PROBLEM > ?? MY WEBSIT

Re: [google-appengine] Re: help me !I use java when I take String cast to Text then has some wrong

2012-09-18 Thread Shilendra Sharma
yeah you need to go StackOverflow for this kind of question are related to code Regards & Thanks Shilendra Sharma +919891343808 shilendra...@googlemail.com On Tue, Sep 18, 2012 at 3:48 PM, Ian Marshall wrote: > In my view, this is a question for StackOverflow. If you post there, > you might wan

[google-appengine] Re: help me !I use java when I take String cast to Text then has some wrong

2012-09-18 Thread Ian Marshall
In my view, this is a question for StackOverflow. If you post there, you might want to add some code. On 18 Sep, 04:51, IVE wrote: > I USE STRUT2 IN THE gae ,and  when the action accepted  the String ,then I > cast to Text and I will stored in the database,but after cast to Text and > print the

[google-appengine] Re: help me - channel api

2011-01-02 Thread Owen Powell
It means your class com.example.chat.shared.Message is not serializable, and thus can't be sent by RPC. See the docs: http://code.google.com/intl/en/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideSerializableTypes ~O -- You received this message because you are subscribed to t

[google-appengine] Re: help me - channel api

2010-11-15 Thread lyz984
You have to do the serialization by yourself and send your message as a String. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send ema

Re: [google-appengine] Re: help me - channel api

2010-11-15 Thread Jin Tie
Thanks alot On Sun, Nov 14, 2010 at 10:15 PM, Jonas Gehring wrote: > This error comes when the gwt didn't compile the type. Try to add > these method in the Service-Class: > com.example.chat.shared.Message > compileMessage(com.example.chat.shared.Message x); > > In the ServiceImpl-Class, just re

[google-appengine] Re: help me - channel api

2010-11-14 Thread Jonas Gehring
This error comes when the gwt didn't compile the type. Try to add these method in the Service-Class: com.example.chat.shared.Message compileMessage(com.example.chat.shared.Message x); In the ServiceImpl-Class, just return null in the compileMessage method. On 11 Nov., 19:36, Jin Tie wrote: > Hel

[google-appengine] Re: Help me to remove some indexes

2010-06-11 Thread Prawyn
Thanks For your Reply. App id ==> os247test App id ==> os-247. Thanks for your help again. On Jun 10, 11:59 pm, "Ikai L (Google)" wrote: > What's your application ID? > > > > > > On Tue, Jun 8, 2010 at 10:26 PM, Prawyn wrote: > > Hi, > > I have 17 unwanted indexes in my application. > > They

[google-appengine] Re: Help me to test my free app

2010-03-17 Thread lms4milano
Only three users have put a test message... :-( http://lms4milano.appspot.com/latest_messages On Mar 14, 1:28 pm, lms4milano wrote: > Hi All, > can you help me to test my free app, please? > > 1) open this pagehttp://lms4milano.appspot.com > 2) see last messages > 3) sign-in > 4) post your messag

[google-appengine] Re: HELP ME PLZ!!!

2009-10-07 Thread Rodrigo Moraes
On Wed, Oct 7, 2009 at 5:34 AM, Snail wrote: > I input my mobile number and press "send" button, and later I received > a verification code, but google said it's a wrong verification code, > I'm sure there's no mistakes in the code. Now google says I have > applied to many times for verification c

[google-appengine] Re: help me with my little JDO object child relationship

2009-09-27 Thread Prashant
i just found out that child objects are not getting fetched with getObjectById method too. it just worked for objects saved by the same PersistenceManager instance On Sun, Sep 27, 2009 at 11:49 AM, Prashant wrote: > Hi, > > I wrote an JDO object child relationship (code given below) where I

[google-appengine] Re: Help me, I have problem to receive sms, when signup for an App Engine account

2009-06-24 Thread Nick Johnson (Google)
Hi saltfactory, I've manually activated your account. -Nick Johnson On Tue, Jun 23, 2009 at 5:33 AM, saltfactory wrote: > > I'm student and live in the South of the Korea, > I want to learning and developing app on google app engine. > so, I signed up app engine account, but I had a problem th

[google-appengine] Re: help me about Django' url setting!!!!!!!

2009-03-15 Thread gxtiou
thx it work! On Mar 15, 5:43 am, cz wrote: > see:http://docs.djangoproject.com/en/dev/ref/middleware/#module-django.mi...http://www.djangosnippets.org/snippets/601/ > > in your settings.py: > APPEND_SLASH = False > > On Mar 14, 5:01 am, gxtiou wrote: > > > i don't  want it to redirect to: "http

[google-appengine] Re: help me about Django' url setting!!!!!!!

2009-03-14 Thread cz
see: http://docs.djangoproject.com/en/dev/ref/middleware/#module-django.middleware.common http://www.djangosnippets.org/snippets/601/ in your settings.py: APPEND_SLASH = False On Mar 14, 5:01 am, gxtiou wrote: > i don't  want it to redirect to: "http://www.abc.com/login/"; added > "/"  in > the

[google-appengine] Re: help me about Django' url setting!!!!!!!

2009-03-14 Thread gxtiou
i don't want it to redirect to: "http://www.abc.com/login/"; added "/" in the end. --~--~-~--~~~---~--~~ 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@goo

[google-appengine] Re: help me to know about file system virtualization

2009-01-14 Thread watchingthecrash
Your're kidding right? On Jan 9, 10:40 am, flower wrote: > we are doing project in file system virtualization... but we dont have > clear idea about the same.we  are going to implement this in linux > environment  as well as we planned to use the cluster of servers.if > you have any idea  regard

[google-appengine] Re: Help me

2008-11-03 Thread Andy Freeman
On Nov 3, 8:45 am, yogesh kadvekar <[EMAIL PROTECTED]> wrote: > i installed paython26 and sdk The sdk specifically states that it works with 2.5, not 2.6. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: Help me

2008-11-03 Thread pr3d4t0r
On Nov 3, 8:45 am, yogesh kadvekar <[EMAIL PROTECTED]> wrote: > i installed paython26 and sdk > > but im not able to run Hello, World! > > is there anybody to help me .. > > even myhttp://localhost:8080/ > wht configuration changes i need to do > >  i m using windows xp Howdy -- please check your

[google-appengine] Re: help me in coding

2008-09-05 Thread David Symonds
On Fri, Sep 5, 2008 at 9:20 PM, amshuhu <[EMAIL PROTECTED]> wrote: > now i need to add a admin control ,when users sumit the data the admin > only can view the data ,other users should not view the page and > please inform me wat are the handlers need to add in app.yaml ,please > help me any one

[google-appengine] Re: help me in coding

2008-09-05 Thread jai kumar
could u please tell me in which line i want to insert the command is_current_user_admin() and please inform me whether i want to insert any import file in the top and any handlers in app.yaml --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] Re: help me in coding

2008-09-05 Thread Sylvain
http://code.google.com/appengine/docs/users/functions.html With this ? is_current_user_admin() Returns True if the current user is signed in and is currently registered as an administrator of this application. On 5 sep, 13:20, amshuhu <[EMAIL PROTECTED]> wrote: > here is my sample coding ,i sim