Version 1.6.3 and some bugs/ideas
A new member has joined!
Just installed the new version and some bugs/ideas came to my mind.
1. If filename has & char this cannot be spidered (maybe also some other special ones)
- Solution is to change this in robot_functions
$path = $url['path'];
to
$path = ereg_replace('& amp;*','&',$url['path']); // edit: remove space between & and amp
2. If using M$ environment is_executable function is not available until PHP 5.0.0. Comment those out and external binaries will start to work.
3. Antiword cannot handle long filenames, only DOS 8.3. Change $temp_filename to something like this:
srand ((double)microtime()*1000000);
$temp_filename = rand(0,999999).$suffix;
and remember to change also $suffix.
Question: temp directory is no cleared totally after these mods - how to do this?
4. How to change %20 in file or folder names to space?
(I have a mod for this but it is so quick and dirty)
Otherwise I think this is great peace of software!
-Manfred
|