24 lines
863 B
Plaintext
24 lines
863 B
Plaintext
|
#!/usr/bin/speedy
|
||
|
|
||
|
# Nathan moved this to speedycgi, Nov 23 2017 #!/usr/bin/perl
|
||
|
|
||
|
# ==================================================================
|
||
|
# Gossamer Forum - Advanced web community
|
||
|
#
|
||
|
# Website : http://gossamer-threads.com/
|
||
|
# Support : http://gossamer-threads.com/scripts/support/
|
||
|
# CVS Info :
|
||
|
# Revision : $Id: gforum.cgi,v 1.56 2006/03/31 21:32:04 jagerman Exp $
|
||
|
#
|
||
|
# Copyright (c) 2006 Gossamer Threads Inc. All Rights Reserved.
|
||
|
# Redistribution in part or in whole strictly prohibited. Please
|
||
|
# see LICENSE file for full details.
|
||
|
# ==================================================================
|
||
|
|
||
|
use strict;
|
||
|
use lib '/home/slowtwitch/forum.slowtwitch.com/cgi-bin/admin';
|
||
|
use GForum qw/$PLG/;
|
||
|
|
||
|
GForum::init('/home/slowtwitch/forum.slowtwitch.com/cgi-bin/admin');
|
||
|
$PLG->dispatch(main => \&GForum::request);
|