Re: 2.2.0 install problem

[email protected] Fri, 15 Apr 2005 04:42:43 +0200
Newsgroups gmane.comp.cms.campsite.general
Message-ID <[email protected]>
This message was sent from: Campsite Support.
<http://www.campware.org/phorum_en/read.php?f=8&i=250&t=248> 
----------------------------------------------------------------

SOLVED:

This line in .install_conf/global_functions is the culprit (Line 229):

[ "$WHICH" = "" ] && export WHICH=`which --skip-alias which 2> /dev/null`

Debian's 'which' does not support the --skip-alias switch. replacing the
line with:

[ "$WHICH" = "" ] && export WHICH=`which which 2> /dev/null`

Allows the install to continue.

Now, my next problem, when installing, it only shows PARSER as a
configureable module, and the install eventually fails.

Last lines of install_log are:

Fatal error: Call to undefined function:  mysql_connect() in
/usr/local/campsite/bin/create_instance.php on line 149
make: *** [default_instance] Error 255

 Tod.

----------------------------------------------------------------
Sent using Phorum software version 3.4.3a <http://phorum.org>