[google-appengine] Re: How to persist (PHP) sessions beyond shared memcache?

2016-02-01 Thread Stuart Langley
Writes using the GCS wrapper are most certainly blocking, and as they use URLFetch as the underlying transport then stream_set_blocking has no effect. On Tuesday, 2 February 2016 08:24:55 UTC+11, Adam (Cloud Platform Support) wrote: > > Writes using the GCS stream wrapper should be non-blocking

[google-appengine] Re: ImageMagick PHP errors

2015-12-23 Thread Stuart Langley
Change your php.ini to use php_imagick.dll instead of imagick.so. In the dev environment the name matters (dll for windows). In production the name does not matter (either dll or so will work), so you don't need to alter the ini file before deploying to production. On Thursday, 24 December

[google-appengine] Re: What is the state of GAE php?

2015-09-29 Thread Stuart Langley
As mentioned above, PHP on GAE just went to general availablility, and there are definetly no plans to turn down this service. Currently, we do all our development inside of Google and not in github. The two major peices we work on are a) The PHP SDK which is released as part of the general

[google-appengine] Re: Facebook login using curl on app engine not creating a facebook session

2015-09-07 Thread Stuart Langley
I copied the facebook example code from here and it works right out of the box. You can see the test site here . Looking at your SO post your app.yaml does not appear to

[google-appengine] Re: Facebook login using curl on app engine not creating a facebook session

2015-09-07 Thread Stuart Langley
am using the development > environment but I cannot push the code live right now so I cant test my > code there. > > On Monday, 7 September 2015 20:58:25 UTC-4, Stuart Langley wrote: >> >> I copied the facebook example code from here >> <https://developers.facebook.com/d

[google-appengine] Re: Facebook login using curl on app engine not creating a facebook session

2015-09-07 Thread Stuart Langley
Forgot to mention, you'll need to edit defines.php to add your app_id and secret. On Tuesday, 8 September 2015 11:49:14 UTC+10, Stuart Langley wrote: > > Code is here: > https://storage.googleapis.com/gae-php-tips-blog/facebook_login.zip > > On Tuesday, 8 September 2015 11:14:37

[google-appengine] Re: PHP - cURL and stream wrappers unable to fetch HTTPS

2015-07-27 Thread Stuart Langley
The ca bundle is located at /etc/ca-certificates.crt. Where does guzzle expect it to be? On Monday, 27 July 2015 12:55:42 UTC-7, Omega wrote: I'm currently encountering an issue when using the Guzzle https://github.com/guzzle/guzzle (version = 4) library on google app engine. It appears

[google-appengine] Re: Will AppEngine autoscale if current instance(s) don't have enough memory?

2015-07-22 Thread Stuart Langley
any tips on determining this! (e.g. also for using VFS etc.) Many thanks On Wednesday, July 22, 2015 at 2:27:33 AM UTC+1, Stuart Langley wrote: How many users could a single instance handle concurrently before it runs out of memory now? If you know deterministically how much memory

[google-appengine] Re: Will AppEngine autoscale if current instance(s) don't have enough memory?

2015-07-21 Thread Stuart Langley
How many users could a single instance handle concurrently before it runs out of memory now? If you know deterministically how much memory a user request will require you can implement some logic in your app to slow/pause the request processing in the instance when it is close to running out

[google-appengine] Re: PHP script can't read file from vfs:// (in memory file system) created by my other PHP script

2015-07-09 Thread Stuart Langley
:// or vfs:// access? So if I create the multipart form manually I could get around that - can you give any tips or pointers how I'd get started with doing that please, not quite sure where to start! Many thanks, Alex On Tuesday, July 7, 2015 at 2:39:04 AM UTC+1, Stuart Langley wrote: Hi

[google-appengine] Re: PHP script can't read file from vfs:// (in memory file system) created by my other PHP script

2015-07-06 Thread Stuart Langley
:23:35 PM UTC+1, Stuart Langley wrote: Files that you write to vfs are removed at the end of the request. If you need the files to persist between requests you'll need to write or move the files from vfs to gs. On Sunday, 5 July 2015 04:04:11 UTC+10, Alex Kerr wrote: Hi, I've got my main

[google-appengine] Re: PHP script can't read file from vfs:// (in memory file system) created by my other PHP script

2015-07-05 Thread Stuart Langley
Files that you write to vfs are removed at the end of the request. If you need the files to persist between requests you'll need to write or move the files from vfs to gs. On Sunday, 5 July 2015 04:04:11 UTC+10, Alex Kerr wrote: Hi, I've got my main PHP script writing an image file out to

[google-appengine] Re: Best solution / practice for temp files with App Engine PHP?

2015-06-18 Thread Stuart Langley
). Or do any buckets under a project count for the 5 GB free? On Thursday, June 18, 2015 at 10:27:43 PM UTC+1, Stuart Langley wrote: Cloud storage read-after-write is strongly consistent so the file would be available immediately after it is written: https://cloud.google.com/storage/docs

