-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Hi,
Thanks for the plugin, i tried to use it on wolf cms installed on windows and found a issue.
function substrtruncate($string, $needle) {
return substr($string, 0, strrpos($string, $needle)+1);
}
require_once(substrtruncate($_SERVER['SCRIPT_FILENAME'], '/plugins').'../config.php'); // took out dots ../config.php
require_once(substrtruncate($_SERVER['SCRIPT_FILENAME'], '/plugins').'/Framework.php');
It failed on windows, because $_SERVER['SCRIPT_FILENAME'] value is in windows style "C:/abcd/xyz/plugins"
but the code is looking for "/plugins".
following quick workaround works, but it may not be good solution.
function substrtruncate($string, $needle) {
$string = str_replace("\\","/",$string);
return substr($string, 0, strrpos($string, $needle)+1);
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels