Page Index Toggle Pages: 1 [2] 3 4  Send TopicPrint
Very Hot Topic (More than 25 Replies) YaBB 2 Is Here! (Read 25334 times)
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: YaBB 2 Is Here!
Reply #15 - Dec 30th, 2004 at 1:33pm
Print Post  
Kong wrote on Dec 30th, 2004 at 8:11am:
Okay.... I'm getting it all setup and so far I like but I found a problem.

I'm using a back up of 3DXL to test and check it out.  This includes members.  I had the password security mod installed (encrypted passwords).  No one can log in unless they use thier encripted password to do it.

For wxample, if the members password was dog and password seciruty encrypted it to y38shl30sh3 then that member woudl have to log in with the password y38shl30sh3.

Anyone know a way around this?  Maybe a script to decrypt and write the decrypted password into username.dat before conversion?
There is no way to decrypt the passwords, that's the general idea about encrypting passwords, it's always one-way! Either you change your Y2 to us encrypted passwords too or you'll have to send your members the "new" passwords (they could use the recover password function too).
  

The Administrator.
Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: YaBB 2 Is Here!
Reply #16 - Dec 30th, 2004 at 1:34pm
Print Post  
Kong wrote on Dec 30th, 2004 at 9:11am:
I get the same error... can't find the forum/default.css
What's the exact error message?
  

The Administrator.
Back to top
WWW  
IP Logged
 
TheSkier
Junior Member
**
Offline



Posts: 94
Location: Sakhalin
Joined: Jul 9th, 2004
Gender: Male
Re: YaBB 2 Is Here!
Reply #17 - Dec 30th, 2004 at 1:59pm
Print Post  
Kong wrote on Dec 30th, 2004 at 9:11am:
...
When I go into Admin Section I can't Edit Template Configuration or Edit Style Sheet.

I get the same error... can't find the forum/default.css
...

hi!
double  check the following variables in Paths.pl:
$forumstylesdir = "/path_to_yabb2/yabbfiles/Templates/Forum";
$adminstylesdir = "/path_to_yabb2/yabbfiles/Templates/Admin";

$htmldir = "/path_to_yabb2/yabbfiles";

$forumstylesurl = "http://localhost/yabb2/yabbfiles/Templates/Forum";
$adminstylesurl = "http://localhost/yabb2/yabbfiles/Templates/Admin";
$html_root = "http://localhost/yabb2/yabbfiles";
...
its better omit "http://..." part from last 3 variables  as below:
$html_root = "/yabb2/yabbfiles";
  
Back to top
WWW  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: YaBB 2 Is Here!
Reply #18 - Dec 30th, 2004 at 7:30pm
Print Post  
The problem is because of the way the server is setup.

For example, when you look at it through a browser it's...

/ (root)
/cgi-bin
/cgi-bin/yabb2
/yabbfiles

but the directory stucture on the server itself is...

/cgi-bin
/cgi-bin/yabb2
/html/yabbfiles

So, for example, I have to setup my smilies dir like so...

$smiliesdir = "../../html/yabbfiles/smilies";

When I setup $forumstylesdir like that it tells me i have to use an absolute path.  But it can't find the files.  I've tried...

$forumstylesdir = "/yabbfiles/templates/forum";
$forumstylesdir = "/html/yabbfiles/templates/forum";

I have it working now.  I had to use the following...  (# to block what i dont' want people to see Wink)

$forumstylesdir = "#:/######/#####/######/html/yabbfiles/templates/forum";

I'm wondering if i will have to do this with other settings as well.
  


Back to top
 
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: YaBB 2 Is Here!
Reply #19 - Dec 30th, 2004 at 8:02pm
Print Post  
On how to convert crypted passwords to the new format:
http://yabbtest.spikecity.net/cgi-bin/SP2/YaBB.pl?num=1097310977/15#15

It might be outdated, considering that was a few releases ago. But it should still work.
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: YaBB 2 Is Here!
Reply #20 - Dec 30th, 2004 at 8:04pm
Print Post  
Quote:
There is no way to decrypt the passwords, that's the general idea about encrypting passwords, it's always one-way! Either you change your Y2 to us encrypted passwords too or you'll have to send your members the "new" passwords (they could use the recover password function too).

You're sure there is absolutely no way to decrypt the passwords? Sad

Well that sucks.

Edit...

Just saw the above post.  Gonna try it at some point soon.  Let you know how ti goes.

Edit... AGain...

What file to I have to edit? Tongue
  


Back to top
 
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: YaBB 2 Is Here!
Reply #21 - Dec 30th, 2004 at 8:47pm
Print Post  
You need to edit LogInOut.pl. Basically, what it does is tries to verify passwords using the old crypt method, and if that works, it converts the password to the new format. It could still have some bugs in it, but it worked for me.
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
Tea-Master
Forum Administrator
*****
Offline



Posts: 1945
Location: north germany
Joined: Oct 21st, 2001
Gender: Male
Re: YaBB 2 Is Here!
Reply #22 - Dec 30th, 2004 at 9:43pm
Print Post  
That's not going to work since Y2 doesn't crypt the password. It uses the MD5 algorithm.
  
Back to top
WWW  
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: YaBB 2 Is Here!
Reply #23 - Dec 30th, 2004 at 10:51pm
Print Post  
It works if your data is converted from SP 1.X with the password security mod on it. That's the only use for it.
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: YaBB 2 Is Here!
Reply #24 - Dec 30th, 2004 at 11:44pm
Print Post  
It works.  Thanks. Smiley

I had one member successfully log in without any problem so I assume there will be no problems.

I had somedone ele try and they keep getting logged out automatically.  It says they logged in so this script isnt the prob.

Thanks for the help.  I think someone should post this in the YaBB2 forum here at BoardMod.  I'm sure ohters will be looking for this info. Smiley
  


Back to top
 
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: YaBB 2 Is Here!
Reply #25 - Dec 31st, 2004 at 1:56am
Print Post  
I'll make it into a modfile and post it.
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: YaBB 2 Is Here!
Reply #26 - Dec 31st, 2004 at 1:59am
Print Post  
Sounds like a good idea.
  


Back to top
 
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: YaBB 2 Is Here!
Reply #27 - Dec 31st, 2004 at 2:07am
Print Post  
I posted it on the beta board, since it's relatively untested.
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: YaBB 2 Is Here!
Reply #28 - Dec 31st, 2004 at 3:33am
Print Post  
I would hvae figured youd post it in the YaBB2 Final forum since we know it works. Smiley
  


Back to top
 
IP Logged
 
Tea-Master
Forum Administrator
*****
Offline



Posts: 1945
Location: north germany
Joined: Oct 21st, 2001
Gender: Male
Re: YaBB 2 Is Here!
Reply #29 - Dec 31st, 2004 at 10:58am
Print Post  
oh oups sorry. my fault *blush*
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 4 
Send TopicPrint