script breaks when metadata file is in subdir
Status: Beta
Brought to you by:
daeley
Line 330 in script 0.6:
326: # IF NO METADATA WAS FOUND FOR THE
CURRENT ENTRY, WE CREATE IT.
327:
328:
329: if ($foundMeta == 0) {
330: $fp = fopen
("$metafile", "a+");
Line 330 should be like this:
$fp = fopen($datadir."/"."$metafile", "a+");
Logged In: YES
user_id=682120
This has been fixed in 0.7a and will be available in the
next beta release. The new version (within the config file)
asks for a full path to the metadata file, so it can stored
where desired.