Page Index Toggle Pages: 1 Send TopicPrint
Hot Topic (More than 10 Replies) Error 300 (Read 2487 times)
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Error 300
Jun 29th, 2004 at 2:29pm
Print Post  
Not sure that this applies to a certain mod but my forum was running fine and all of the sudden all of the posts in one of my forums is gone and trying to open any of the baords gives this error:

300 An Error Has Occured!: Unable to open .cat

Any ideas? Also, my member list shows no members, but I able to log in and all.

http://www.tkff.com/cgi-bin/yabb/YaBB.cgi

??
7sm
  
Back to top
WWW  
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #1 - Jun 29th, 2004 at 6:31pm
Print Post  
I went back and chmod all the files and folders in Members, Messages, Boards, and variables. Didn't help any.

7sm
  
Back to top
WWW  
IP Logged
 
astropilot
God Member
*****
Offline



Posts: 828
Location: Louisville
Joined: Jun 18th, 2003
Gender: Male
Re: Error 300
Reply #2 - Jun 30th, 2004 at 8:26pm
Print Post  
A few questions...

1) Do you have all your boards cat files for each forum?
2) Do you have the ctb file for each categorie (like kungfu.ctb)?

It sounds like your missing the latter.  Try this, either open the file, as an example, kungfu.ctb or create one in a text editor.  Make sure the name of the forum that it's in, in this case "arts" is named on the first line of the kungfu.ctb file.  If not put it there.  Save and upload.

Let us know how if it works.

astro-pilot
  

"For I am not ashamed of the gospel of Christ..."
Romans 1:16
---
http://www.ssflynn.com
www.flynnfarmsofkentucky.com
Back to top
 
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #3 - Jun 30th, 2004 at 9:27pm
Print Post  
OK, should there be .cat files for every board such as kung fu, tai chi etc, or just for the main categories such as arts, general, support?

I have the .ctb files for every board but they are blank!?! I guess thats not a good thing? If I create one, all I need to put in it is the name of the board?

7sm
  
Back to top
WWW  
IP Logged
 
astropilot
God Member
*****
Offline



Posts: 828
Location: Louisville
Joined: Jun 18th, 2003
Gender: Male
Re: Error 300
Reply #4 - Jun 30th, 2004 at 9:56pm
Print Post  
The cat files are for the board, arts, general, etc...  If you have blank ctb files, you need to do wwhat I said in my first post and see if that works.  I think it will.

Remember, the ctb file is the category file.  It needs to have the name of the board that its in on the first line.  That name corresponds to the name of the cat file that YaBB needs to open.

Good luck.

astro-pilot
  

"For I am not ashamed of the gospel of Christ..."
Romans 1:16
---
http://www.ssflynn.com
www.flynnfarmsofkentucky.com
Back to top
 
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #5 - Jun 30th, 2004 at 10:26pm
Print Post  
sweet, your the man. Um, one fixed, one to go. When trying to login or view members, or access admin section I'm getting this error now:

Untrapped Error:
./Sources/SubList.pl did not return a true value at YaBB.cgi line 52.

Any ideas on that one?

7sm
  
Back to top
WWW  
IP Logged
 
astropilot
God Member
*****
Offline



Posts: 828
Location: Louisville
Joined: Jun 18th, 2003
Gender: Male
Re: Error 300
Reply #6 - Jun 30th, 2004 at 10:39pm
Print Post  
Do you have the file SubList.pl?  Does it look anything like the original version when you first started to mod?  Can you post your SubList.pl file.  Just copy the code and put it in between thse
Code
Select All
 tags.

You also might want to open up YaBB.cgi and make sure the sub yymain looks like this

 [code]sub yymain {
#### Choose what to do based on the form action ####
if ($maintenance == 1 && $action eq 'login2') { require "$sourcedir/LogInOut.pl"; &Login2; }
if ($maintenance == 1 && $settings[7] ne 'Administrator') { require "$sourcedir/Maintenance.pl"; &InMaintenance; }
### Guest can do the very few following actions.
if($username eq 'Guest' && $guestaccess == 0) {
      if(!(($action eq 'login') || ($action eq 'login2') || ($action eq 'register') || ($action eq 'register2') || ($action eq 'reminder') || ($action eq 'reminder2'))) { &KickGuest; }
}

if ($action ne "") {
      require "$sourcedir/SubList.pl";
      if ($director{$action}) {
            @act = split(/&/,$director{$action});
            $aa = $act[1];
            require "$sourcedir/$act[0]"; &$aa;
      } else { require "$sourcedir/BoardIndex.pl"; &BoardIndex; }
}
elsif($currentboard eq "") { require "$sourcedir/BoardIndex.pl"; &BoardIndex; }
else { require "$sourcedir/MessageIndex.pl"; &MessageIndex; }

exit;
} 



BTW, what did you do to get all these problems?  Server crash?

astro-pilot
  

"For I am not ashamed of the gospel of Christ..."
Romans 1:16
---
http://www.ssflynn.com
www.flynnfarmsofkentucky.com
Back to top
 
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #7 - Jun 30th, 2004 at 10:51pm
Print Post  
Actually I think I got hacked. Everything was cool and all of the sudden these problems started happeneing.

My SubList.pl file is actually blank, that could be the problem. I have a backup at home, I'll upload tonight when I get home.

My YaBB.cgi looks just like that one.

7sm
  
Back to top
WWW  
IP Logged
 
scaredwitless
God Member
*****
Offline


I got nothing

Posts: 502
Location: Woodbridge
Joined: May 30th, 2003
Gender: Male
Re: Error 300
Reply #8 - Jun 30th, 2004 at 10:52pm
Print Post  
Did you run out of space on your server maybe?
  
Back to top
WWW  
IP Logged
 
astropilot
God Member
*****
Offline



Posts: 828
Location: Louisville
Joined: Jun 18th, 2003
Gender: Male
Re: Error 300
Reply #9 - Jun 30th, 2004 at 10:52pm
Print Post  
So if you really think my help has been valuable, I think I should get more than 30 days free kung fu training and the uniform should also be free.  But it would be quite a commute from Louisville, KY to Tyler, Tx, lol Wink.

astro-pilot
  

"For I am not ashamed of the gospel of Christ..."
Romans 1:16
---
http://www.ssflynn.com
www.flynnfarmsofkentucky.com
Back to top
 
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #10 - Jul 1st, 2004 at 1:49am
Print Post  
LOL, well if you make the drive, I'll give you a free uniform!!
  
Back to top
WWW  
IP Logged
 
7starmantis
New Member
*
Offline



Posts: 33
Joined: May 28th, 2004
Gender: Male
Re: Error 300
Reply #11 - Jul 1st, 2004 at 1:50am
Print Post  
Oh guess what? I tried to apply the security_mod.mod and now all I'm getting is a 500 Internal Server Error!!

This is getting to be liek a Marx Brothers Movie!

7sm
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint