sava.tatic | 12 Apr 10:43

Critical upgrade

Dear all,

We urge you to update your 2.1.x instances of campsite. The new 2.1.7
version of campsite can be found at:
http://www.campware.org/look/campware/download/campsite-2.1.7.tar.gz

manual:
http://www.campware.org/look/campware/download/manual-2.1.7.tar.gz

I contains many security bug fixes, including:

- check if cookies were modified in a certain way to allow invalid user
login
- do not allow operations outside look directory for the following scripts:
    - template list script
    - template edit script
    - template save script
    - template create script
    - template duplicate script
    - template upload script
    - template delete script
    - directory create script
    - directory delete script

Best regards,

Sava

__________________________________
Do you Yahoo!?
(Continue reading)

sava.tatic | 14 Apr 18:36

It's Official: 2.2.0 is Here!

Dear All,

I am proud to announce that we have a new major version of Campsite ready
for download. As you will see, Campsite 2.2.0 "Mara" marks a new direction
in Campsite development and a lot of work has gone into it. Most kudos go
to Mugur Rus and Paul Baranowski.

Here are the highlights:

- JavaScript-based HTMLArea has replaced the Campfire Java editor, ending
Campsite's reliance on the Java VM plugin and bringing all sorts of
enhancements, including full what-you-see-is-what-you-get (WYSIWYG).
- a streamlined and beautified user interface
- improved management of multiple instances of Campsite on a single server
(new instances can be created without reinstalling Campsite)
- Automatic publishing/removal of selected articles without human
intervention at a specified date and time
- Article ordering
- New handling of Images (and other Multimedia)
- Publication site aliases: aliases allow Campsite to identify a
publication based on multiple domain names
- Shorter, Search Engine-Friendly URLs

You can download 2.2.0 "Mara" here:

http://www.campware.org/look/campware/download/campsite-2.2.0.tar.gz
(size: 2 MB)

The manual is here:

(Continue reading)

campsite-support | 15 Apr 02:36

2.2.0 install problem

This message was sent from: Campsite Support.
<http://www.campware.org/phorum_en/read.php?f=8&i=248&t=248> 
----------------------------------------------------------------

Under debian, as root, I do the following:

wget http://www.campware.org/look/campware/download/campsite-2.2.0.tar.gz

tar xvzf campsite-2.2.0.tar.gz

cd campsite

./install

and I get:

Preparing install environment...OK
executable killall not found in /bin/:/usr/bin/:/usr/local/bin/:/opt/bin/

'which killall' gives:

/usr/bin/killall

Commenting out the check for killall (only for troubleshooting purposes,
of course) and re-running install gets me:

executable g++ not found in /bin:/usr/bin:/usr/local/bin:/opt/bin

Needless to say, g++ is also installed (in /usr/bin as well)

(Continue reading)

campsite-support | 15 Apr 03:11

Re: 2.2.0 install problem

This message was sent from: Campsite Support.
<http://www.campware.org/phorum_en/read.php?f=8&i=249&t=248> 
----------------------------------------------------------------

UPDATE:

The problem appears to be the test for executeability, located in
.install_conf/global_functions

Removing the switch --executable allows the test to succeed.

Yes, my killall is executeable ;)

I'll keep looking.

 Tod.

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

campsite-support | 15 Apr 04:42

Re: 2.2.0 install problem

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> 
(Continue reading)

Ondra Koutek | 15 Apr 09:01

Re: Re: 2.2.0 install problem

The problem with WHICH is the same as the one on FreeBSD and I posted this 
solution to bugzilla last week.

I tried to process instalation i a way
./configure --upgrade
make
make install
create instance .....

On FreeBSD process stops at make part.

Ondra

On Friday 15 April 2005 04:42, campsite-support <at> eserver2.mdlf.org wrote:
> 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.
(Continue reading)

Mugur Rus | 15 Apr 11:00
Picon
Favicon

Re: Re: 2.2.0 install problem

> 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.
Sorry, I should have fixed this for 2.2.0 but somehow I forgot to make the
changes to CVS.

> Now, my next problem, when installing, it only shows PARSER as a
> configureable module, and the install eventually fails.
Yes, the parser is the only configurable module at when installing the campsite
base. It's not an error. When creating instances the user has the option to
configure every module. Type: /usr/local/campsite/bin/create_instance --help

> Fatal error: Call to undefined function:  mysql_connect() in
> /usr/local/campsite/bin/create_instance.php on line 149
> make: *** [default_instance] Error 255
Please install php-mysql extension; I'll modify the script to display a message
explaining what you have to install when this error poped up.

Mugur

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

campsite-support | 15 Apr 23:02

Install Compile Errors - RHEL AS 3.0

This message was sent from: Campsite Support.
<http://www.campware.org/phorum_en/read.php?f=8&i=253&t=253> 
----------------------------------------------------------------

I am trying to test this Web Editor out to see if it fits my needs.
However, I can't get past Step 2 - Compiling Sources during the
./install.

The install_log doesn't help much. The only thing that I can think of is
that my install of MySQL is not in the default place, so CampSite can't
see it.

Anyone have any thoughts?

PHP 5.0.4, MySQL 4.2.11, Apache 2.0.4

Thanks!
J.R.

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

campsite-support | 15 Apr 23:03

Install Compile Errors - RHEL AS 3.0

This message was sent from: Campsite Support.
<http://www.campware.org/phorum_en/read.php?f=8&i=254&t=254> 
----------------------------------------------------------------

I am trying to test this Web Editor out to see if it fits my needs.
However, I can't get past Step 2 - Compiling Sources during the
./install.

The install_log doesn't help much. The only thing that I can think of is
that my install of MySQL is not in the default place, so CampSite can't
see it.

Anyone have any thoughts?

PHP 5.0.4, MySQL 4.2.11, Apache 2.0.4

Thanks!
J.R.

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

Ondra Koutek | 15 Apr 23:26

Re: Install Compile Errors - RHEL AS 3.0

I would like to ask about what version of Campsite and what oS
(Linux/FreeBSD and distribution) are you using and what exactly is in
install_log.

General answer:
1) Campsite 2.1.x does not work on PHP 5.x, use 4.x
2) Install mysql-dev package
3) You need user to MySQL with full rights to install campsite and
install process needs to know this user/password.

Ondra

On Fri, 2005-04-15 at 23:03 +0200, campsite-support <at> eserver2.mdlf.org
wrote:
> This message was sent from: Campsite Support.
> <http://www.campware.org/phorum_en/read.php?f=8&i=254&t=254> 
> ----------------------------------------------------------------
> 
> I am trying to test this Web Editor out to see if it fits my needs.
> However, I can't get past Step 2 - Compiling Sources during the
> ./install.
> 
> The install_log doesn't help much. The only thing that I can think of is
> that my install of MySQL is not in the default place, so CampSite can't
> see it.
> 
> Anyone have any thoughts?
> 
> PHP 5.0.4, MySQL 4.2.11, Apache 2.0.4
> 
(Continue reading)


Gmane