Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

News vs Admin

Asked Modified Viewed 4,003 times
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
asked
Newbie

Hello everyone!

I wish I had your help as I have on my site where the category of news station every day, but wanted to have another member to help me but that he must be an administrator and did not want that, is there any way to fix it?

That is power psot news without having to be so even with administrator permission for news, have a different stqatus

http://www.dragao-azul.com/portal/news.php
0 replies

12 posts

C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

That's what /submit.php?stype=n is for.

Else only Admins can submit news if they have the rights.
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

If you can trust the guy to post live news then surely you can trust him as an Admin. Just give him rights for news only!
0 replies
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

thanks!

Yes the question is not the confidence but the status that appears in the forum, because everyone here are a etmpo administrators

I wonder if there's any way to be administrator and have another status
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Locale/English/global.php

Change this to what you want...

$locale['user2'] = "Administrator";
$locale['user3'] = "Super Administrator";


Or maybee you mean Forum Ranks

7.01
Admin >>> System>> Forum Ranks

7.02
Admin >>> Users >>> Forum Ranks
0 replies
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

thanks, ams do not think I understood what it could give the member a chance to post news that does not appear and the status of administrator!

I also understand I may be wrong!
0 replies
A
andreawoods123
A
andreawoods123 10
My name is Andrea. I’m planning to start my own business and I’m interested to know more about these toll free numbers (http://Freedom800.com).
  • Newbie, joined since
  • Contributed 1 post on the community forums.
answered
Newbie

is the admin and superadmin different? just thinking.
0 replies
A
Ankur
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
answered
Veteran Member

Quote

andreawoods123 wrote:

is the admin and superadmin different? just thinking.


Super-Administrator can make other Super-Administrators but Administrator cannot make anyone a Super-Administrator :P
He is limited to Administrator only.
0 replies
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

So I put two Super administrator?
then put the rank of admin under another name
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

No make an Administrator then Edit his rights and give him rights to what you want this admin to be able to do in the Admin area ie. News.

Play with it you will work it out its not really hard.
0 replies
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

yes but this is already done!

The question is not displayed the rank of director, since he only put the news and why not and admin
0 replies
A
Ankur
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
answered
Veteran Member

By the way, you can do a Trick by editing a maincore.php function which will Show the Administrators as a Member to the other Members of your Website and to the Guest/Visitors. But, to the there Admins, it will show him as Admin.

Quote

Remember : This Applies to all Members with Administrators Rank.


However, for doing these kinda things and for the Helping Hands, you have to Trust on the Trust in this Virtual world... smile
By the way, it is not a Big Deal for making him an Admin according to me... cool

Keep a Copy of your original maincore.php as Backup and Open your maincore.php :
Find for :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]// Display the user's level
function getuserlevel($userlevel) {
global $locale;
if ($userlevel == 101) { return $locale['user1'];
} elseif ($userlevel == 102) { return $locale['user2'];
} elseif ($userlevel == 103) { return $locale['user3']; }
}[/syntaxhighlighter]

Change it to :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]// Display the user's level
function getuserlevel($userlevel) {
global $locale, $userdata;
if ($userlevel == 101) { return $locale['user1'];
} elseif ($userlevel == 102) { if (($userdata['user_level'] == 101) || iGUEST) { return $locale['user1']; } else { return $locale['user2']; }
} elseif ($userlevel == 103) { return $locale['user3']; }
}[/syntaxhighlighter]

Done ! You will be able to see him as Member. Try by visiting his profile as a Guest...!
0 replies
D
DragaoAzul
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

resolved , thanks all !


But I have another question, h'alguma way to have some mod or anything after retrieval may have links in this reply system?:P
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 12 posts
  • Votes 0 votes
  • Topic users 5 members

5 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
H
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
A
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
D
D
  • Newbie, joined since
  • Contributed 9 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
A
A
andreawoods123 10
My name is Andrea. I’m planning to start my own business and I’m interested to know more about these toll free numbers (http://Freedom800.com).
  • Newbie, joined since
  • Contributed 1 post on the community forums.

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet