Installing YaBB? its not working...

 
Post new topic   Reply to topic    Aprelium Forum Index -> Perl
View previous topic :: View next topic  
Author Message
gman
Guest





PostPosted: Fri Dec 06, 2002 4:26 am    Post subject: Installing YaBB? its not working... Reply with quote

well...
I have the 'perl' version of YaBB which I tried installing. I get a 500 error. I followed your instructions and everything.
Is it something dealing with my set-up?
I have all my things in the correct order so I don't see what should be wrong? :?
Well... if you can respond, thanks. It would be great if you had experience setting YaBB up too :D
Back to top
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Fri Dec 06, 2002 1:19 pm    Post subject: Re: Installing YaBB? its not working... Reply with quote

gman wrote:
well...
I have the 'perl' version of YaBB which I tried installing. I get a 500 error. I followed your instructions and everything.
Is it something dealing with my set-up?
I have all my things in the correct order so I don't see what should be wrong? :?
Well... if you can respond, thanks. It would be great if you had experience setting YaBB up too :D

Check the log/cgi.log file to see why the Perl interpreter can't run the script.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
Guest






PostPosted: Fri Dec 06, 2002 5:31 pm    Post subject: yabba dabba doo! Reply with quote

this board works ...and is very easy to setup ! the most easiest ! :lol:

make sure your yabb files *.pl files is set correctly! :D :wink:

lordgoose out!
Back to top
gman
Guest





PostPosted: Fri Dec 06, 2002 5:38 pm    Post subject: Reply with quote

flock() unimplemented on this platform at ./Sources/Subs.pl line 862.
Thats what it said in my logs. Does this mean I can't use the . statement in my urls?

Sorry about this, I've never set up a message board before :(
Back to top
!Keys
-


Joined: 23 Nov 2002
Posts: 156
Location: Holland, Enschede

PostPosted: Fri Dec 06, 2002 11:15 pm    Post subject: Reply with quote

have you followed the instructions correctly? if so, forget Yabb and download YaBB SE(php edition)


lots easier :D
_________________
!Keys || MwM^computerware
Back to top View user's profile Send private message MSN Messenger
gman
Guest





PostPosted: Fri Dec 06, 2002 11:25 pm    Post subject: Reply with quote

Wont I need MySQL for that? or is that optional? :?
Back to top
!Keys
-


Joined: 23 Nov 2002
Posts: 156
Location: Holland, Enschede

PostPosted: Fri Dec 06, 2002 11:26 pm    Post subject: Reply with quote

You need mysql yup... just download it and extract it into your abys dir, then start winmysqladmin.exe and when u see the green stosign in the taskbar everything is fine, just change ur pass, but it´ll probably as that upon first start
_________________
!Keys || MwM^computerware
Back to top View user's profile Send private message MSN Messenger
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Sat Dec 07, 2002 8:13 am    Post subject: Reply with quote

gman wrote:
flock() unimplemented on this platform at ./Sources/Subs.pl line 862.
Thats what it said in my logs. Does this mean I can't use the . statement in my urls?

Sorry about this, I've never set up a message board before :(

flock instruction is available on UNIX systems only (This is a Perl limitation, not related to the web server.) On Windows systems, it has no meaning and should be ignored. Are you sure you downloaded a Windows compatible package of YaBB?
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
Guest






PostPosted: Sat Dec 07, 2002 10:05 am    Post subject: fixing flock commands for yabb! Reply with quote

gman, you can disable flock in the script just look for the line with flock and disable it with 1 or 0 and everything will be fine :)

lorgoose out (ps. yabb doesnt need mysql and yabb se does!) :D


l8r
Back to top
!Keys
-


Joined: 23 Nov 2002
Posts: 156
Location: Holland, Enschede

PostPosted: Sat Dec 07, 2002 1:20 pm    Post subject: Reply with quote

