slangley
Forum Replies Created
-
Forum: Plugins
In reply to: [Google App Engine for WordPress] Error when activatedThe plug in only works on Google App Engine, either the development or production environments.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Uploading media from the frontendThe user authentication is based on your WP settings – not app engine settings.
What’s the app id for your application?
login:required should be doing this for you.
What’s the app id for you application?
We’ve add a per request stat cache for GCS objects that will should resolve this. This will roll out in the 1.9.19 release of app engine.
PHP does include a limited stat cache for when stating objects using stream wrappers, but it only remembers the last item stat’d. In this case as WP decides to stat different objects in a loop that cache is useless.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Uploading media from the frontendHave you installed and enabled the plugin?
Forum: Plugins
In reply to: [Google App Engine for WordPress] Memcache Plugin – 404?Try http://wordpress.org/extend/plugins/memcached/
I’ll update the docs.
Generally speaking plugins that use the proper WordPress APIs should have a good chance of working out of the box, however some plugins bypass these and use things like cURL directly.
Do you have any particular plug ins in mind which don’t appear to work?
Forum: Plugins
In reply to: [Google App Engine for WordPress] Importer failsObvious question I know, but are you using the imported that is included in the app engine plugin?
I’ll submit a pull request to WordPress core for the fix.
So it turns out this is because wordpress calls getimagesize() on the uploaded video files, which causes the upload handler to timeout (look in your request logs for failed called to async-upload.php).
For now to fix it you’ll need to patch wordpress core:
in the file wordpress/wp-admin/includes/media.php, around line 321 replace
} elseif ( $image_meta = @wp_read_image_metadata( $file ) ) {
with
} else if (preg_match( ‘#^video#’, $type )){
} else if ( $image_meta = @wp_read_image_metadata( $file ) ) {
Forum: Plugins
In reply to: [Google App Engine for WordPress] Fails to install on WP 3.9What version of the SDK are you using? Looks like you don’t have a version of the SDK that supports autoloading.
Forum: Plugins
In reply to: [Google App Engine for WordPress] displaying errors causes problems for mediaI wasn’t able to repro this using the latest version of the plugin – can you confirm that this still occurs?
Forum: Plugins
In reply to: [Google App Engine for WordPress] Featured Image Being CroppedCan you provide some details on how I can reproduce this problem? A theme or a plugin that I can test with?
Thanks.
You’re better off asking this question on stackoverflow using the tags [google-app-engine] and [php].
Resolving as this is not a plugin issue.