Welcome to the E-Blah Community!
We would like to welcome you to our community and invite you to register an account or login.
Being a registered member is important, as it gives you several advantages over the normal Guest status. After registering you will be able to download files and images, post messages, and access member-only portions of the forum - just to name a few. Registration is quick and simple, and only takes about a minute of your time.

E-Blah Community    Technical Support    Install Issues  ›  Install ongodaddy
Users Browsing Forum
No Members and 1 Guests

Install ongodaddy  This thread currently has 1,007 views. Print
2 Pages 1 2 » Recommend Thread
bvrettski
February 12, 2007, 9:54am Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
I received the following errors upon trying to install eblah on a godaddy server, Any help would be appreciated.

Document Root: /home/content/s/c/o/scottyboy/html
Script name: /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl
File(s) Not Loaded: ./Settings.pl, ./Settings_Default.pl
Reason for failure: No such file or directory
Logged Offline
Private Message Private message
Justin
February 12, 2007, 3:20pm Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
Rename Settings_Default.pl to Settings.pl and change $root in Settings.pl to /home/content/s/c/o/scottyboy/html/cgi/forum.  Change ./Settings.pl in Blah.pl and Setup.pl to /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 1 - 16
bvrettski
February 12, 2007, 4:21pm Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
You said:

Change ./Settings.pl in Blah.pl and Setup.pl to /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl.

I don't see ./Settings.pl in the "blah.pl" file.

#!/usr/bin/perl

############################################################
# E-Blah Bulliten Board Systems            01 January 2007 #
############################################################
# Software Version: 10.1.5                                 #
# Project started : December 2001 by Justin                #
# Distributed by  : http://www.eblah.com &nbs.....p;    #
# License         : http://www.eblah.com/license.php       #
############################################################
# This program is free software; you can redistribute it   #
# and/or modify it under the terms of the GNU General      #
# Public License as published by the Free Software         #
# Foundation; either version 2 of the License, or (at your #
# option) any later version.                               #
# This program is distributed in the hope that it will be  #
# useful, but WITHOUT ANY WARRANTY; without even the       #
# implied warranty of MERCHANTABILITY or FITNESS FOR A     #
# PARTICULAR PURPOSE.  See the GNU General Public License  #
# for more details.                                        #
############################################################
# Copyright (c) 2001 - 2007 E-Blah.                        #
############################################################
# Uncomment to enable error handling:                      #
# use CGI::Carp fatalsToBrowser;                           #
############################################################

# Global information:
$theblahver  = 16;
$version     = $versioncr = '10.2'; # Said Version; Copyright version

# Filename information
$scriptname = $scriptname || 'Blah.pl'; # Change name of Blah.pl
$modrewrite = $modrewrite || '?';       # Setting, mod_rewrite: on = '' | off = '?'

use Fcntl ':flock';

# Default language
$languagep = "English";
$languages = "./Languages";

require('Settings.pl') || RunSetup();

require("$code/QuickCore.pl");
UFS();
CheckCookies();
GetThemes();

$language = "$languages/$languagep";
require("$language.lng");
require("$code/Routines.pl");
require("$code/Load.pl");

# Remove the theme variable for guests/search engines
redirect() if($URL{'theme'} && $username eq 'Guest');

# Load basic features we can use later
CreateGroups();
BoardCheck();
ClickLog();
AL();

GetMemberID($username) if($username ne 'Guest');

# Lets see if this user should have access ...
if(($maintance || $noguest) || $lockout || -e("$root/Maintance.lock")) { CoreLoad('BoardLock'); MainLO(); }
Ban();

