FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » FUDforum Installation Issues » Install probs.
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
icon4.gif  Install probs. [message #31] Sun, 20 January 2002 06:56 Go to next message
Aharon is currently offline  Aharon   United States
Messages: 8
Registered: January 2002
Location: Tampa, Fl
Karma: 0
Junior Member
My installed fud forum:

http://www.tamparacing.com/forum

Anyway, good ideas and concepts guys Smile

Upon installation, I created the "root" account that should have admin access. But, when ever I login and go to the admin link, it says "not a admistrator". There is also some broken links that you will notice as well.

I think I could fix everything if I could just get into the admin menu.. What table/column contains the security settings for the users? I could just fix it by hand.

PS - Please change the default font, it kills the whole "First Impression" thing.
Re: Install probs. [message #32 is a reply to message #31] Sun, 20 January 2002 07:09 Go to previous messageGo to next message
hackie is currently offline  hackie   Canada
Messages: 177
Registered: January 2002
Karma: 0
Senior Member
Core Developer

Aharon wrote on Sun, 20 January 2002 1:56 AM

My installed fud forum:

http://www.tamparacing.com/forum

Anyway, good ideas and concepts guys Smile

Upon installation, I created the "root" account that should have admin access. But, when ever I login and go to the admin link, it says "not a admistrator". There is also some broken links that you will notice as well.

I think I could fix everything if I could just get into the admin menu.. What table/column contains the security settings for the users? I could just fix it by hand.

PS - Please change the default font, it kills the whole "First Impression" thing.



quite easy in fact,

okie,

SELECT * FROM fud_users;
would give you a list of users

UPDATE fud_users SET passwd='md5sum of pass' WHERE id=1;
would update the root account.

you need to make sure to set passwd to the md5 of your chosen password, for example under Linux if you want your password to be hello, you do this
$ md5sum --string="hello"
which would return something like:
5d41402abc4b2a76b9719d911017c592 "hello"

the value 5d41402abc4b2a76b9719d911017c592 is what you make your password, so:
UPDATE fud_users SET passwd='5d41402abc4b2a76b9719d911017c592' WHERE id=1;

would make the root account's password hello.

But the fact that your root account is messed up means our installation script is somehow borked, could you provide us information about how you installed your forum? I.E. which script did you use, the shell script or the web.. and so on.

P.S. under BSD you could get the md5sum using the md5 command, I simply dunno how to in windows, but i'm sure google could help you if you have probs, or you could always ask us Smile


cc intelligence.c -o intelligence
$ ./intelligence
Segmentation fault
Re: Install probs. [message #34 is a reply to message #32] Sun, 20 January 2002 07:14 Go to previous messageGo to next message
Aharon is currently offline  Aharon   United States
Messages: 8
Registered: January 2002
Location: Tampa, Fl
Karma: 0
Junior Member
Quick reply, thanks Smile

The password seems to be functioning properly though, I am able to login and post.. It also says, "Junior Member, Admistrator" when you view my profile while online. I have succesfully created a test post with the root account.

My info:
Used the php install.
Redhat 7.2 - Dedicated server
PHP 4.06
Latest MySql

I have tested this with both Mozilla on linux, and IE on windows..

Aharon

hackie wrote on Sun, 20 January 2002 2:09 AM

Aharon wrote on Sun, 20 January 2002 1:56 AM

My installed fud forum:

http://www.tamparacing.com/forum

Anyway, good ideas and concepts guys Smile

Upon installation, I created the "root" account that should have admin access. But, when ever I login and go to the admin link, it says "not a admistrator". There is also some broken links that you will notice as well.

I think I could fix everything if I could just get into the admin menu.. What table/column contains the security settings for the users? I could just fix it by hand.

PS - Please change the default font, it kills the whole "First Impression" thing.



quite easy in fact,

okie,

SELECT * FROM fud_users;
would give you a list of users

UPDATE fud_users SET passwd='md5sum of pass' WHERE id=1;
would update the root account.

you need to make sure to set passwd to the md5 of your chosen password, for example under Linux if you want your password to be hello, you do this
$ md5sum --string="hello"
which would return something like:
5d41402abc4b2a76b9719d911017c592 "hello"

the value 5d41402abc4b2a76b9719d911017c592 is what you make your password, so:
UPDATE fud_users SET passwd='5d41402abc4b2a76b9719d911017c592' WHERE id=1;

would make the root account's password hello.

But the fact that your root account is messed up means our installation script is somehow borked, could you provide us information about how you installed your forum? I.E. which script did you use, the shell script or the web.. and so on.

P.S. under BSD you could get the md5sum using the md5 command, I simply dunno how to in windows, but i'm sure google could help you if you have probs, or you could always ask us Smile
Re: Install probs. [message #35 is a reply to message #34] Sun, 20 January 2002 07:17 Go to previous messageGo to next message
hackie is currently offline  hackie   Canada
Messages: 177
Registered: January 2002
Karma: 0
Senior Member
Core Developer

Oh I see, so your root account is called Aharon and you are simply unable to access the admin panel 'cause it says you're not the admin?

cc intelligence.c -o intelligence
$ ./intelligence
Segmentation fault
Re: Install probs. [message #37 is a reply to message #35] Sun, 20 January 2002 07:20 Go to previous messageGo to next message
Aharon is currently offline  Aharon   United States
Messages: 8
Registered: January 2002
Location: Tampa, Fl
Karma: 0
Junior Member
Yep! Smile

hackie wrote on Sun, 20 January 2002 2:17 AM

Oh I see, so your root account is called Aharon and you are simply unable to access the admin panel 'cause it says you're not the admin?
Re: Install probs. [message #38 is a reply to message #31] Sun, 20 January 2002 07:21 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Aharon please read the PM i've sent you, the problem *i think* is most likely to be the result of invalid paths that are stored inside your globals.php, which tell scripts where everything is.

FUDforum Core Developer
Re: Install probs. [message #39 is a reply to message #37] Sun, 20 January 2002 07:25 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Aharon wrote on Sun, 20 January 2002 2:20 AM

Yep! Smile

hackie wrote on Sun, 20 January 2002 2:17 AM

Oh I see, so your root account is called Aharon and you are simply unable to access the admin panel 'cause it says you're not the admin?



Currently FUDforum only supports a single "ROOT/Admin" account, so you may want to make the account you use the "root" account.
Of course, once you've setup the forum you probably won't need it much, since you can give yourself moderation permissions, which will allows to moderate the forums, but I still recommend that you're account be the "root/admin" account.

If you want to use the root account, logout and then log in as root.


FUDforum Core Developer
Re: Install probs. [message #40 is a reply to message #39] Sun, 20 January 2002 07:37 Go to previous messageGo to next message
Aharon is currently offline  Aharon   United States
Messages: 8
Registered: January 2002
Location: Tampa, Fl
Karma: 0
Junior Member
Strange. I tried both the shell, and php installs... I know one of them asked me for the "root" login name.. I chose Aharon as the name.. Infact, Aharon is the user id #1 in the table. Should I modify my name to be root?

prottoss wrote on Sun, 20 January 2002 2:25 AM

Aharon wrote on Sun, 20 January 2002 2:20 AM

Yep! Smile

hackie wrote on Sun, 20 January 2002 2:17 AM

Oh I see, so your root account is called Aharon and you are simply unable to access the admin panel 'cause it says you're not the admin?



Currently FUDforum only supports a single "ROOT/Admin" account, so you may want to make the account you use the "root" account.
Of course, once you've setup the forum you probably won't need it much, since you can give yourself moderation permissions, which will allows to moderate the forums, but I still recommend that you're account be the "root/admin" account.

If you want to use the root account, logout and then log in as root.
Re: Install probs. [message #41 is a reply to message #40] Sun, 20 January 2002 07:38 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Aharon wrote on Sun, 20 January 2002 2:37 AM

Strange. I tried both the shell, and php installs... I know one of them asked me for the "root" login name.. I chose Aharon as the name.. Infact, Aharon is the user id #1 in the table. Should I modify my name to be root?



Nope, you should be fine then.


FUDforum Core Developer
Re: Install probs. [message #67 is a reply to message #41] Sun, 20 January 2002 14:59 Go to previous messageGo to next message
Mack is currently offline  Mack   United Kingdom
Messages: 10
Registered: January 2002
Karma: 0
Junior Member
I also have this problem the /adm saying i'm not an administrator, even though I can login and post as admin.
Re: Install probs. [message #69 is a reply to message #67] Sun, 20 January 2002 17:44 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Mack wrote on Sun, 20 January 2002 9:59 AM

I also have this problem the /adm saying i'm not an administrator, even though I can login and post as admin.


Verify that your COOKIE_PATH and COOKIE_DOMAIN have correct values inside GLOBALS.php, which is located inside the include directory. The admin control panels require the admin to have a valid cookie set.
To see if the forum was able to set a cookie, go to http://your_domain/forum_path/php.php and see if you have a HTTP_COOKIE_VARS array or _COOKIES (php 4.1.1) if you do not it means the cookie was not set and that is why you cannot go to admin control panels.


FUDforum Core Developer
icon5.gif  Re: Install probs. [message #165 is a reply to message #32] Tue, 22 January 2002 16:14 Go to previous message
xballad is currently offline  xballad   Indonesia
Messages: 1
Registered: January 2002
Karma: 0
Junior Member
hackie wrote on Sun, 20 January 2002 2:09 AM

Aharon wrote on Sun, 20 January 2002 1:56 AM

My installed fud forum:

http://www.tamparacing.com/forum

Anyway, good ideas and concepts guys Smile

Upon installation, I created the "root" account that should have admin access. But, when ever I login and go to the admin link, it says "not a admistrator". There is also some broken links that you will notice as well.

I think I could fix everything if I could just get into the admin menu.. What table/column contains the security settings for the users? I could just fix it by hand.

PS - Please change the default font, it kills the whole "First Impression" thing.



quite easy in fact,

okie,

SELECT * FROM fud_users;
would give you a list of users

UPDATE fud_users SET passwd='md5sum of pass' WHERE id=1;
would update the root account.

you need to make sure to set passwd to the md5 of your chosen password, for example under Linux if you want your password to be hello, you do this
$ md5sum --string="hello"
which would return something like:
5d41402abc4b2a76b9719d911017c592 "hello"

the value 5d41402abc4b2a76b9719d911017c592 is what you make your password, so:
UPDATE fud_users SET passwd='5d41402abc4b2a76b9719d911017c592' WHERE id=1;

would make the root account's password hello.

But the fact that your root account is messed up means our installation script is somehow borked, could you provide us information about how you installed your forum? I.E. which script did you use, the shell script or the web.. and so on.

P.S. under BSD you could get the md5sum using the md5 command, I simply dunno how to in windows, but i'm sure google could help you if you have probs, or you could always ask us Smile


Shocked :yawns:

[Updated on: Tue, 22 January 2002 16:16]

Report message to a moderator

  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Invalid login/password combination
Next Topic: mysql setup issue
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Jun 18 09:56:42 GMT 2024

Total time taken to generate the page: 0.02411 seconds