Yep, but with yabb, the cgi version you have to chmod a lot, chomdding is difficult without ftp support, so when ur going local yabb, take yabb SE, u don´t want mysql database and you like chmodding forever ánd u have a webhost somewhere else.. fine, take the cgi vreson :D
_________________
!Keys || MwM^computerware
Back to top View user's profile Send private message MSN Messenger
Guest






PostPosted: Sat Dec 07, 2002 5:42 pm    Post subject: Reply with quote

Thanks, I'll try turning off flock and then I hope I won't get a 500 error then :)
Back to top
gman
Guest





PostPosted: Sat Dec 07, 2002 5:55 pm    Post subject: Reply with quote

I changed all the $use_flock == 1 to $use_flock == 0
Now I get this error:
Can't locate .Sources/Subs.pl in @INC (@INC contains: C:/Perl/lib C:/Perl/site/lib .) at yabb.pl line 35.
Back to top
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Sun Dec 08, 2002 1:12 pm    Post subject: Reply with quote

gman wrote:
I changed all the $use_flock == 1 to $use_flock == 0
Now I get this error:
Can't locate .Sources/Subs.pl in @INC (@INC contains: C:/Perl/lib C:/Perl/site/lib .) at yabb.pl line 35.

The error is self explanatory. The paths declared as INCLUDE paths doesn't contain the referenced file. You should update the @INC in the Perl configuration to contain the path containing the requested file.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
gman
-


Joined: 10 Dec 2002
Posts: 3

PostPosted: Tue Dec 10, 2002 1:03 am    Post subject: Reply with quote

this is the only line with @inc in it:
@INC,$yypath

And the includes look all right to me as well.
### Requirements and Errors ###
use CGI qw(header cookie); # so we can use the header and cookie printing
$CGI::HEADERS_ONCE = 1; # Kill redundant headers
require "Settings.pl";
require "$language";
require "$sourcedir/Subs.pl";
require "$sourcedir/Load.pl";
require "$sourcedir/Security.pl";

Thats what they should be, isn't it? :?
Back to top View user's profile Send private message
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Tue Dec 10, 2002 1:36 am    Post subject: Reply with quote

gman wrote:
this is the only line with @inc in it:
@INC,$yypath

And the includes look all right to me as well.
### Requirements and Errors ###
use CGI qw(header cookie); # so we can use the header and cookie printing
$CGI::HEADERS_ONCE = 1; # Kill redundant headers
require "Settings.pl";
require "$language";
require "$sourcedir/Subs.pl";
require "$sourcedir/Load.pl";
require "$sourcedir/Security.pl";

Thats what they should be, isn't it? :?

We don't know how you configured the rest of the script but obvioulsy you missed some step which leads to that error. So please check again the installation instructions of YaBB. If you still run in trouble, and as this is only a script installation issue, the best is to ask YaBB tech support/community for help. They can give better advice on what they know best.
gman, we provide tech support only for Abyss Web Server and we can only help you with easy questions about scripts. In no way we will provide tech support for something we haven't written.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
!Keys
-


Joined: 23 Nov 2002
Posts: 156
Location: Holland, Enschede

PostPosted: Mon Dec 16, 2002 9:13 pm    Post subject: Reply with quote

erhm, i just downloaded your YaBB version, it´s working fine here :|
_________________
!Keys || MwM^computerware
Back to top View user's profile Send private message MSN Messenger
mekp21
-


Joined: 27 Mar 2003
Posts: 2

PostPosted: Sat Mar 29, 2003 6:11 am    Post subject: it was simple in the end Reply with quote

I was gettin frustated with it myself trying different settings on different things. You talk like you are running the server from your home like i am. in the end the problem turned out to be the directory (where its put www.mysite.com /yabb) I needed to just change that to "localhost instead of a www address. In the end it was simple! looks good and cant wait to use it but still need to add a mail server.

also is there a way not to use a ail server as the website will only be accessable by 15 or less ppl? can I edit one of the files in the members directory and add the user/pass myself?
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> Perl All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group