[google-appengine] Re: Best solution / practice for temp files with App Engine PHP?

2015-06-18 Thread Stuart Langley
happen to know anything about those? Many thanks, Alex On Wednesday, June 17, 2015 at 10:36:58 PM UTC+1, Stuart Langley wrote: If you're doing images a few hundred K in size I seriously doubt you'll hit memory limits using vfs:// - I'd start there. On Thursday, 18 June 2015 03:17:58 UTC+10

Re: [google-appengine] Re: Serving images

2015-06-17 Thread Stuart Langley
You need to use App Engine to use that class - there is no similar service available on compute eng On Wednesday, 17 June 2015 22:08:01 UTC+10, mohamed hassan wrote: Salutations Stuart Langley, Thanks for reply . What do you mean exactly ? can not i use CloudStorageTools on compute engine

[google-appengine] Re: Best solution / practice for temp files with App Engine PHP?

2015-06-17 Thread Stuart Langley
, 2015 at 11:22:13 PM UTC+1, Stuart Langley wrote: Have you tried using tempnam http://php.net/manual/en/function.tempnam.php? If so, what problems did you see? That seems to be the obvious solution. On Sunday, 14 June 2015 05:11:03 UTC+10, Alex Kerr wrote: Hi, What's generally accepted

Re: [google-appengine] Re: Serving images

2015-06-16 Thread Stuart Langley
FWIW CloudStorageTools only works on App Engine, not compute engine. On Tuesday, 16 June 2015 22:43:12 UTC+10, mohamed hassan wrote: Really thanks for quick reply . What i need is to use image resizing and cropping which exist in CloudStorageTools class which exist in Google PHP SDK i need

[google-appengine] Re: Google App Engine SDK version 1.9.22 released

2015-06-14 Thread Stuart Langley
the Curllite feature in PHP Appengine to connect to Facebook's API and it wasn't working because of just this issue! (according to something I read by Stuart Langley of Google) Thanks On Thursday, June 11, 2015 at 2:04:58 AM UTC+1, Sarah Murphy wrote: Heya heya! With fanfare we

[google-appengine] Re: Best solution / practice for temp files with App Engine PHP?

2015-06-14 Thread Stuart Langley
Have you tried using tempnam http://php.net/manual/en/function.tempnam.php? If so, what problems did you see? That seems to be the obvious solution. On Sunday, 14 June 2015 05:11:03 UTC+10, Alex Kerr wrote: Hi, What's generally accepted wisdom/tech solution for temp files on GAE using PHP,

[google-appengine] Re: Unused Google App costs skyrocket ! Please Help

2015-06-11 Thread Stuart Langley
Your app has a mapreduce that is running every day, that is using your quota and costing you money. It looks like it is started by a cron job. If the app is not used then disabling it will prevent the map reduce from running, although you will still incur a small charge each day for the

[google-appengine] Re: Urgent caching issues

2015-03-27 Thread Stuart Langley
Do you have a simple repro? If not, what's the app_id and what's the URL that you expect these headers to be present on? On Saturday, 28 March 2015 00:21:54 UTC+11, Paul Canning wrote: I am getting serious caching issues with GAE PHP that I need to resolve. I have set headers in the PHP

[google-appengine] Re: Google Cloud Storage caching files despite disabling cache

2015-03-21 Thread Stuart Langley
As Mars mentioned, enable_cache has nothing to do with the Cache-Control headers that are used when serving objects from Google Cloud Storage. If controls the read-through cache that is used internally inside of app engine. On Saturday, 21 March 2015 14:41:57 UTC-7, Paul Canning wrote: Again

[google-appengine] Re: Curl Lite in PHP doesn't work.

2015-03-15 Thread Stuart Langley
You can use the full curl extension https://cloud.google.com/appengine/docs/php/#dynamically_loadable_extensions if you wish. We don't claim curl_lite to be a full implementation of cURL, which you have available by simply adding the extension in your php.ini file. It's designed for

[google-appengine] Re: PHP GAE exit beta?

2015-03-10 Thread Stuart Langley
are bugs and the absence of a SLA. What about performances and scalability? They are the same of Java and Python or are there any limits for PHP at this stage? Il giorno martedì 10 marzo 2015 06:54:38 UTC+1, Stuart Langley ha scritto: Sorry for the delay in responding. We are working very

[google-appengine] Re: PHP GAE exit beta?

2015-03-09 Thread Stuart Langley
Sorry for the delay in responding. We are working very hard to exit BETA and move the PHP runtime to being Generally Available (GA) as soon as possible. We've recently released the PHP 5.5 runtime and a number of our most requested features (for example cURL, direct uploads and temporary

Re: [google-appengine] Re: GAE team - Urgent - Quota not getting reset for billing enabled app

