0
Under review

​ Comicvine Tags displayed intermittently​

billzegarski 7 years ago updated by Tom 7 years ago 2
I've got about 3000 comics in my collection, and according to ComicRack, they are all tagged.  When I bring them into Ubooquity, some percentage, around 25, don't display their tags and show only info from the files.  I've tried rebuiling the Ubooquity databse with no luck.  Anything else I should try?

Thanks

Bill

0
Answered

How do i regenerate thumbnails?

Daniel Lugo 7 years ago updated by Tom 7 years ago 2

I want to regenerate the thumbnails Ubooquity creates without blowing away the database, is this possible?

0

Ubooquity auto start on Synology reboot

Trevor 7 years ago updated by Matthieu 7 years ago 1

Hey all,

I tried to search the forums but didn't find anything. I was wondering if anyone had a way to boot Ubooquity on Synology start up. 

There is a Task Scheduler under Control Panel to which I tried to have it "sudo start ubooquity" to which nothing. Maybe my logic is flawed or I'm missing some script it needs to be able to do this.


I have a 414 so I can't use docker. Any suggestions?

0

[2.1.0] Ubooquity doesn't start on Synology

anonymoez 7 years ago updated by Matthieu 7 years ago 1

I followed this tutorial https://vaemendis.github.io/ubooquity-doc/pages/tutorials/install-on-synology.html to install Ubooquity on my Synology DS916+ (DSM 6.1.3-15152 Update 1) with Java 8 (1.8.0_141).

However when I issue the start ubooquity command the service starts and stops almost immediately. I can't figure out what's happening, and I'm stuck on how to proceed troubleshooting.

This is my ubooquity.conf file:


start on started httpd-user

stop on runlevel [06]

exec /var/packages/Java8/target/j2sdk-image/bin/java -jar -Xmx1024m /var/packages/Ubooquity/Ubooquity.jar -port 2202 -webadmin -headless -workdir "/volume1/Comix/Ubooquity"

I have tried to change the workdir to /volume1/Comix and also leave it out completely, but to no avail.


Since there's no ubooquity folder in my workdir (/volume1/Comix/) yet there's no logfile to look at.

Is there another log I can take a look at to push me in the right direction?

Or is there someone here who can help me out?


0

List view for publishers/titles

invaderdag 7 years ago 0

Hi everyone,


I am loving Ubooquity so far, but I wanted to throw something out and see if this would be possible.


I prefer to not have thumbnails for Publishers, or even the main Titles, but just for the issues themselves. Doing something like a list view for Publishers and Titles would allow for many more to be displayed per page. Could this be accomplished currently with a folder html file or something? Any help would be greatly appreciated!


Thank you!

0

Command line arguments error

Dave 7 years ago updated by Anton Baur 7 years ago 11

Hi Guys, 


Still struggling to instal Ubooquity on my Synology DS216j. (DSM 6.1.3-15152 Update 1 )

I followed your instructions on Tutorials Synology but somehow it won't start up...


Log which I found:


2017-07-23T23:13:05+1200 Command line arguments error: joptsimple.UnrecognizedOptionException: p is not a recognized option Launch Ubooquity with the "--help" option to display available commands 

Ubooquity has stopped


Anyone an idea how to solve that issue?

0
Declined

Can't read .mobi, only download

diephoenix 7 years ago updated by Santi 5 years ago 12

On clicking on mobi book format only the download button shows, no read button. Can mobi formats not be read?

0

HTTP ERROR 500

Richard 7 years ago updated by de_van_bos 6 years ago 1

Hi,

I'm trying to run Ubooquity 2.1.0 with Apache2 doing the ProxyPass and ReWrite.


I'm unable to access the Admin page, I always get the HTTP ERROR 500 or, i get the Initial password request but when I enter - nothing.


for the normal Library page it seems to work, however as Im not able to access the admin page, I cant setup a user or the library.


Would it be possible to add another "reverseProxyPrefix" for the admin Page? I guess thats where the error comes from...


or does anyone know how to set the rewrite rules for apache that both sites work?


kind regards

liketofly

0

Every time my Asustor NAS restarts, I lose my configuration

Jeandaubi 7 years ago 0

Hi guys, 


I'm an Asustor user, and I'm trying to make the last version of Ubooquity work on my NAS for a few days. I have followed this tutorial. I'm not very good in SSH, and it took me a while to understand. I  finally changed a bit the contents of the tutorial to better match what I was doing.


Here is my start-stop.sh script :


#!/bin/sh


# ums files
UBOOQUITY_DIR=/volume1/home/admin/Ubooquity
UBOOQUITY_PID=$(ps ax | grep java | grep Ubooquity | awk '{ print $1 }')


case $1 in


start)
echo "Starting Ubooquity..."
java -Xmx256m -jar $UBOOQUITY_DIR/Ubooquity.jar -headless -remoteadmin -adminport 8079 1> /dev/null 2> /dev/null/ &
;;


stop)
echo "Killing Ubooquity..."
kill $UBOOQUITY_PID
;;


reload)
echo "Relaod Ubooquity..."
kill $UBOOQUITY_PID
sleep 3
java -Xmx256m -jar $UBOOQUITY_DIR/Ubooquity.jar -headless -remoteadmin -adminport 8079 1> /dev/null 2> /dev/null/ &
sleep 3
;;


info)
echo "Checking for Ubooquity PID..."
echo $UBOOQUITY_PID
;;


*)
echo "usage: $0 {start|stop|reload|info}"
exit 1
;;


esac
exit 0


As you can see, Ubooquity is now installed in /volume1/home/admin/Ubooquity. I changed the command line because Ubooquity doesn't seem to launch with the command given in the tutorial, and the access rights by using chmod. I also made the links with the /usr/local/etc/init.d folder


Ubooquity works, but I lose my configuration (users, shared folders etc...) every time my NAS restarts. It's as if I were starting from scratch. I have the feeling that each restart erases my configuration. However the file preferences.json is there.


Can you please help me with this ? I don't understand why Ubooquity behaves like this and it's driving me crazy ;-)

0

UNC Paths on Windows / Custom Paths entry in administration webui

Zibb 7 years ago 0

Hi guys,


Nice to see that this project is not dead and still a fully functional lightweight chunky server - certainly compared to my heavily customized ComicStreamer !


Two quick ones:


(1) Please allow entry of UNC / Custom paths from the admin webui, could not found it and had to shutdown the server to add those manually in the preferences.json 


(2) Please put a restart server directly in the admin webui, currently you have to get back to the local UI if you started it or fuddle with the config to make that happen


Zibb