PHP Configuration changed. The autoload.php file is missing. Please runcomposer install
orcomposer require vstelmakh/url-highlight
. Please inform the osamc.de staff about this problem."; } else { require $autoloadPath; // Check if UrlHighlight class exists if (!class_exists(\VStelmakh\UrlHighlight\UrlHighlight::class)) { echo "PHP Configuration changed. Run
"; } else { // Your existing code goes here use VStelmakh\UrlHighlight\UrlHighlight; $urlHighlight = new UrlHighlight(); $files = glob("./protokolle/osamc_*.txt"); foreach(array_reverse($files) as $file){ $path_parts = pathinfo($file); echo "composer require vstelmakh/url-highlight
. Please inform the osamc.de staff about this problem." . $path_parts['filename'] . "
"; echo "\n"; echo $urlHighlight->highlightUrls(file_get_contents($file)); echo "\n"; } // Remove fclose($out); as $out is not defined } } ?>