2015-02-26 Thread Stuart Langley
reflecting in database viewer. But the quota details on dashboard is not reflecting the updated size on 'datastore stored data'. On Wed, Feb 25, 2015 at 2:43 PM, Stuart Langley slan...@google.com javascript: wrote: Why do you expect that quota to be reset? The amount of data that you

Re: [google-appengine] Re: GAE team - Urgent - Quota not getting reset for billing enabled app

2015-02-25 Thread Stuart Langley
Why do you expect that quota to be reset? The amount of data that you have in datastore does not go back to zero at midnight. To make the amount of data stored in datastore go down you'll need to delete some of the data. On Wednesday, 25 February 2015 19:42:39 UTC+11, Deepak Singh wrote:

[google-appengine] Re: PHP Issues / No Errors in Logs

2015-02-24 Thread Stuart Langley
Anthony - what's the app_id? On Tuesday, 24 February 2015 22:15:43 UTC+11, Anthony Shapley wrote: Hi, Has the PHP version of App Engine changed? Or some functionality been removed. All of a sudden this morning, a lot of my WordPress site has become non-functional - the homepage stopped

[google-appengine] Re: Problems With PHP App Engine Project Reading From gs://

2015-02-21 Thread Stuart Langley
Do you think you're app might be experiencing this - https://code.google.com/p/googleappengine/issues/detail?id=11695 ? On Saturday, 21 February 2015 14:23:56 UTC+11, Greg Priday wrote: My app (siteorigin-updates) has been experiencing quite a few problems over the last few days. As far as I

[google-appengine] Re: Flooded with traffic, and it appears to be local IP addresses... ?

2015-02-02 Thread Stuart Langley
Without the app_id it's hard to take a peek at the logs and try and deduce what it might be. On Tuesday, 3 February 2015 07:05:04 UTC+11, Clark Van Oyen wrote: Hi everyone. I'm stumped by something I'm seeing happen to my app on Google App Engine - tried asking on Stack Overflow with the

[google-appengine] Re: X-Appengine- flags aren't functioning

2014-12-26 Thread Stuart Langley
No they still work (or should). See the bottom of http://php-minishell.appspot.com/phpinfo for example ($_SERVER[HTTP_X_APPENGINE_CITY]) etc. On Thursday, 25 December 2014 07:05:39 UTC+11, Kaan Soral wrote: I depend on the X-Appengine- header flags to initialize a user's initial location,

[google-appengine] Re: GAE application dashboard not visible

2014-11-26 Thread Stuart Langley
You're probably not logged in with the same account you created the project with. The accounts for the project certainly do not match the account you used to post this message to the forum. On Wednesday, 26 November 2014 18:16:40 UTC+11, Magesh M wrote: If the project id and its details are

[google-appengine] Re: 1.9.17 PreRelease SDKs - PHP 5.5 support

2014-11-16 Thread Stuart Langley
the possible problem? I found GAE support team does not accept email/phone right now, so i come here for help. Thanks, Guo Gang On Saturday, November 15, 2014 1:19:22 PM UTC+8, Stuart Langley wrote: Hello Everyone, If you don't have an application that uses the PHP runtime, you can stop

[google-appengine] 1.9.17 PreRelease SDKs - PHP 5.5 support

2014-11-14 Thread Stuart Langley
Hello Everyone, If you don't have an application that uses the PHP runtime, you can stop reading now. In the next App Engine release we intend on switching the PHP interpreter from version 5.4 to version 5.5. There is a *small* list of backwards incompatible

Re: [google-appengine] Re: One senses GAE is just not a major priority for Google

2014-11-11 Thread Stuart Langley
What have you got against PHP bro? ;) On Wednesday, 12 November 2014 06:18:06 UTC+11, pdknsk wrote: Completely agree on the issue tracker. There are many relatively low hanging fruit bugs which have been neglected for years. I guess partly because Google went after the most starred bug:

[google-appengine] Re: Legal Doesn't seem to respond

2014-06-02 Thread Stuart Langley
https://support.google.com/legal/troubleshooter/1114905?hl=en#ts=1115658 ? On Sunday, 1 June 2014 12:03:54 UTC+10, Brandon Wirtz wrote: Notices sent to legal-...@google.com javascript: don’t seem to get a response. Who do I send TakeDown’s to for unlicensed software violations on

[google-appengine] Re: APC is disabled

2014-03-31 Thread Stuart Langley
There is a bug in the 1.9.1 release that disables APC - It will be fixed in the 1.9.2 release. On Tuesday, 1 April 2014 07:18:53 UTC+11, Mars Lan wrote: Are you seeing this in production or local development server? On Thursday, March 27, 2014 9:31:44 PM UTC-7, bangla...@gmail.com wrote: I

Re: [google-appengine] Re: 1.8.8 Pre-Release SDKs are now available.

