Sry, but perhaps I didn`t make it clear enough...
The multibased Libraries are pointed to like you wrote, ande like it is described in the config_default.php...
$config['calibre_directory'] = array (
"xy" => "/volume1/ebook/xy/",
"xz" => "/volume1/ebook/xz/",
"yz" => "/volume1/ebook/yz/");
Does not work for Covers or download.
It only workes with:
$config['calibre_internal_directory'] = '/volume1/ebook/xy/'
for the one library xy.
Trying to use the same string like is used before for the $config['calibre_directory'] in the $config['calibre_internal_directory'] is not working:
$config['calibre_internal_directory'] = array (
"xy" => "/volume1/ebook/xy/",
"xz" => "/volume1/ebook/xz/",
"yz" => "/volume1/ebook/yz/");
...it has no covers and the dowload is not possible...
By the way, i spent 2 days reading this thread and testing cops to avoid a posting showing that I am an idiot... so I hope it isn`t that simple to answer by copying a part of the config_default.php, because I tried reading the most of the code hoping to find my error...
But thanks for the quick reply anyway, its confident to know that there are people willing to help and as I saw most of the time also being able to help
|