hypertextranch
Forum Replies Created
-
Glad to hear it worked, I’ve also updated the readme to make the options a bit clearer.
Howdy, thanks for the report, tracking as an enhancement request here:
https://github.com/xyu/secure-db-connection/issues/4Forum: Plugins
In reply to: [Secure DB Connection] Fatal Error During ActivationMarking this as resolved, plugin has been updated to v1.1.3 with this fix.
Forum: Plugins
In reply to: [Secure DB Connection] Fatal Error During ActivationHi @bstump, thanks for pointing this out, I have pushed a fix based on your comments:
https://plugins.trac.www.ads-software.com/changeset/1754880/
- This reply was modified 7 years ago by hypertextranch.
@asilentthing That is quite odd, I don’t see anything obviously wrong with either this site in our Elasticsearch cluster nor anything that would be a problem given the pastebin contents. Do you happen to have any filters in place to customize related posts as detailed here?
https://jetpack.com/support/related-posts/customize-related-posts/
Also it could really help us debug the issue if we are able to capture the full request and response to the WPCOM servers for related post queries so can you capture both the
$body
and$response
vars here using something likefile_put_contents()
orerror_log()
?Thanks!
To get plugins and themes working you will need to add them to your git repo and push it to Heroku to deploy. Heroku dynos (which runs your “slug”, the deployed files) use an ephemeral storage layer meaning every time they restart (semi-random) everything aside from what’s committed into git is wiped away. It’s best to turn off file modifications from within WP itself as any customization you make installing plugins via WP admin or modifying CSS files will get wiped away as soon as you deploy or if your dyno happens to be moved around.
For other good practices check out a template I made for running WP on Heroku on GitHub:
https://github.com/xyu/heroku-wp
Which is also what I’m using for my blog where I sometimes write about all this as well:
- This reply was modified 7 years, 8 months ago by hypertextranch.
Howdy bartmoss,
We actually try and extract the YouTube link and grab the poster using
Jetpack_Media_Summary()
for display. It appears however that is failing for some of your posts. Can you provide us with the raw text for the Space Engineers #0: Prelude post so that I can try and replicate that problem?Thanks!