Thank you for your quick reply, but I have spent too much time and still have no luck!
The "ignored files" tab does not appear, which was a great insight as I went through the "opcache-gui" code...
https://github.com/amnuts/opcache-gui/tree/master
I have tried many combinations for the "opache_blacklist.txt" file, wildcards, rebooting the system, and even unix2dos conversion, but nothing.
Below is the output of my "opcache_get_configuration()" call in a simple test script.
As you can see, the array element "blacklist" is empty; any clues as to why?
/home/cycles/opcache-gui/test_opcache.php:5:
array (size=3)
'directives' =>
array (size=34)
'opcache.enable' => boolean true
'opcache.enable_cli' => boolean false
'opcache.use_cwd' => boolean true
'opcache.validate_timestamps' => boolean true
'opcache.validate_permission' => boolean false
'opcache.validate_root' => boolean false
'opcache.dups_fix' => boolean false
'opcache.revalidate_path' => boolean true
'opcache.log_verbosity_level' => int 3
'opcache.memory_consumption' => int 67108864
'opcache.interned_strings_buffer' => int 8
'opcache.max_accelerated_files' => int 3907
'opcache.max_wasted_percentage' => float 0.05
'opcache.consistency_checks' => int 0
'opcache.force_restart_timeout' => int 180
'opcache.revalidate_freq' => int 30
'opcache.preferred_memory_model' => string '' (length=0)
'opcache.blacklist_filename' => string '/home/cycles/opcache-gui/opcache_blacklist.txt' (length=46)
'opcache.max_file_size' => int 0
'opcache.error_log' => string '/home/cycles/logs/php_opcache.log' (length=33)
'opcache.protect_memory' => boolean false
'opcache.save_comments' => boolean false
'opcache.enable_file_override' => boolean false
'opcache.optimization_level' => int 2147401725
'opcache.lockfile_path' => string '/tmp' (length=4)
'opcache.file_cache' => string '' (length=0)
'opcache.file_cache_only' => boolean false
'opcache.file_cache_consistency_checks' => boolean true
'opcache.file_update_protection' => int 2
'opcache.opt_debug_level' => int 0
'opcache.restrict_api' => string '' (length=0)
'opcache.huge_code_pages' => boolean false
'opcache.preload' => string '' (length=0)
'opcache.preload_user' => string '' (length=0)
'version' =>
array (size=2)
'version' => string '7.4.33' (length=6)
'opcache_product_name' => string 'Zend OPcache' (length=12)
'blacklist' =>
array (size=0)
empty
Any help is greatly appreciated; many thanks in advance.