Call to undefined function split() in...
A simple and fast Web FTP application/client.
Brought to you by:
mehrrath
Hello
The split() function does not exist anymore we need to replace
$item[] = split("[ ]+",$contents[$i],9);
line 90 of file inc/frm_interface.php
by
$item[] = preg_split("/[ ]+/",$contents[$i],9);
Thanks you
Victor d'Agostino