summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-09-27 18:34:50 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-09-27 18:34:50 -0400
commit1a366910d30a0ff07a16f3d0505e0584a63a465a (patch)
tree49158d6fd910f30cca4c4cbbbac313cf0e5ced33 /doc/bugs
parent2acaa15830760695eb673ddb0b17aed715e97f3c (diff)
parentba4071bde21a199e77f15b54d8785debc69613e6 (diff)
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/libdir_not_used_in_wrappers.mdwn32
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/bugs/libdir_not_used_in_wrappers.mdwn b/doc/bugs/libdir_not_used_in_wrappers.mdwn
new file mode 100644
index 000000000..05ccf44c9
--- /dev/null
+++ b/doc/bugs/libdir_not_used_in_wrappers.mdwn
@@ -0,0 +1,32 @@
+[[!tag patch wishlist]]
+
+If I install ikiwiki in a user directory (let's say /home/bruno/ikiwiki) with all perl modules (thoses coming from Bundle::Ikiwiki and Bundle::Ikiwiki:Extras) inside that directory (in /home/bruno/ikiwiki/lib/perl5) then the generated CGI wrapper does not work even if I make libdir point to that directory. The error reported explain that wrapper <code>Can't locate IkiWiki.pm in @INC</code>.
+
+This is bad when you try to install Ikiwiki in such a way (everything needed by ikiwiki in one single directory) since ikiwiki is unusable in such case.
+
+Situations where this behavior (everything in one directory) may be wanted include installing latest ikiwiki on Debian stable, Ubuntu or more simply installing it on any hosting provider without root access.
+
+Here is a simple patch correcting that behavior.
+
+<pre>
+---
+ IkiWiki/Wrapper.pm | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm
+index ff110b5..5289966 100644
+--- a/IkiWiki/Wrapper.pm
++++ b/IkiWiki/Wrapper.pm
+@@ -121,6 +121,7 @@ $check_commit_hook
+ $envsave
+ newenviron[i++]="HOME=$ENV{HOME}";
+ newenviron[i++]="WRAPPED_OPTIONS=$configstring";
++ newenviron[i++]="PERL5LIB=$config{libdir}";
+ newenviron[i]=NULL;
+ environ=newenviron;
+
+--
+1.6.0.4
+</pre>
+
+-- [[/users/bbb]]