Bradford Campeau-Laurion
Forum Replies Created
-
Forum: Plugins
In reply to: [Publish To Apple News] Publish does nothing?It just looks like you opened the pull request against the beezwax repo and not alleyinteractive. There’s a dropdown to set your base fork when you open the pull request. Just change it to alleyinteractive/apple-news instead and you’ll be all set.
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] Publish does nothing?Rather than paste all this code here, can you propose it as a pull request to the plugin? It’s open source of course:
https://github.com/alleyinteractive/apple-news
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] White Page of DeathClosing this as a duplicate.
Forum: Plugins
In reply to: [Publish To Apple News] API issue or my formatting?This looks related to this issue, which should have been resolved: https://github.com/alleyinteractive/apple-news/issues/205
This will require some further investigation. We’ll probably look into it as part of this issue which is on our roadmap for an upcoming release: https://github.com/alleyinteractive/apple-news/issues/212
Forum: Plugins
In reply to: [Publish To Apple News] API issue or my formatting?Please paste the JSON as
code. To do so, select all of the JSON text and then click thecodebutton above the editor.Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] Images didn’t appear in published postYes, we understand what srcsets are used for and why they’re important. However, we need to prioritize this against a larger list of requested features and bug fixes. I can’t guarantee a timeframe for resolution but you can track it here: https://github.com/alleyinteractive/apple-news/issues/236
Forum: Plugins
In reply to: [Publish To Apple News] Fatal Error When Activating PluginThat seems unlikely because this is the line of code you’re getting an error on:
$settings = new Apple_Exporter\Settings;That is using PHP namespaces which are supported in PHP 5.3 and up. So either that’s not the right version or your web host is misleading you. Please follow up with them again on this subject.
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] Fatal Error When Activating PluginThe plugin docs clearly state that PHP 5.3.6 is the minimum supported version. Support for PHP 5.2 in general ended almost six years ago so you should probably ask your web host to upgrade.
Unfortunately there’s nothing we can do for you.
Forum: Plugins
In reply to: [Publish To Apple News] Images didn’t appear in published postI think you may have identified a bug with srcset support. Can you try adding image(s) to your post without a srcset as a test and see if that works?
If so, we’ll log a bug to fix in a future version.
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] Fatal Error When Activating PluginWhat PHP version are you running? If you don’t know the answer to this question, please check with your web host.
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] An error with the APIUnfortunately it looks like something is removing the domain from your image URLs. This isn’t something that the plugin does and is highly unusual.
For instance, one of your image URLs is coming through as:
/wp-content/uploads/2016/10/Edgeof17_rgb.jpgWhereas it should be:
http://yourdomain-or-yourcdndomain.com/wp-content/uploads/2016/10/Edgeof17_rgb.jpgEither a plugin, your theme or something on your web host is removing the domain before it reaches the plugin. Unfortunately we can’t help troubleshoot this any further since it’s beyond the scope of the plugin but I can recommend some steps to try:
- Disable all plugins and see if that fixes it. If it does, reenable them one by one until you isolate the offender
- If that doesn’t work, disable your theme and switch to something generic like Twenty Sixteen to see if that resolves it
- If neither work, contact your web host
- Try bundled image (i.e. set Use Remote Images to No) but this may fail for certain articles if they have lots of images. Many web hosts time out using this setting which is why we prefer remote images.
Thanks.
- This reply was modified 9 years, 7 months ago by Bradford Campeau-Laurion.
Forum: Plugins
In reply to: [Publish To Apple News] An error with the APICan you check your Apple News plugin settings and confirm the setting you’re using for “Use Remote Images?”
After viewing your JSON, I’m actually not sure what the issue is. Can you please provide a screenshot of what you consider “broken” and what you consider “working”?
Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] An error with the APICan you please paste that JSON as
codeas I had requested?After you paste it, select all of the text and click the
codebutton above the editor.Thanks.
Forum: Plugins
In reply to: [Publish To Apple News] An error with the APIClick on the menu item labeled “Apple News” in your WordPress dashboard. You’ll see all the posts you’ve published to Apple News. Find that post, mouse over the row, and you’ll see an action for “Download”. That will give you the JSON file.
Open it in any text editor and copy/paste it here as
code