Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [Object Sync for Salesforce] Error on Pushing new contentI also went through and re-uploaded the plugin.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Error on Pushing new contentOk, so i went through and cleaned up the theme. It’s not mine and had a ton of stuff. I then redid the mapping and I got a new error message now.
[05-Nov-2019 21:20:45 UTC] PHP Fatal error: Uncaught Error: Class ‘ActionScheduler_QueueRunner’ not found in /home/executorium/public_html/wp-content/plugins/object-sync-for-salesforce/vendor/prospress/action-scheduler/classes/ActionScheduler.php:28
Stack trace:
#0 /home/executorium/public_html/wp-content/plugins/object-sync-for-salesforce/vendor/prospress/action-scheduler/classes/ActionScheduler.php(99): ActionScheduler::runner()
#1 /home/executorium/public_html/wp-content/plugins/object-sync-for-salesforce/vendor/prospress/action-scheduler/action-scheduler.php(44): ActionScheduler::init(‘/home/executori…’)
#2 /home/executorium/public_html/wp-content/plugins/object-sync-for-salesforce/vendor/prospress/action-scheduler/classes/ActionScheduler_Versions.php(59): action_scheduler_initialize_2_dot_2_dot_5()
#3 /home/executorium/public_html/wp-includes/class-wp-hook.php(284): ActionScheduler_Versions::initialize_latest_version()
#4 /home/executorium/public_html/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array)
#5 /home/executorium/pu in /home/executorium/public_html/wp-content/plugins/object-sync-for-salesforce/vendor/prospress/action-scheduler/classes/ActionScheduler.php on line 28Forum: Plugins
In reply to: [Object Sync for Salesforce] Error on Pushing new contentThere is no action in that table and according to your read me file on missing tables its not there. Our tables are definitely not missing anything but the action field.
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…solved it. Did a new App and reset all the values in salesforce.
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…And now, I logged out. Tried the authorize again. This time after logging into salesforce, it took me right to the dashboard. So the issue is a bit more complicated. Would help if I could see an error somehow.
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…Now I tried again (while logged in) I get a redirect to the dashboard. I’m going to report this as a bug because it should be giving us the error if Im logged in.
Now I’m wondering why it doesn’t authorize. I’ll try a few more times.
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…Hey Jonathan,
First… THANKS FOR YOUR REPLY AND HELP!!!!
Second… Got another hint…
Tried to authorize today. This time I didn’t jump to my dashboard. I think its cause I may not have been authorized in salesforce today. So I got an error from salesforce:
“We can’t authorize you because of an OAuth error. For more information, contact your Salesforce administrator.
OAUTH_APPROVAL_ERROR_GENERIC : An unexpected error has occured during authentication. Please try again.”
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…Any way around this?
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…Tried clearing plugin cache and got this..
“There was an error clearing the plugin cache. Try refreshing this page.”Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…All of the Permissions you listed have been provided.
Application Permissions: Perform requests on your behalf at any time
Provide access to custom applications
Access your basic information
Full access
Provide access to your data via the Web
Access and manage your dataForum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…I had already authorized. But now, I click on the Authorize and it takes me to the dashboard with no additional errors in the error logs. Strange.
- This reply was modified 5 years, 5 months ago by Michael.
Forum: Plugins
In reply to: [Object Sync for Salesforce] in_array() expects parameter…Thank you
I’ve found some more problems, I cant seem to get this thing to map anything because there are no objects showing in salesforce. I’m new to this project, so I’m wondering what could be causing this.Forum: Plugins
In reply to: [WooCommerce Square] Square Payment Form JS loading on every pageI also have this issue. It’s listed as a blocker in Lighthouse and can not be moved to the footer (for some reason). The file is very large and causing us poor site performance (according to light house). It should probably be cut into two files, one for the every page stuff, and one for everything specific to the forms. Also the ability to load it in the footer would be nice.
- This reply was modified 5 years, 5 months ago by Michael.
Forum: Plugins
In reply to: [BuddyPress xProfiles ACL] Request to add hook for pathFYI, this is for the path to the page we set the redirect too.
Forum: Plugins
In reply to: [BuddyPress xProfiles ACL] Request to add hook for pathWoops, this one is the right one… Tested and works. Changed name of the filter to match the standard.
function block_screen_edit_profile() { global $bp, $current_user; wp_get_current_user(); if($current_user->ID) { if(!in_array($bp->action_variables[1], $this->user_allowed_xprofile_groups)) { $profile_redirect = apply_filters('xpa_plugin_path', 0); error_log($profile_redirect); if($profile_redirect) { bp_core_redirect($profile_redirect); } else { bp_core_redirect($bp->displayed_user->domain . BP_XPROFILE_SLUG . '/edit/group/1'); } } } }