Can you go to your server and set the permissions for the folder and files inside /swift-framework/sf-shortcodes/ to 755
If that doesn’t work, try replacing /swift-framework/sf-shortcodes/config.php with:
<?php
if (!function_exists('sf_wp_path')) {
function sf_wp_path() {
if (strstr($_SERVER["SCRIPT_FILENAME"], "/wp-content/")) {
return preg_replace("/\/wp-content\/.*/", "", $_SERVER["SCRIPT_FILENAME"]);
} else {
return preg_replace("/\/[^\/]+?\/themes\/.*/", "", $_SERVER["SCRIPT_FILENAME"]);
}
}
}
$wp_path = sf_wp_path();
if (strpos($wp_path, '/') !== false) {
require_once( $wp_path . '/wp-load.php' );
} else {
require_once( $wp_path . '\wp-load.php' );
}
?>