NextScripts
Forum Replies Created
-
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Array Warning 200Have you tried to re-authorize the plugin?
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Array Warning 200@karpathir your issue is not related to this topic. Please see the answer in the FAQ – #2.26: https://www.nextscripts.com/support-faq/#a23
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Array Warning 200What’s going on?
I am not sure what is going on. What API are you using? If native, have you tried to re-authorize plugin?
Technically SNAP doesn’t have to provide appsecret_proof, and we are actually asking to turn that off (Please see the answer in the FAQ – #2.6: https://www.nextscripts.com/support-faq/#a26).
We do provide it where possible, so usually it works fine and latest update didn’t change anything related to it.Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Array Warning 200You can update directly from your WP Admin Dashboard->Updates or download it from https://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/ and install it manually.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Array Warning 200Please update to the latest version 4.3.11. This problem has been fixed there.
Please update to the latest version 4.3.10. This problem has been fixed there.
Forum: Fixing WordPress
In reply to: Error After 5.3 UpdateSine we been mentioned here. Bug is really in WP itself.
You can install a clean WP 5.3 without any plugins and then install and activate this simple plugin that just creates one menu item with two submenus:
<?php /* Plugin Name: Test Plugin Version: 1.0.0 */ add_action( 'admin_menu', 'testPlg_adminMenu' ); function testPlg_adminMenu() { add_menu_page( 'Test Plugin', 'Test|Plugin','manage_options','testPlg','testPlg_shoPage1'); add_submenu_page( 'testPlg','SubMenu 1', 'SubMenu 1', 'manage_options', 'testPlg','testPlg_shoPage1', 1 ); add_submenu_page( 'testPlg','SubMenu 1', 'SubMenu 1', 'manage_options', 'testPlg-page1', 'testPlg_shoPage2', 2 ); } ?>You will get “Warning: count(): Parameter must be an array or an object that implements Countable in /home/oradell/public_html/wp-admin/includes/plugin.php on line 1392”
Now edit the code and remove last parameters from add_submenu_page
<?php /* Plugin Name: Test Plugin Version: 1.0.0 */ add_action( 'admin_menu', 'testPlg_adminMenu' ); function testPlg_adminMenu() { add_menu_page( 'Test Plugin', 'Test|Plugin','manage_options','testPlg','testPlg_shoPage1'); add_submenu_page( 'testPlg','SubMenu 1', 'SubMenu 1', 'manage_options', 'testPlg','testPlg_shoPage1' ); add_submenu_page( 'testPlg','SubMenu 1', 'SubMenu 1', 'manage_options', 'testPlg-page1', 'testPlg_shoPage2' ); } ?>Everything is fine now.
According to https://developer.wordpress.org/reference/functions/add_submenu_page/ that last parameter is int and it should work.
$position
(int) (Optional) The position in the menu order this item should appear.Default value: null
It worked ok before 5.3
Interesting enough, it’s not our bug. WordPress broke something in the add_submenu_page() function. It gives this warning if the last optional parameter is provided.
WordPress is fixing it in the WP 5.3.1 – https://core.trac.wordpress.org/ticket/48599
Regardless of that, we will release a new SNAP version with workaround fix tomorrow.
5.6 is quite old (7.3 is recommended), but supported.
How much memory is allowed to PHP?
File called “error_log” usually located in your root WordPress folder or you can check php.ini for its location.
What is your PHP version?
Could you please check your error_log and let me know what do you have there?
This kind of error could happen when your PHP is either extremely old any not anymore supported or your PHP installation is missing some default essential components.
This basically means plugin were unable to upload your image to Twitter. Please check SNAP log for more info.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Total Posts: 0 | Posted: 0Your reposter is either finished or you set filters to find no posts.
Please check your filters.
Will be fixed in the next release.
You need to use %HCT-product_cat%, not %HCATS%
From here: https://www.nextscripts.com/tutorials/how-to-post-woocommerce-products/
1. Yes, SNAP Free can post Woocommerce products Please see here: https://www.nextscripts.com/tutorials/how-to-post-woocommerce-products/
2. What exactly is not ok with Blogger instructions?