Pleased to say, having taken some more photos and then imported them, that is is running smoothly.
2012-01-12 02:10:31 PST in Zoph
Several tries and then a breakthrough http://pastebin.com/HVfJGKUq http://pastebin.com/DGHSnsq2 both of those overran the terminal buffer so I started trying with a single file to import http://pastebin.com/JFsr9cxi http://pastebin.com/YXmvAZwF and then i find that zoph is reading a backup copy of an old config.inc.php in ~/ instead of /var/www/zoph/config.inc.php This detail was missing...
2012-01-05 04:21:25 PST in Zoph
Gives the "long error" which overflows the buffer and ends PHP Notice: finfo::finfo(): Warning: type `=' invalid in /var/www/zoph/file.inc.php on line 289 PHP Warning: finfo::finfo(): Failed to load magic database at '/usr/share/file/magic.mgc'. in /var/www/zoph/file.inc.php on line 289 PHP Warning: finfo::file(): The invalid fileinfo object. in /var/www/zoph/file.inc.php on...
2012-01-04 12:01:42 PST in Zoph
In config.inc.php define('MAGIC_FILE', ''); in file.inc.php public function getMime() { $fileinfo=new finfo(FILEINFO_MIME, MAGIC_FILE); $mime=explode(";", $fileinfo->file($this->readlink())); log::msg("<b>" . $this->readlink() . "</b>: " . $mime[0], log::DEBUG, l$ $this->type=get_filetype($mime[0]);.
2012-01-04 02:37:00 PST in Zoph
I substituted the given line (not sure if that was what was intended) PHP Notice: Constant INI_FILE already defined in /home/liz/config.inc.php on line 24 PHP Notice: Constant MAGIC_FILE already defined in /var/www/zoph/file.inc.php on line 289 PHP Notice: Undefined variable: fileinfo in /var/www/zoph/file.inc.php on line 290 PHP Fatal error: Call to a member function file() on a...
2012-01-03 12:00:12 PST in Zoph
sad to say, I broke it again, not sure how, but was editing file.inc.php tried the web import and it doesn't function either error Fatal Error: Illegal filetype: application/octet-stream fatal error.
2012-01-03 02:41:51 PST in Zoph
I've installed libmagic-dev and using $fileinfo=new finfo(FILEINFO_MIME, "/usr/share/file/magic"); or $fileinfo=new finfo(FILEINFO_MIME, MAGIC_FILE); this works.
2012-01-03 00:09:24 PST in Zoph
the error message (incomplete, but repetitive) from $fileinfo=new finfo(FILEINFO_MIME, MAGIC_FILE); is at http://pastebin.com/qhYsuRsk and from $fileinfo=new finfo(FILEINFO_MIME, "/usr/share/file/magic"); is /data/images/uploads/out4638.jpeg is not an image.
2012-01-02 20:36:42 PST in Zoph
a reoccurence of an old bug V0.9pre1 Debian $ php -v PHP 5.3.8-1+b1 with Suhosin-Patch (cli) (built: Nov 13 2011 10:58:10) Copyright (c) 1997-2011 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies with Suhosin v0.9.32.1, Copyright (c) 2007-2010, by SektionEins GmbH PHP Warning: finfo::finfo(): Failed to load magic database at...
2012-01-02 20:21:50 PST in Zoph