0
Answered

OPDS feed question: # of comics per folder

Cesar Sanchez 8 years ago updated by Tom 8 years ago 3

Hi - Is the number of comics per folder present in the OPDS feed? I'm asking this because for example it could be very useful to have an icon in Seth's app showing this information on each folder.

Thanks.

0

HTTP ERROR 500 admin page in 2.0.2

Skylar Ragan 8 years ago updated 8 years ago 2

When I try to access the admin page, I get: 

HTTP ERROR 500

Problem accessing /admin. Reason:

    

Could not find matching provider (wrong URL)


I setup a new install of 2.0.2 on a headless Ubuntu 17.x VM in Google Cloud. On that server I'm using nginx to access pages remotely.


Here are the relevant entries in nginx:


# Ubooquity
 location /ubooquity {
auth_basic off;
proxy_pass http://127.0.0.1:2202;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
 }
#
# Ubooquity Admin
 location /admin {
auth_basic off;
proxy_pass http://127.0.0.1:2203;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
 }



I'm using the following command to start Ubooquity:

 sudo java -jar /opt/ubooquity/Ubooquity.jar -remoteadmin -headless


So if I go to https://my.domain/ubooquity I get the "You aren't authorized" whatever whatever stuff, which makes sense because I haven't created any users yet. So the library port seems to be working fine. However, when I go to https://my.domain/admin I get the error described at the top of the page. What am I doing wrong?

0
Declined

Custom metadata supports

Mr. SimPle (asd) 8 years ago updated by eduo 8 years ago 15

I want to make my own metadata for cbz files and display on the webpage.

I tried ComicTagger but it doesn't have custom tags that I want and Ubooquity doesn't display those metadata so instead using this, I want to make txt file in it and display them on Ubooquity.


txt file format:

Name: 'comic_name';

Author: 'author_name';

Publisher: 'publisher_name';

Volume: 65;

Characters: 'character1' , 'character2';  

0

What is themeScript.js?

Mr. SimPle (asd) 8 years ago updated 8 years ago 2

On Ubooquity 2.0.2 beta, there is a improvement says that custom script is supported for theme.

What does that do? Where do I get that file? or if I need to make it, how do I make it?

0
Planned

Feature Request: Boolean Search

Darren 8 years ago updated by Tom 8 years ago 1

Is including boolean operators in the search function doable without venturing into an Advanced Search rewrite?

0

Marvin 3 supports comics via Ubooquity OPDS

Telecart 8 years ago 0

This might be old news but I Just figured I'd let folks know, I've been playing around with Marvin 3 for iOS and it now supports comics as well as ePUB books and has robust OPDS support and cloud sync the page location between instances of Marvin 3. It's a nice app if you're looking for one app to handle both books and comics associated with an Ubooquity server. No streaming, only downloading though.

0
Under review

specify log level on start

Toonman 8 years ago updated by Tom 8 years ago 3

Hi, 

Wondering if it is possible (without recompiling the JAR) to specify the log level at startup, i.e., with a command line option ? 


We have -workdir and -headless, etc, wouldnt mind a -loglevel 

(unless it already exists?)


Use case for containers is I only really want to output errors, info level does not really interest me.


0
Planned

Log file issue

Elouan 8 years ago updated by Tom 8 years ago 3

I'm running the beta version of ubooquity on a Synology NAS:

Ubooquity 2.0.2 built on 2017-04-24 at 20:52


I have a problem with the logs file: 

If I click on 'view logs' from the admin interface, I see only part of the log file : the latest log in my case dates back from 30/05/2017

On the other hand the log file is updated correctly: if I download the file itself and open it in notebook, I see the latest changes: the latest log in the file is from 20/06/2017


so: the web interface is not displaying the entire content of the file


The file is 280kB, so below the 1MB threshold.


It's possible that I've deleted archived logs (.zip) before, but I don't see why this shoudl cause a problem, but maybe you would

0

[2.0.2] Starting in a FreeNAS Jail as a service?

Clay 8 years ago updated 8 years ago 1

Anybody have a startup script for 2.0.2 that works for FreeNAS in a jail?


Preferably gives me options to start/stop, behaves with a pidfile, all that good stuff.

0

Not pulling apple-touch-icon when configured for reverse proxy

saucebarbeque 8 years ago updated by El Micka 8 years ago 5

Hi - 


Finally figured out the nuances to nginx and Ubooquity, and now Ubooquity lives under /ubooquity. I use nginx access for remote access, and I hit Ubooquity directly when I'm at home.


When I attempt to "Add to Home Screen" from Safari on my iPad or iPhone, I now get the generic screenshot icon instead of the nice books & cloud icon I had prior to the nginx setup...


Can this be fixed?