2014-03-01 Thread Stuart Langley
SoapClient running here - http://soaptest.php-minishell.appspot.com/ Here's the code: ?php libxml_disable_entity_loader(false); $client = new SoapClient( 'http://www.soapclient.com/xml/SoapResponder.wsdl', ['connection_timeout' = 30]); echo 'PRE'; print_r($client-__getFunctions()).

[google-appengine] Re: PHP Runtime: Image upload stopped working

2014-01-31 Thread Stuart Langley
Preferably you don't push the SDK with your app - we host the SDK in production and make sure it's working. On Saturday, 1 February 2014 17:54:29 UTC+11, Rodrigo Silveira wrote: So I updated the SDK on my local box. The local application continues to work... but now the live app is working.

Re: [google-appengine] Is there a NoSQL equivalent for PHP in Google App Engine?

2014-01-24 Thread Stuart Langley
http://gae-php-tips.appspot.com/2013/12/23/getting-started-with-the-cloud-datastore-on-php-app-engine/ http://gae-php-tips.appspot.com/2013/12/24/getting-started-with-the-cloud-datastore-on-php-app-engine-part-ii/ On Saturday, 25 January 2014 07:38:03 UTC+11, Alejandro Gonzalez wrote: Hi

[google-appengine] Re: Cloud SQL goes to dormant (asleep)

2013-12-12 Thread Stuart Langley
CloudSQL will shutdown the instance if it's not in use to save you money. Yes there is some overhead in restarting the instance next time you want to access it. If you're not concerned at the cost, then probably having a cron job in your app that access the database every 10 minutes or so

[google-appengine] Re: Future of BlobStore and the FileService API

2013-09-10 Thread Stuart Langley
Alexander, Did you create you buckets in Europe as well? Thx On Monday, 9 September 2013 23:58:45 UTC+10, Alexander Bertram wrote: Hi there, We use the BlobStore extensively to store application-created data, using the FileService API. I understand that the FileService API is going to be

[google-appengine] Re: What is the recomended way of using the ImageService with the FileService deprecation

2013-08-26 Thread Stuart Langley
All of the image service APIs work with images stored in GCS already. Just create a blob key for the GCS file and then feed that blob key to the images API. On Monday, 26 August 2013 17:17:43 UTC+10, Nick wrote: The ImageService sits on top of the FileService. With recent changes to move

[google-appengine] Re: What is the best way to serve a GCS file? - Are blob_key's for gcs items safe or not?

2013-08-19 Thread Stuart Langley
How are they unsafe? You can store the GCS blob_keys for as long as you want - they never expire. On Tuesday, 20 August 2013 09:57:23 UTC+10, Kaan Soral wrote: I think this is a really serious issue, left unexplained

[google-appengine] Re: How is it possible to get access to contacts?

2013-08-14 Thread Stuart Langley
there's a sample for using contacts in the examples folder, did you look at it? google_api_php_client/examples/contacts/simple.php There's info on setting up the client at https://gaeforphp-blog.appspot.com/2013/08/06/using-the-google-apis-client-library-for-php-with-app-engine/ On

[google-appengine] Re: How to know region of a GAE application ?

2013-08-05 Thread Stuart Langley
If you go to appspot.com it will list your apps. There is a column for location which is either US or EU. On Monday, 5 August 2013 04:20:23 UTC+10, Jean-Paul Leclère wrote: I'am setting a gae wordpress application. When I set my gae php application as an authorized application to access my

[google-appengine] Re: Enable PHP applications to be deployed to App Engine

2013-08-02 Thread Stuart Langley
send me the e-mail address you registered for whitelisting and i'll take a look. On Wednesday, 31 July 2013 20:41:25 UTC+10, Pravin Gadekar wrote: I want to deploy wordpress site on google apps. I have followed every steps in https://developers.google.com/appengine/articles/wordpress. And

[google-appengine] Re: Capabilities API for PHP

2013-07-23 Thread Stuart Langley
As PHP only runs on the HRD datastore, you don't need to worry about the datastore being flipped into read only, which is really the only purpose of the capabilities API these days. Proceed on without worrying about it. On Tuesday, 23 July 2013 16:47:58 UTC-7, Jeffery Fernandez wrote: Hi

Re: [google-appengine] Time to whitelist?

2013-06-11 Thread Stuart Langley
The whitelisting process is not a FIFO queue - when whitelisting we try and get a diverse set of applications, to help quickly uncover missing features, bugs etc. If your application has little associative description, or is the same as the 500 applications before yours then it's not going to

Re: [google-appengine] Re: 1.8.1 Pre-release SDKs Available.

2013-06-07 Thread Stuart Langley
Besides the fact that I do not know what will happen now with the Image APIs that allow you to serve images directly from blobstore. This already exists by creating a blobkey using create_gs_key that you can use in all blobstore APIs (send_blob, get_serving_url, Images API etc).

