Conversation
supportHello. Thanks for the plugin! I ran into an error applying for jobs and this line was the culprit in greenhouse-job-board-apply-submit.php: require_once(‘../../../../../wp-load.php’); I changed it to the following and everything works: if ( defined( ‘ABSPATH’ ) ) { require_once( ABSPATH . ‘wp-load.php’ ); } else { require_once( dirname( dirname( __FILE__ ) ) . ‘/wp-load.php’ ); } We have WordPress installed in a subdirectory which may be the problem.
CORRECTION: This is what got job submissions to work: require_once(‘../../../../../wp/wp-load.php’); Needed the ‘wp’ subdirectory in there.
I’m still seeing the issue. And the above fix didn’t work for me…is there anything else that can be done. I’m getting a “POST http://clickstop.com/wp-content/plugins/greenhouse-job-board/public/partials/greenhouse-job-board-apply-submit.php 403 (Forbidden)” error. Looks like when it is posting the form.
CORRECTION: This is what got job submissions to work: require_once(‘../../../../../wp/wp-load.php’); Needed the ‘wp’ subdirectory in there.
I’m still seeing the issue. And the above fix didn’t work for me…is there anything else that can be done. I’m getting a “POST http://clickstop.com/wp-content/plugins/greenhouse-job-board/public/partials/greenhouse-job-board-apply-submit.php 403 (Forbidden)” error. Looks like when it is posting the form.