Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/3c3e2830cb41daada2ae42af9818db0427009b58
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
7 deletions
@ -2,8 +2,8 @@ bazarr_version = '0.1.1'
from bottle import route , run , template , static_file , request , redirect
import bottle
#bottle.debug(True )
#bottle.TEMPLATES.clear( )
bottle . debug ( True )
bottle . TEMPLATES . clear ( )
import os
bottle . TEMPLATE_PATH . insert ( 0 , os . path . join ( os . path . dirname ( __file__ ) , ' views/ ' ) )
@ -41,11 +41,6 @@ CREATE TABLE "table_settings_general" (
` auto_update ` INTEGER
) ;
INSERT INTO ` table_settings_general ` ( ip , port , base_url , path_mapping , log_level , branch , auto_update ) VALUES ( ' 0.0.0.0 ' , 6767 , ' / ' , Null , ' INFO ' , ' master ' , ' True ' ) ;
CREATE TABLE ` table_scheduler ` (
` id ` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE ,
` name ` TEXT NOT NULL ,
` frequency ` TEXT NOT NULL
) ;
CREATE TABLE " table_history " (
` id ` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE ,
` action ` INTEGER NOT NULL ,