[google-appengine] Re: How to set deadline for a PHP URL fetch?

2013-06-05 Thread Stuart Langley
Any suggestion? On Jun 4, 5:56 pm, Stuart Langley slang...@google.com wrote: set the timeout value in the http context to the number of seconds you want the deadline to be. On Tuesday, 4 June 2013 12:05:29 UTC+10, 1moretime wrote: Thanks, Dan I read

[google-appengine] Re: How to set deadline for a PHP URL fetch?

2013-06-05 Thread Stuart Langley
: Request deadline exceeded in /base/data/home/apps/.php on line 93 /log Any suggestion? On Jun 4, 5:56 pm, Stuart Langley slang...@google.com wrote: set the timeout value in the http context to the number of seconds you want the deadline

Re: [google-appengine] Time to whitelist?

2013-05-29 Thread Stuart Langley
So there's no set time frame ... generally we're looking for some diversity so we can get some coverage of the runtime. If you're really keen ping me with the app id you registered and I'll take a look at what I can do, no promises however On Thursday, 30 May 2013 02:29:44 UTC+10, barryhunter

Re: [google-appengine] Re: instances dying is a permanent states for datastore apps?

2013-03-14 Thread Stuart Langley
Rafael: Here's the notice: http://googleappengine.blogspot.com.au/2012/04/masterslave-datastore-thanks-for-all.html TOS for deprecation: https://developers.google.com/appengine/terms#Deprecation M/S will be turned off 20th April, 2015. On Thursday, 14 March 2013 15:11:45 UTC+11, Rafael

[google-appengine] Re: Production Performance Degradation GAE/J.... where to get support?

2013-01-30 Thread Stuart Langley
, I guess?), I would have done it already. Wasn't there was a way to do this through the admin page at some point? Thanks. On Tuesday, January 29, 2013 10:16:30 PM UTC-5, Stuart Langley wrote: hard for anybody to take a look for you without the app id On Wednesday, 30 January 2013 01:40:59

[google-appengine] Re: Production Performance Degradation GAE/J.... where to get support?

2013-01-29 Thread Stuart Langley
hard for anybody to take a look for you without the app id On Wednesday, 30 January 2013 01:40:59 UTC+11, Rori Stumpf wrote: Where can I get support for sudden performance degradation? Report it on stackoverflow.com? file a bug? (just kidding) My app was running fine for 65 days - no

[google-appengine] Re: Remote API + File API

2013-01-26 Thread Stuart Langley
Why not just use the Google Cloud Storages APIs then to upload directly to a bucket that you then access from you GAE application? On Sunday, 27 January 2013 01:37:34 UTC+11, Andrew Kunkel wrote: I am really hoping to find an answer for this. I have been searching for the last week without

Re: [google-appengine] Re: Working with images : need help regarding tilling of images

2013-01-24 Thread Stuart Langley
Calling get_serving_url only once per blob is definitely the recommended approach. On Thursday, 24 January 2013 23:53:24 UTC+11, alex wrote: Hey Renzo, there's even a simpler approach: url = images.get_serving_url(instance.blob) resized_64 = url + '=s64' resized_128_crop = url +

[google-appengine] Re: Where do I find the HRD Migration Tool?

2013-01-18 Thread Stuart Langley
How about the View Migration Tool button in the application settings page? On Friday, 18 January 2013 07:59:13 UTC+11, Jim Morgan wrote: First of all, I'm sorry for having to ask this question...I've searched this forum and find a lot of people asking this same question over the past year,

[google-appengine] Re: GAE app with images stored on S3

2012-12-05 Thread Stuart Langley
We tried to cache the URL returned by get_serving_url() but it occurred it expires in a while (may be days or weeks) and there is no clear understanding when exactly and how to invalidate the URLs or HTML of pages we generate cached in DB. These's URLs never 'expire'. Did you file a bug for

[google-appengine] Re: High performance image serving error 500

2012-11-14 Thread Stuart Langley
Looks like files API and nothing to do with image serving to me - correct? On Wednesday, 14 November 2012 07:56:55 UTC+11, Jonathan wrote: Hi, for the last 30 minutes users can't upload pictures to my system ( app.imcreator.com/edit) that's the erroe from the log: ApplicationError: 7

Re: [google-appengine] Re: gae blobstore 502 error

2012-10-04 Thread Stuart Langley
, and all goes good with small files. But, when i try with a big file (1,5G for example) after some minutes throw this error. Im desesperated. thx. El jueves, 4 de octubre de 2012 03:47:02 UTC+2, Stuart Langley escribió: you need to upload to the URL generated by calling

[google-appengine] Re: gae blobstore 502 error

2012-10-03 Thread Stuart Langley
you need to upload to the URL generated by calling blobstore.create_upload_url On Thursday, 4 October 2012 09:25:26 UTC+10, Alejandro J Gómez López wrote: Im'm trying to upload big files to blobstore using curl. Sample: curl -F file=@file.sample http://id.appspot.com/upload_url/ But

