From: tadek <tad...@gm...> - 2006-02-24 06:51:35
|
Warm greeting, I installed phpwiki-1.3.11p1 in my docroot directory. My server is running on NetBSD, Apache 2.0, php 4.4.1 Out of the box (after making changes in config.ini regarding use of mysql), wiki did not work displaying : Fatal Error: lib/Theme.php:1086: Error: pwd: /u2/web/tadek/www/phpwiki/locale lib/IniConfig.php:711: Warning: chdir(): No such file or directory (errno 2) lib/DbSession/SQL.php:97: Notice: Only variables should be assigned by reference Fatal PhpWiki Error lib/Theme.php:1086: Error: pwd: /u2/web/tadek/www/phpwiki/locale Then I defined PHPWIKI_PATH and error went away, and system works, but on each page displayed I get the warning: PHP Warning lib/IniConfig.php:711: Warning: chdir(): No such file or directory (errno 2) lib/DbSession/SQL.php:97: Notice: Only variables should be assigned by reference Am I missing something in config.ini? I would appreciate any hint. Version 1.2.10 run out-of-box w/o any problems. Tadek -- View this message in context: http://www.nabble.com/phpwiki-installation-problem-t1179675.html#a3103835 Sent from the phpwiki-talk forum at Nabble.com. |
From: joel s. <fox...@gm...> - 2006-02-24 18:41:10
|
For your second issue in lib/DbSession/SQL.php:97 try looking near the bottom of this known bugs page. A couple others have found and resolved similar issues. http://phpwiki.sourceforge.net/phpwiki/KnownBugs On 2/24/06, tadek <tad...@gm...> wrote: > > > Warm greeting, > > I installed phpwiki-1.3.11p1 in my docroot directory. > My server is running on NetBSD, Apache 2.0, php 4.4.1 > Out of the box (after making changes in config.ini regarding use of > mysql), > wiki did not work displaying : > > Fatal Error: > > lib/Theme.php:1086: Error: pwd: /u2/web/tadek/www/phpwiki/locale > > lib/IniConfig.php:711: Warning: chdir(): No such file or directory (errno > 2) > > lib/DbSession/SQL.php:97: Notice: Only variables should be assigned by > reference > > Fatal PhpWiki Error > > lib/Theme.php:1086: Error: pwd: /u2/web/tadek/www/phpwiki/locale > > Then I defined PHPWIKI_PATH and error went away, and system works, but on > each page displayed I get the warning: > > PHP Warning > > lib/IniConfig.php:711: Warning: chdir(): No such file or directory (errno > 2) > > lib/DbSession/SQL.php:97: Notice: Only variables should be assigned by > reference > > Am I missing something in config.ini? I would appreciate any > hint. Version > 1.2.10 run out-of-box w/o any problems. > > Tadek > -- > View this message in context: > http://www.nabble.com/phpwiki-installation-problem-t1179675.html#a3103835 > Sent from the phpwiki-talk forum at Nabble.com. > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > _______________________________________________ > Phpwiki-talk mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwiki-talk > |
From: William L. <le...@k2...> - 2006-03-02 22:32:33
|
For this exact notice, I have been able to make a tiny change to SQL.php that makes it go away. It doesn't seem to have any ill effects yet on my installation. In lib/DbSession/SQL.php Change line 97 From: $dbh = &$this->_connect(); To: $dbh = $this->_connect(); -William Leader joel schaubert wrote: > For your second issue in lib/DbSession/SQL.php:97 try looking near the > bottom of this known bugs page. A couple others have found and > resolved similar issues. > > http://phpwiki.sourceforge.net/phpwiki/KnownBugs > > > |
From: Reini U. <ru...@x-...> - 2006-03-03 07:41:39
|
William Leader schrieb: > For this exact notice, I have been able to make a tiny change to SQL.php > that makes it go away. It doesn't seem to have any ill effects yet on my > installation. > > In lib/DbSession/SQL.php > Change line 97 > From: > $dbh = &$this->_connect(); > To: > $dbh = $this->_connect(); All those fixes and many more are already in 1.3.12_rc2 -- Reini Urban http://phpwiki.org/ http://helsinki.at/ http://spacemovie.mur.at/ |