aboutsummaryrefslogtreecommitdiffstats
path: root/routers/install.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-30 09:39:44 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-30 09:39:44 -0400
commit03cc39ea121e87febf4421d84e579770f635695c (patch)
tree0e5e3e716c5d272c624e386f49a67331e85256c4 /routers/install.go
parentb1627672f9b45047976f498fe618995361e9ff35 (diff)
downloadgitea-03cc39ea121e87febf4421d84e579770f635695c.tar.gz
gitea-03cc39ea121e87febf4421d84e579770f635695c.zip
Mirror fix on #45
Diffstat (limited to 'routers/install.go')
-rw-r--r--routers/install.go68
1 files changed, 36 insertions, 32 deletions
diff --git a/routers/install.go b/routers/install.go
index 407705b73a..36bba3d41a 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -55,39 +55,38 @@ func Install(ctx *middleware.Context, form auth.InstallForm) {
ctx.Data["Title"] = "Install"
ctx.Data["PageIsInstall"] = true
- // Get and assign value to install form.
- if len(form.Host) == 0 {
- form.Host = models.DbCfg.Host
- }
- if len(form.User) == 0 {
- form.User = models.DbCfg.User
- }
- if len(form.Passwd) == 0 {
- form.Passwd = models.DbCfg.Pwd
- }
- if len(form.DatabaseName) == 0 {
- form.DatabaseName = models.DbCfg.Name
- }
- if len(form.DatabasePath) == 0 {
- form.DatabasePath = models.DbCfg.Path
- }
-
- if len(form.RepoRootPath) == 0 {
- form.RepoRootPath = base.RepoRootPath
- }
- if len(form.RunUser) == 0 {
- form.RunUser = base.RunUser
- }
- if len(form.Domain) == 0 {
- form.Domain = base.Domain
- }
- if len(form.AppUrl) == 0 {
- form.AppUrl = base.AppUrl
- }
+ if ctx.Req.Method == "GET" {
+ // Get and assign value to install form.
+ if len(form.Host) == 0 {
+ form.Host = models.DbCfg.Host
+ }
+ if len(form.User) == 0 {
+ form.User = models.DbCfg.User
+ }
+ if len(form.Passwd) == 0 {
+ form.Passwd = models.DbCfg.Pwd
+ }
+ if len(form.DatabaseName) == 0 {
+ form.DatabaseName = models.DbCfg.Name
+ }
+ if len(form.DatabasePath) == 0 {
+ form.DatabasePath = models.DbCfg.Path
+ }
- auth.AssignForm(form, ctx.Data)
+ if len(form.RepoRootPath) == 0 {
+ form.RepoRootPath = base.RepoRootPath
+ }
+ if len(form.RunUser) == 0 {
+ form.RunUser = base.RunUser
+ }
+ if len(form.Domain) == 0 {
+ form.Domain = base.Domain
+ }
+ if len(form.AppUrl) == 0 {
+ form.AppUrl = base.AppUrl
+ }
- if ctx.Req.Method == "GET" {
+ auth.AssignForm(form, ctx.Data)
ctx.HTML(200, "install")
return
}
@@ -109,7 +108,12 @@ func Install(ctx *middleware.Context, form auth.InstallForm) {
models.DbCfg.Path = form.DatabasePath
if err := models.NewEngine(); err != nil {
- ctx.RenderWithErr("Database setting is not correct: "+err.Error(), "install", &form)
+ if strings.Contains(err.Error(), `unknown driver "sqlite3"`) {
+ ctx.RenderWithErr("Your release version does not support SQLite3, please download the official binary version "+
+ "from https://github.com/gogits/gogs/wiki/Install-from-binary, NOT the gobuild version.", "install", &form)
+ } else {
+ ctx.RenderWithErr("Database setting is not correct: "+err.Error(), "install", &form)
+ }
return
}