Well, it sounds like you got blosxom partly working so you
should be
able to try the following cgi script:
#!/usr/bin/perl
print "Content-type: text/htmlnn";
print "<pre>n";
foreach $item (keys %ENV)
{ print "$item = $ENV{$item}n"; }
print "</pre>n";
copy this block to a file and name it myenv.cgi. Place it
the same
directory as blosxom.cgi. Change i's permissions with
"chmod 755
myenv.cgi". Then involke from your webrowser with
probably
"
http://faithoftheheart.ahkay/cgi-bin/myenv.cgi" You
would then get a
list of CGI environmental variables, one of which is
DOCUMENT_ROOT.Use
this value in $datadir with /blosxom adde to its value.
On Oct 16, 2006, at 1:34 PM, Beth wrote:
> I'm afraid Peter's solution didn't work. And I have no
experience with
> Perl, so please don't mock me when I ask...what do I do
with it?
>
> Beth
>
|