Re: [google-appengine] Re: ImagesService.getServingUrl returning old image with Google Cloud Storage

2012-09-19 Thread Stuart Langley
the former, do we still need to submit a feature request? Nick On 19 September 2012 01:24, Stuart Langley slan...@google.comjavascript: wrote: One more thing - Google storage is going to implement notifications when objects change, so we might be able to do step (1) automagically

Re: [google-appengine] Re: ImagesService.getServingUrl returning old image with Google Cloud Storage

2012-09-18 Thread Stuart Langley
.mypanel.eu/projects/372001.jpg I currently use the ID of the datastore object for the GCS name, everytime I upload a new image using this same name the generated serving URL keeps serving the old image. On Monday, September 17, 2012 8:40:43 AM UTC+2, Stuart Langley wrote: What's the image URL

Re: [google-appengine] Re: ImagesService.getServingUrl returning old image with Google Cloud Storage

2012-09-18 Thread Stuart Langley
One more thing - Google storage is going to implement notifications when objects change, so we might be able to do step (1) automagically. Probably a feature request for that might be a good idea if you think it would be useful. On Tuesday, 18 September 2012 08:20:53 UTC-7, Stuart Langley

Re: [google-appengine] Re: ImagesService.getServingUrl returning old image with Google Cloud Storage

2012-09-18 Thread Stuart Langley
possible to transform a GCS path to a BlobKey) On Tuesday, September 18, 2012 5:24:35 PM UTC+2, Stuart Langley wrote: One more thing - Google storage is going to implement notifications when objects change, so we might be able to do step (1) automagically. Probably a feature request

[google-appengine] Re: ImagesService.getServingUrl returning old image with Google Cloud Storage

2012-09-17 Thread Stuart Langley
What's the image URL? On Sunday, 16 September 2012 14:40:35 UTC+2, Tim wrote: Hi, I've just migrated one of our App Engine applications from Blobstore to Google Cloud Storage and am using the ImagesService.getServingUrl to serve images. After uploading a new/changed image using a Google

Re: [google-appengine] Re: image url returned by getServingUrl gives 500 error

2012-09-16 Thread Stuart Langley
this should be working now On Sunday, 16 September 2012 00:43:09 UTC+2, barryhunter wrote: btw here is a hurl permalink http://hurl.it/hurls/232012465c276ee070f25d433d9bfa417d54a375/a5fab29ab28f158ea5491a8745d9391e223cc07e demonstrating the issue. -- You received this message because

[google-appengine] Re: image url returned by getServingUrl gives 500 error

2012-09-15 Thread Stuart Langley
The 1200x image works fine for me - I'm in switzerland. On Saturday, 15 September 2012 12:11:17 UTC+2, Nadir wrote: The problem was reported in UK But i am from Azerbaijan and don't have that problem at all. On Friday, September 14, 2012 9:55:36 PM UTC+5, Stuart Langley wrote: when you

[google-appengine] Re: image url returned by getServingUrl gives 500 error

2012-09-14 Thread Stuart Langley
when you say something location based? - where are your users accessing the URLs from? On Friday, 14 September 2012 15:08:45 UTC+2, Nadir wrote: Hi, i am using imagesService.getServingUrl for serving images from Google Cloud Storage. i call this method once and save the URL for later use.

[google-appengine] Re: Will there be support for WebP 0.2 image format?

2012-09-08 Thread Stuart Langley
It will take one or two releases for us to pick up the latest libraries from the webp team. I don't think there's any way to tell what version of a particular library we're using - you could open a feature request in the image tracker if you think there's a good use case for it. On Saturday,

[google-appengine] Re: 503 Errors uploading multipart/form-data to blobstore handlers on afternoon of 8/29

2012-09-02 Thread Stuart Langley
http://code.google.com/p/googleappengine/issues/detail?id=8042 On Friday, 31 August 2012 03:06:02 UTC+10, Jeff Carollo wrote: Did anyone else see unexpected 503s for their application yesterday? Only 1/2 of my applications were affected. I made no code changes to my site in the last two

[google-appengine] Re: Custom expires/cache-control for get_serving_url images

2012-08-30 Thread Stuart Langley
Not possible to change it, sorry. On Friday, 31 August 2012 08:21:25 UTC+10, Alex Burgel wrote: I've noticed that image urls generated by get_serving_url are set to cache for only 24 hours. Is it possible to change this? 24 hours isn't very long, especially considering that the images

[google-appengine] Re: MAX_BLOB_FETCH_SIZE value

