Plugin Contributor
jonryan
(@jonryan)
Hi @christianebuddy from the sounds of it maybe you have some htaccess rules that are somehow blocking that API endpoint from working. Are you still having problems?
This problem still exists. Disabling all other plugins does not solve the problem either. Does the plugin use the xmlrpc.php api ?
Problem is solved. It was related to the .htaccess rules. There was no AllowOverride All
in the apache configuration so the rewrites went wrong!
Plugin Contributor
jonryan
(@jonryan)
@christianebuddy glad you got it sorted out!
Hi,
I was having the same problem but only in english with WPML. I didn’t have access to my httpd.conf.
I found a solution. By editing wp-job-manager\includes\class-wp-job-manager-ajax.php at line 75.
I updated : $endpoint = trailingslashit( home_url( ‘/jm-ajax/’ . $request . ‘/’, ‘relative’ ) );
For : $endpoint = trailingslashit( ‘/jm-ajax/’ . $request . ‘/’ );
Hope it can work for anyone else having the same trouble.
Thanks
-
This reply was modified 7 years, 1 month ago by pcamepc.