Ubooquity

Chris Atwood

Cadet
Joined
Dec 13, 2015
Messages
1
@Jailer Thank you so much for this as I had previously tried setting this up with no luck. This got me to be able to install and run it. I was wondering if you could help out on an error I am seeing though. The admin page gives a 500 invalid URL error but the normal page comes up and shows no books which I expect since I have not been able to get to the admin web page. Could you possibly point me in the right direction?

Resolved. I was just going to the port and not the /admin
 
Last edited:

Jailer

Not strong, but bad
Joined
Sep 12, 2014
Messages
4,977
Joined
May 5, 2019
Messages
1
I ran into troubles with Charset / Encoding and missing files in the library. Here is my solution that is maybe of use for others. I added the encoding to the start.sh file that is used by my crontab:
Code:
#!/bin/sh
export LC_ALL='de_DE.UTF-8'
export LANG='de_DE.UTF-8'
export MM_CHARSET='UTF-8'
nohup java -Xmx4096m -jar /usr/local/Ubooquity/Ubooquity.jar --remoteadmin --workdir /usr/local/Ubooquity/workdir/
 
Top