[google-appengine] Re: Announcing PHP 5.5 with improved performance, ImageMagick and cURL support

2015-05-11 Thread Gayan Pathirage
I still get this error when I try to update my app.

appcfg.py: error: Error parsing app\app.yaml: Unable to assign value 
'php55' to
attribute 'runtime':
Value 'php55' for runtime does not match expression 
'^(?:contrib-dart|dart|go|ph
p|python|python27|java|java7|vm|custom)$'
  in "app\app.yaml", line 4, column 10.

I'm using 1.9.18 AppEngine and command line appcfg.py update my_app

On Thursday, February 26, 2015 at 9:41:04 AM UTC+5:30, Josselin Cornou 
wrote:
>
> Dear App Engine developers,
>
> You are receiving this important update because you are an owner or 
> developer of an App Engine project that uses PHP.
>
> In response to developer feedback, we have introduced a significant 
> upgrade of PHP in the latest release of App Engine 
> 
>  
> with more features and improved performance.
>
> The updates include:
>
>
>- 
>
>Support for the PHP 5.5 runtime, alongside the current PHP 5.4 runtime.
>- 
>
>The cURL extension is now available, meaning curl_*() functions can 
>now be used from within your application (read more about how to enable 
>cURL support in our documentation 
>
> 
>).
>- 
>
>The tempnam() and sys_get_temp_dir() functions are now available 
>
> 
>.
>- 
>
>Support for direct file uploads.
>- 
>
>Support for concurrent requests 
>
> ,
>  
>which allows the PHP interpreter to run an efficient multi-threaded mode 
>when serving HTTP requests. This must be enabled in your app.yaml file.
>- 
>
>Support for the ImageMagick extension (which allows powerful image 
>manipulation) and MongoDB extension (which allows you to connect to an 
>existing MongoDB installation). 
>
>
> While we expect most users will enjoy the benefits of this upgrade without 
> any problems, in some cases it may cause unexpected behavior in running 
> applications. We are providing an 8 week window (starting today) for 
> developers to self-upgrade and test their applications with this new 
> functionality before we upgrade all applications automatically, starting 
> after 16th April, 2015. 
>
> To take advantage of these new features, find your ‘app.yaml’ file and 
> change the line that reads
>
> runtime: php
>
> to
>
> runtime: php55
>
> The new functionality will automatically be enabled in the local 
> development server, and in production once your application is deployed. 
> You will be able to switch back to the old runtime at any time for the next 
> two months by reverting the configuration in your app.yaml file. Some 
> features such as cURL support 
>  
> may require additional configuration in order to be enabled.
>
> After 16th April, 2015 we will begin automatically migrating all 
> applications to the php55 runtime. 
>
> If you are experiencing difficulties in migrating your application, you 
> can find help on the Google App Engine Stack Overflow Tag 
> , or if you 
> have a support package you may open a support ticket 
> . If you’ve found an an issue with App 
> Engine itself you may also file a bug 
>  on our public 
> issue tracker.
>
> We hope you enjoy these latest improvements to PHP on App Engine. Keep on 
> coding!
>
> - The PHP for App Engine Team
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/44b11ad1-0d18-4fd7-9b20-a66e4e7bcc8c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Where can I set Maximum Daily Budget in the new Google Cloud Console?

2015-05-11 Thread 'Michael Thomsen' via Google App Engine
Just a quick little tip: To share a Developer's Console URL without
including a specific app/project ID, simply replace that part of the URL
with an underscore.
https://console.developers.google.com/project/_/appengine/settings


On Mon, May 11, 2015 at 9:49 AM, 。おにぎり  wrote:

> uh!! I finally found it!!  Thank you Mihail!!
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/23ce92e3-26f9-4dbd-a803-98a7337ceeb1%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAHMoK3Xo2hc_L37Uck%3DSfvpEQDW4%3D%3DFE%2Bq%3DN08HAbJ-ESez%2Bsw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine + Maven + Hot swap of war

2015-05-11 Thread Ludovic Champenois
Hi,

If your pom.xml is configured in the build section like:

  




${project.build.directory}/${project.build.finalName}/WEB-INF/classes



  

.



Then Eclipse, NetBeans and IntelliJ which are all supporting incremental 
compile on a java file Save, or update the static file resources in the 
exploded war directory, will trigger automatically a App Server restart, 
enable hot swap of your application just by saving files in the IDE:

Save and reload the app in the browser... Very effective.

Also documented at:

https://cloud.google.com/appengine/docs/java/tools/maven#app_engine_maven_plugin_goals

(Same feature is available for Managed VMs, and the cloud SDK Maven plugin:

https://cloud.google.com/appengine/docs/java/managed-vms/maven

)

Ludo

On Tuesday, April 28, 2015 at 7:29:59 AM UTC-7, Carl Emmoth wrote:
>
> Hello,
>
> so is it possible to run maven devserver (mvn appengine:devserver) and 
> have live hot swap for any changes in war dir?
>
> Like, if I change index.html with new text and refresh in browser, can it 
> update?
>
> It seems like fullScanSeconds only updates Java classes.
>
> Thanks,
> Carl
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a59b8a0d-0fe8-45c4-ad20-e806f47a2214%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Where can I set Maximum Daily Budget in the new Google Cloud Console?

2015-05-11 Thread 。おにぎり
uh!! I finally found it!!  Thank you Mihail!!

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/23ce92e3-26f9-4dbd-a803-98a7337ceeb1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Where can I set Maximum Daily Budget in the new Google Cloud Console?

2015-05-11 Thread Mihail Russu
Have you 
tried https://console.developers.google.com/project//appengine/settings 
(Dashboard -> Compute -> App Engine -> Settings) where  is the ID 
of your app?

On Monday, May 11, 2015 at 10:49:37 AM UTC+3, 。おにぎり wrote:
>
>
> In the old console, I can set the Maximum Daily Budget like the below.
>
>
> 
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> But in the new console, I cannot find it...
> Maybe "Current blanace" is the one?
>
>
> 
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c0cd81bd-8eb1-4f00-89b4-7f4bc3052e12%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Where can I set Maximum Daily Budget in the new Google Cloud Console?

2015-05-11 Thread 。おにぎり

In the old console, I can set the Maximum Daily Budget like the below.





















But in the new console, I cannot find it...
Maybe "Current blanace" is the one?



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8c8e9c65-ddb5-44bf-91f1-dd2ce4eba536%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.