Your comments

Ok, i found a solution!!

So for QNAP users, you have to edit the UbooQuity.sh file and add this two lines:

LANG=en_US.UTF8
export LANG

And modify the command line adding:

-Dfile.encoding=UTF8

The trick was that - for some reason - the UTF-8 is not accepted, and you have to use UTF8 instead...

My file remains like this:


#!/bin/sh
CONF=/etc/config/qpkg.conf
QPKG_NAME="UbooQuity"
QPKG_ROOT=`/sbin/getcfg $QPKG_NAME Install_Path -f ${CONF}`
QPKG_NAME1="QJDK7"
QPKG_ROOT1=`/sbin/getcfg $QPKG_NAME1 Install_Path -f ${CONF}`
export JAVA_HOME=$QPKG_ROOT1
export JAVA=$JAVA_HOME/bin/java
export PKILL=$QPKG_ROOT/pkill
LANG=en_US.UTF8
export LANG
case "$1" in
  start)
    ENABLED=$(/sbin/getcfg $QPKG_NAME Enable -u -d FALSE -f $CONF)
    if [ "$ENABLED" != "TRUE" ]; then
        echo "$QPKG_NAME is disabled."
        exit 1
    fi
    cd $QPKG_ROOT
    $JAVA -Dfile.encoding=UTF8 -jar Ubooquity.jar -webadmin -headless &
    ;;
  stop)
    : ADD STOP ACTIONS HERE
    $PKILL -f "$JAVA -jar Ubooquity.jar -webadmin -headless"
    ;;
  restart)
    $0 stop
    $0 start
    ;;
  *)
    echo "Usage: $0 {start|stop|restart}"
    exit 1
esac
exit 0


So another one with non US characters in a QNAP nas...


I try to modify the UbooQuity.sh file:

#!/bin/sh

CONF=/etc/config/qpkg.conf
QPKG_NAME="UbooQuity"
QPKG_ROOT=`/sbin/getcfg $QPKG_NAME Install_Path -f ${CONF}`
QPKG_NAME1="QJDK7"
QPKG_ROOT1=`/sbin/getcfg $QPKG_NAME1 Install_Path -f ${CONF}`
LANG=en_US.UTF-8
export LANG
export JAVA_HOME=$QPKG_ROOT1
export JAVA=$JAVA_HOME/bin/java
export PKILL=$QPKG_ROOT/pkill
case "$1" in
start)
ENABLED=$(/sbin/getcfg $QPKG_NAME Enable -u -d FALSE -f $CONF)
if [ "$ENABLED" != "TRUE" ]; then
echo "$QPKG_NAME is disabled."
exit 1
fi
cd $QPKG_ROOT

$JAVA —Dfile.encoding=UTF-8 -jar Ubooquity.jar -webadmin -headless &


;;
stop)
: ADD STOP ACTIONS HERE
$PKILL -f "$JAVA -jar Ubooquity.jar -webadmin -headless"
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0


But don't works...


Keep trying ;)

Thanks!

I update my pattern, and will check if this works...

Thanks! i will try later...


waiting for it :)

Hi!

I'm a new user since yesterday, so i'm trying to get all working properly...

I get a lot of "._" files in the comic scan, i set that pattern in the exclusion section:


"Scan exclusion pattern" "._"


and i click the "Clear Comics database" link, but the ._ files still remains :/


How i coud get rid of that files?

Thanks!

Amacing program!