diff options
author | Joey Hess <joey@kitenet.net> | 2011-11-23 16:13:16 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-11-23 16:13:16 -0400 |
commit | 64e09f9968c5db26aef7bfdd70bde7c86c8fa144 (patch) | |
tree | 13be69c6dbaababa39f9c8c274de301388562d55 | |
parent | d36d4c4ce5acc44780a4dbcc95a1d2bceee8caa2 (diff) | |
download | ikiwiki-64e09f9968c5db26aef7bfdd70bde7c86c8fa144.tar ikiwiki-64e09f9968c5db26aef7bfdd70bde7c86c8fa144.tar.gz |
cannot reproduce
-rw-r--r-- | IkiWiki/Plugin/highlight.pm | 2 | ||||
-rw-r--r-- | doc/bugs/Running_on_an_alternative_port_fails.mdwn | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/highlight.pm b/IkiWiki/Plugin/highlight.pm index 33d136fbf..4e86207f1 100644 --- a/IkiWiki/Plugin/highlight.pm +++ b/IkiWiki/Plugin/highlight.pm @@ -52,7 +52,7 @@ sub getsetup () { sub checkconfig () { eval q{use highlight}; - if (highlight::DataDir->can('new')){ + if (highlight::DataDir->can('new')) { $data_dir=new highlight::DataDir(); $data_dir->searchDataDir(""); } else { diff --git a/doc/bugs/Running_on_an_alternative_port_fails.mdwn b/doc/bugs/Running_on_an_alternative_port_fails.mdwn index c6e09171d..8b5fefa91 100644 --- a/doc/bugs/Running_on_an_alternative_port_fails.mdwn +++ b/doc/bugs/Running_on_an_alternative_port_fails.mdwn @@ -5,3 +5,12 @@ For example if you run on 'http://my.gear.xxx:8080/' then after clicking login ( -- fergus NB: both the 'url' and the 'cgiurl' include the port and removing the port element provides the expected functionality. + +> I tried to reproduce this by making my laptop's web server use port +> 8080. Set up ikiwiki to use that in cgiurl and url, and had +> no problem with either openid or password auth login. +> +> Ikiwiki has had some changes in this area in the past year; you don't say +> what version you were using. It could also be a problem with your web +> server, conceviably, if didn't correctly communicate the port to the cgi +> program. --[[Joey]] |