sub UFS {
     my($query);
     @url = split(/\//,$ENV{'QUERY_STRING'});
     foreach (@url) {
          ($action,$actiondo) = split(/-/,$_);
          $URL{$action} = $actiondo;

          if($action =~ /\&/) { $blockform = 1; } # Hack attemp, block forms!!
     }

     if(!$blockform) {
          if($ENV{'CONTENT_TYPE'} =~ /multipart\/form-data/) { # If it's an upload (uses CGI library) ...
               require CGI || error("CGI Load error"); import CGI qw(:standard);
               $form = new CGI;
               foreach $var ($form->param) {
                    $output = join(',',$form->param($var));
                    if(!$nouselist{$var}) { $FORM{$var} = $output; }
               }
          } else { # If it's not ...
               read(STDIN, my $temp, $ENV{'CONTENT_LENGTH'});
               @pairs = split(/&/,$temp);

               foreach (@pairs) {
                    ($key,$content) = split(/=/,$_);
                    $content =~ tr/+/ /;
                    $content =~ s/%(..)/pack("c",hex($1))/ge;
                    $key =~ tr/+/ /;
                    $key =~ s/%(..)/pack("c",hex($1))/ge;
                    chomp($content);
                    $FORM{$key} = $content;
               }
          }
     }
}

sub CoreLoad {
     my($temp1,$temp2) = @_;
     if($CoreLoaded{$temp1,$temp2}) { return(); }
     $CoreLoaded{$temp1,$temp2} = 1;
     if($temp2 == 1) { $load = "$language/$temp1.lng"; }
     elsif($temp2) { $load = $temp1; }
          else { $load = "$code/$temp1.pl"; }
     eval { require($load) };

     if($_[1] == 2) {
          if($@) { return(0); }
          return(1);
     }
     if($@) { error(qq~$rtxt[52]\n\n$load\n\n\[size=9\]$@\[/size\]~,2); }
}

{
     %LoadBoard = (
          'memberpanel' => 'MemberPanel,MemberPanel',
          'login'       => 'Login,Login',
          'mod'         => 'Moderate,Moderate',
          'register'    => 'Register,Register',
          'admin'       => 'AdminList,AdminList',
          'post'        => 'Post,Post',
          'ppoll'       => 'Poll,PPoll',
          'display'     => 'MessageDisplay,MessageDisplay',
          'mindex'      => 'MessageIndex,MessageIndex',
          'print'       => 'Print,PrintDisplay',
          'members'     => 'Members,Members',
          'report'      => 'Report,Report',
          'cal'         => 'Calendar,CalendarLoad',
          'download'    => 'Attach,Download',
          'stats'       => 'Stats,Stats',
          'search'      => 'Search,Search',
          'invite'      => 'Invite,Invite',
          'recommend'   => 'Recommend,Recommend',
          'mark'        => ',Mark',
          'shownews'    => 'Portal,Shownews',
          'portal'      => 'Portal,Portal'
     );

     if($LoadBoard{$URL{'v'}}) {
          ($core,$sub) = split(',',$LoadBoard{$URL{'v'}});
          CoreLoad($core) if($core ne '');
          &$sub();
     } elsif($URL{'m'}) { CoreLoad('MessageDisplay'); MessageDisplay(); }
     elsif($URL{'b'}) { CoreLoad('MessageIndex'); MessageIndex(); }
          else {
               error($gtxt{'notfound'},0,1) if($URL{'v'} ne '');
               CoreLoad('BoardIndex'); LoadIndex();
          }
     exit;
}
1;


Help...
Logged Offline
Private Message Private message Reply: 2 - 16
Justin
February 12, 2007, 5:21pm Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
require('Settings.pl') || RunSetup();

Settings.pl ./Setting.pl, same thing.  


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 3 - 16
bvrettski
February 12, 2007, 5:41pm Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
I did that and got this instead...

Document Root: /home/content/s/c/o/scottyboy/html
Script name: /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl
File(s) Not Loaded: /QuickCore.pl, ./Settings_Default.pl
Reason for failure: No such file or directory
Logged Offline
Private Message Private message Reply: 4 - 16
Justin
February 12, 2007, 10:28pm Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
You didn't change $root in Settings.pl.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 5 - 16
bvrettski
February 12, 2007, 10:51pm Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
Pretty sure I did...

It reads:

# What is the directory that Settings.pl is located in?
$root = "home/content/s/c/o/scottyboy/html/cgi/forum";
Logged Offline
Private Message Private message Reply: 6 - 16
Justin
February 12, 2007, 11:04pm Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
You forgot the / at the beginning.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 7 - 16
bvrettski
February 12, 2007, 11:30pm Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
Added the "/"

# What is the directory that Settings.pl is located in?
$root = "/home/content/s/c/o/scottyboy/html/cgi/forum";

Still got:

Document Root: /home/content/s/c/o/scottyboy/html
Script name: /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl
File(s) Not Loaded: /QuickCore.pl, ./Settings_Default.pl
Reason for failure: No such file or directory

Attached are the setup files we have configured...



This post contains attachments; to download them you must login.

Logged Offline
Private Message Private message Reply: 8 - 16
Justin
February 13, 2007, 12:10am Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
Settings.pl, not Setup.pl in Setup.pl.  You need to load Settings.pl, not Setup.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 9 - 16
bvrettski
February 13, 2007, 8:32am Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
I just followed what you said:

Change ./Settings.pl in Blah.pl and Setup.pl to /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl.

Led me to believe to change both of those to :  /home/content/s/c/o/scottyboy/html/cgi/forum/Setup.pl.

I'm no programmer..just following your dirrections here...

Thanks
Logged Offline
Private Message Private message Reply: 10 - 16
bvrettski
February 13, 2007, 8:37am Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
It went through all the setup with the aminstrators account info...told me i should delete the setup file. I clicked yes and got this after the file deletion confirmation page:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
Apache/1.3.33 Server at http://www.ontrackguitar.com Port 80
Logged Offline
Private Message Private message Reply: 11 - 16
Justin
February 13, 2007, 11:32am Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
Now change 'Settings.pl' in Blah.pl to '/home/content/s/c/o/scottyboy/html/cgi/forum/Settings.pl', that should fix it.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 12 - 16
bvrettski
February 14, 2007, 8:42am Report to Moderator Report to Moderator
E-Blah Member
Posts: 30
Posts Per Day: 0.03
Time Online: 3 hours 23 minutes
Thanks for  your help on this...

That did the trick but I have one problem now. None of the interfact icons are showing up. Do I need to to recode something to point them to the right directory?
Logged Offline
Private Message Private message Reply: 13 - 16
Justin
February 14, 2007, 3:13pm Report to Moderator Report to Moderator

The E-Blah Developer
E-Blah Programmer
Posts: 15,075
Gender: Male
Posts Per Day: 6.52
Reputation: 93.40%
Reputation Score: +297 / -21
Time Online: 36 days 23 hours 27 minutes
Location: Tallassee, AL
Age: 22
I presume you figured it out?

To get rid of the borders, add:

img { border: 0; }


to your CSS template.


I do installs for $25 and upgrades for $20.
Technical support is always free.

  Donate to E-Blah!  

My Websites: Revolution Reality (My Blog)  |  MinistryTalk.com  |  Portfolio

"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV

Logged Offline
Site Site Private Message Private message Reply: 14 - 16
2 Pages 1 2 » Recommend Thread
Print

E-Blah Community    Technical Support    Install Issues  ›  Install ongodaddy