2012-08-29 Thread Stuart Langley
This is the maximum size that can be fetched in a single call using BlobReader (https://developers.google.com/appengine/docs/python/blobstore/blobreaderclass) - The blob size that can be uploaded by users is effectively unlimited. On Thursday, 30 August 2012 05:05:56 UTC+10, Daniel Hans

Re: [google-appengine] Google App Engine, rogue crawlers, and PageSpeed Insights

2012-08-04 Thread Stuart Langley
405 is being returned for these requests anyway. The incoming rate is 1 QPS - beside filling up your logs I'm not sure how, if at all, this is effecting your app. On Friday, 3 August 2012 06:08:21 UTC+10, Kate wrote: How can I block the following curl requests. Not every IP is different and

[google-appengine] Re: Q: Is it possible to use Datastore Admin to copy data between US / EU hosted applications?

2012-07-05 Thread Stuart Langley
Have a look at https://developers.google.com/appengine/docs/adminconsole/datastoreadmin#Backup_And_Restore, especially the part titled 'Restoring Data to Another App' . On Thursday, 5 July 2012 18:13:30 UTC+10, Marcel Manz wrote: I we setup an application in the European Union through a

[google-appengine] Re: Attacked by appid: s~ccdict1 to s~ccdict99

2012-07-01 Thread Stuart Langley
I've forwarded this internally. On Sunday, 1 July 2012 17:12:59 UTC+10, keakon wrote: Can anyone help me? They keep attacking my site for more than 1 day. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the

Re: [google-appengine] Help getting app engine for python to accept images I post from my app

2012-06-29 Thread Stuart Langley
/hellogooglestorage and this https://developers.google.com/storage/docs/hellogooglestorage but was not successful pls help me slangley On Thu, Jun 28, 2012 at 2:31 AM, Stuart Langley slang...@google.comwrote: I understand that On Thursday, 28 June 2012 16:01:56 UTC+10, kc ochibili wrote: I

Re: [google-appengine] Help getting app engine for python to accept images I post from my app

2012-06-28 Thread Stuart Langley
I understand that On Thursday, 28 June 2012 16:01:56 UTC+10, kc ochibili wrote: I am trying to post images from my app that is in development, my goal is to post anonymously to the bucket On Wed, Jun 27, 2012 at 11:25 PM, Stuart Langley slang...@google.comwrote: have you tried to use

Re: [google-appengine] Help getting app engine for python to accept images I post from my app

2012-06-27 Thread Stuart Langley
You've fully read and understand https://developers.google.com/storage/docs/reference-methods#putobject or https://developers.google.com/storage/docs/reference-methods#postobject? On Thursday, 28 June 2012 09:09:11 UTC+10, kc ochibili wrote: I just tried this url

Re: [google-appengine] Help getting app engine for python to accept images I post from my app

2012-06-27 Thread Stuart Langley
it , the bucket i'm trying to post to. the ACL is set to ALLusers and Full Access. Any suggestions on what i am doing wrong? or can i send you the bucket name to see if you could post to it ? On Wednesday, June 27, 2012 7:37:36 PM UTC-5, Stuart Langley wrote: You've fully read and understand

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-21 Thread Stuart Langley
Probably http://code.google.com/p/googleappengine/issues/detail?id=2820 On Thursday, 21 June 2012 19:56:20 UTC+10, Emanuele Ziglioli wrote: Hi everyone, I'm serving a number of text files from the blobstore and while smaller ones are being gzipped by the frontend servers, larger ones are

[google-appengine] Re: Blobstore Stored Data

2012-06-20 Thread Stuart Langley
And the appid is? On Thursday, 21 June 2012 04:21:34 UTC+10, Marcin wrote: I have an odd problem: blobstore stored data increased about 20 times in one day. There were no large file uploads, backups take about 400MB, why am I billed for data that is not in my blobstore? Where did it

[google-appengine] Re: Different behaviour of getUploads() in development and production

2012-05-04 Thread Stuart Langley
http://code.google.com/p/googleappengine/issues/detail?id=4548 On Saturday, 5 May 2012 07:00:23 UTC+10, Arjan Broer wrote: I have created some code to check the submit of a form for uploads. This works very well in my local development instance. But when i run this same code in production

Re: [google-appengine] Re: using google storage via blob store service use up datastore quota?

2012-04-19 Thread Stuart Langley
Those calls should not use the datastore - are you sure it's not being used implicitly somewhere else? On Thursday, 19 April 2012 16:31:00 UTC+10, Mac wrote: Nope, I didn't turn it on, I believe in java it's off by default. On Apr 19, 2012, at 2:27 AM, Simon Knott knott.si...@gmail.com

Re: [google-appengine] Re: using google storage via blob store service use up datastore quota?

2012-04-19 Thread Stuart Langley
at 7:01 AM, Stuart Langley slang...@google.com wrote: Those calls should not use the datastore - are you sure it's not being used implicitly somewhere else? On Thursday, 19 April 2012 16:31:00 UTC+10, Mac wrote: Nope, I didn't turn it on, I believe in java it's off by default

[google-appengine] Re: Generic error with get_serving_url

2012-04-04 Thread Stuart Langley
It looks like you're feeding it invalid blobs. E.G the BlobKey 'AMIfv94F_Rj7Y1YEbsOshSaBrSMh90bDaVoFk2K_hx62ycNSgBN6KbqGqncqeNpHtnx6Jq4plXk1voRwmugkj1OSY1NstyCDlWq10civsxLbk5pU4PtWkiK-pLaGTtk9FyY_81AQNGy4p6Hq6RGuK_pwZybqldhyAQ' is a png of size 3 bytes. Why you're not seeing a Not Valid Image

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-20 Thread Stuart Langley
gets lost after FileService fileService = FileServiceFactory.getFileService(); Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Mar 19, 2012 at 10:59 PM, Stuart Langley slang...@google.comwrote: I don't see any errors On Tue, Mar 20, 2012 at 4:46

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-19 Thread Stuart Langley
advise, we are blocked on this now Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Sun, Mar 18, 2012 at 6:04 PM, Stuart Langley slang...@google.comwrote: What do you think is a bug? When using the dev server all of the APIs are simulated on the local

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-19 Thread Stuart Langley
://www.sakshum.org http://blog.sakshum.org On Mon, Mar 19, 2012 at 6:00 PM, Stuart Langley slang...@google.comwrote: what's the app id? On Tue, Mar 20, 2012 at 11:58 AM, Vik vik@gmail.com wrote: Hie I updated the post again. I dont see a stack trace at all. just a java.io.exception. See

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-19 Thread Stuart Langley
is not working: http://code.google.com/status/​appengine/detail/datastore/​2012/03/19#ae-trust-detail-​datastore-put-error_ratehttp://code.google.com/status/appengine/detail/datastore/2012/03/19#ae-trust-detail-datastore-put-error_rate On Tuesday, March 20, 2012 2:06:36 AM UTC+1, Stuart Langley wrote

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-19 Thread Stuart Langley
#ae-trust-detail-​datastore-put-error_ratehttp://code.google.com/status/appengine/detail/datastore/2012/03/19#ae-trust-detail-datastore-put-error_rate On Tuesday, March 20, 2012 2:06:36 AM UTC+1, Stuart Langley wrote: Is this it? 2012-03-17 16:08:46.653 vik.sakshum.sakshumweb.server

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-19 Thread Stuart Langley
://www.sakshum.org http://blog.sakshum.org On Mon, Mar 19, 2012 at 10:29 PM, Stuart Langley slang...@google.comwrote: what's this at line 485? }catch(Exception e){ e.printStackTrace(); log.severe(Exception in finally of execute of getGoogleDoc); log.severe(Exception class

[appengine-java] Re: Google App Engine blobstore uploader and Google storage

2012-03-18 Thread Stuart Langley
I read your post a few times but I'm struggling to understand what it is you're trying to say - can you make it a little clearer what your symptoms are and what you've tried to do to fix it? Thanks On Sunday, 18 March 2012 04:16:45 UTC+11, Christian Goudreau wrote: Hi folks, I'm hitting a

[appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-18 Thread Stuart Langley
I responded to your question in SO On Sunday, 18 March 2012 16:45:38 UTC+11, vikceo wrote: Hie Can someone help on http://stackoverflow.com/questions/9755670/storing-data-to-google-cloud-storage-using-gae-for-java please? Thankx and Regards Vik Founder http://www.sakshum.org

Re: [appengine-java] Re: need help on issue in storing to google storage using java apis

2012-03-18 Thread Stuart Langley
for it? Is it a bug in google app engine or cloud storage apis? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Sun, Mar 18, 2012 at 2:40 PM, Stuart Langley slang...@google.comwrote: I responded to your question in SO On Sunday, 18 March 2012 16:45:38

Re: [google-appengine] Storing from PDF to IMG

2012-03-15 Thread Stuart Langley
http://code.google.com/appengine/docs/python/blobstore/overview.html#Writing_Files_to_the_Blobstore On Friday, 16 March 2012 03:03:21 UTC+11, Max wrote: Where is the file api? Sorry, I can't understand what you refer to. Could you please push me in the right direction? Il giorno giovedì

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Stuart Langley
://youtu.be/AM0ZPO7-lcE in java, to place a response to the pull task queue for the app engine app to consume. Thanks for your help :-) On Thursday, 8 March 2012 22:13:45 UTC, Stuart Langley wrote: Is that the actual code? You need to call createUploadURL for each blob you want to upload

[appengine-java] Re: Uploading Files to Blobstore from external app

2012-03-09 Thread Stuart Langley
yesterday when I click on the blob viewer in the app engine dashboard I get a message Oops! We couldn't retrieve your list of Kinds. I'm not sure if these issues are related? Thanks for your help Killian On Friday, 9 March 2012 11:04:30 UTC, Stuart Langley wrote: You said the blob ends up

  1   2   >