failed to open stream: No such file or directory
-
We have php errors when using it with transliteration plugin:
include(/var/www/html/wp-content/plugins/quick-featured-images/admin/class-Transliteration_Plugin_Quick_Featured_Images.php): failed to open stream: No such file or directory
It’s like your loading by error transliteration plugin from your folder and raise error.
If I change your code with check from:
include QFI_ROOT . ‘admin/class-‘ . $class_name . ‘.php’;
to:
$file = QFI_ROOT . ‘admin/class-‘ . $class_name . ‘.php’;
if ( file_exists( $file ) ) {
include $file;
}error disappears.
Can you fix it in update?
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- You must be logged in to reply to this topic.