quixplorer icon indicating copy to clipboard operation
quixplorer copied to clipboard

Could you make quixplorer PHP 7 compatible

Open Dutchman01 opened this issue 8 years ago • 2 comments

Could you please make quixplorer PHP 7 compatible.

now on system with php v7.0.5 folders are displayed on its gui. but you can't see files! those are not listed anymore!

syslog reports shows the folder and files you explorer correct.

Dutchman01 avatar Apr 03 '16 12:04 Dutchman01

This is due to the use of function eregi, which has been removed from PHP 7. Replace all instances of this function in a couple of files (_include/fun_extra.php, _include/fun_search.php) with preg_match using the "/i" modifier for case insensitive matches.

rubofgreen avatar May 21 '17 15:05 rubofgreen

I fork a branch for php 7 and fix some secure problems and bugs. https://github.com/frocelu/quixplorer-for-php7/tree/frocelu%40quixplorer-for-php7

frocelu avatar Jul 08 '20 01:07 frocelu