Re: [mp2] any forum/noticeboard apps out there?

2004-09-02 Thread Perrin Harkins
On Thu, 2004-09-02 at 02:23, Markus Wichitill wrote:
> Since version 2.0 all styling is CSS-based, and you can install multiple 
> user-selectable stylesheets. You can also include header/footer HTML via 
> plugins.

Thanks, that will probably be enough for the uses I was thinking of.

- Perrin


-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Re: [mp2] any forum/noticeboard apps out there?

2004-09-02 Thread Carl Brewer
Markus Wichitill wrote:
Carl Brewer wrote:
I've played with installing this today, I'm seeing
the following in my error logs :
[Thu Sep 02 13:52:41 2004] [error] Can't locate object method 
"cleanup_register" via package "APR::Pool" at 
/data/www/aboc/perl/mwf/MwfMain.pm line 250.\n

Add "use APR::Pool ();" to your startup.pl, I'll add the missing line to 
my code in the next version.
Perfect, working, thankyou Marus.
Carl

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Markus Wichitill
Carl Brewer wrote:
I've played with installing this today, I'm seeing
the following in my error logs :
[Thu Sep 02 13:52:41 2004] [error] Can't locate object method 
"cleanup_register" via package "APR::Pool" at 
/data/www/aboc/perl/mwf/MwfMain.pm line 250.\n
Add "use APR::Pool ();" to your startup.pl, I'll add the missing line to my 
code in the next version.

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Markus Wichitill
Perrin Harkins wrote:
http://www.mwforum.org/
I'm pleased to see this is still being maintained and is up-to-date for 
mp2.  I looked at it once before, but was worried I wouldn't be able to 
customize the appearance of it because it doesn't use templates.  It 
looks like there are still no templates.  Do you have an alternate 
approach for modifying the look and feel?
Since version 2.0 all styling is CSS-based, and you can install multiple 
user-selectable stylesheets. You can also include header/footer HTML via 
plugins.

For real templates that would allow structural changes I would have to 
rewrite much of the code, and there wasn't enough demand for that. Wouldn't 
help performance either.

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Carl Brewer
Markus Wichitill wrote:
Carl Brewer wrote:
Before I take the plunge and write my own, has anyone
here written, or know of, any web forum s/w that runs
under mp2 without using compat?

http://www.mwforum.org/
I've played with installing this today, I'm seeing
the following in my error logs :
[Thu Sep 02 13:52:41 2004] [error] Can't locate object method 
"cleanup_register" via package "APR::Pool" at 
/data/www/aboc/perl/mwf/MwfMain.pm line 250.\n

I've the following in my apache2 config :

  ServerName www.aboc.com.au
  ServerAdmin [EMAIL PROTECTED]
  ServerAlias coach.bl.echidna.id.au aboc.com.au
  DocumentRoot /data/www/aboc/htdocs
  CustomLog /data/www/aboc/logs/access-log combined
  ErrorLog /data/www/aboc/logs/error-log
  # CustomLog /data/www/aboc/logs/mod_deflate deflate
  Alias /perl/ "/data/www/aboc/perl/"
  Alias /images/ "/data/www/aboc/htdocs/images/"
  Alias /admin/ "/data/www/aboc/admin/"
  Alias /mwf/ "/data/www/aboc/perl/mwf/"
  PerlModule Apache2
  PerlSwitches -T
  #PerlOptions +Parent
  PerlRequire "/data/www/aboc/etc/startup.pl"
  # CB.pm needs to be monitored!
  PerlModule Apache::Reload
  PerlInitHandler Apache::Reload
  PerlSetVar ReloadAll Off
  DeflateFilterNote Input instream
  DeflateFilterNote Output outstream
  DeflateFilterNote Ratio ratio
  
SetOutputFilter DEFLATE
  
  
SetOutputFilter DEFLATE
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI
  
  
SetOutputFilter DEFLATE
Options +ExecCGI
SetHandler modperl
PerlResponseHandler ModPerl::RegistryBB
PerlOptions -GlobalRequest -SetupEnv -ParseHeaders
  

and my startup.pl is :
# http://perl.apache.org/docs/2.0/user/config/config.html
use Apache2 ();
  use lib qw(/data/www/aboc/lib /data/www/aboc/perl/mwf);
  use ModPerl::Util (); #for CORE::GLOBAL::exit
  use Apache::RequestRec ();
  use Apache::RequestIO ();
  use Apache::RequestUtil ();
  use Apache::ServerRec ();
  use Apache::ServerUtil ();
  use Apache::Connection ();
  use Apache::Log ();
  use APR::Table ();
  use ModPerl::Registry ();
  use Apache::Const -compile => ':common';
  use APR::Const -compile => ':common';
1;

Any suggestions?  apache says :
Server: Apache/2.0.50 (Unix) mod_perl/1.99_16 Perl/v5.8.5
which should satisfy all mwf's requirements?
Carl


--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Perrin Harkins
Markus Wichitill wrote:
http://www.mwforum.org/
I'm pleased to see this is still being maintained and is up-to-date for 
mp2.  I looked at it once before, but was worried I wouldn't be able to 
customize the appearance of it because it doesn't use templates.  It 
looks like there are still no templates.  Do you have an alternate 
approach for modifying the look and feel?  I'm not just asking to be 
difficult -- I have a need for this kind of app now and then, and things 
like Scoop seem too heavy for just adding a tiny discussion section to a 
site.

- Perrin
--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Markus Wichitill
Carl Brewer wrote:
Before I take the plunge and write my own, has anyone
here written, or know of, any web forum s/w that runs
under mp2 without using compat?
http://www.mwforum.org/
--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


[mp2] any forum/noticeboard apps out there?

2004-09-01 Thread Carl Brewer

Before I take the plunge and write my own, has anyone
here written, or know of, any web forum s/w that runs
under mp2 without using compat?  I know web forums are
kinda evil, but I've got a genuine use for one where I
need to be able to control access to it.
thanks!
Carl

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html