|
Unable to Mod Forum
|
| jofolk |
Posted on 26-04-2007 14:45
|

Newbie

Posts: 6
Joined: 03/02/2006
|
For some reason my Forum Mods and myself can no longer mod our forums. We can edit text, but we can't move, lock, make new, etc. (The little drop down list stuff).
I have moded my viewthread.php a few times, but the script for the drop down list looks the same as a clean one.
Does anyone have any idea how to fix this? |
| |
|
|
| madmaz |
Posted on 26-04-2007 15:52
|

Junior Member

Posts: 11
Joined: 15/06/2006
|
Ok this is a stupid answer... but that happened to me, then i made super admins the moderators for the topics and it worked |
| |
|
|
| Sveinungs |
Posted on 26-04-2007 16:20
|

Veteran Member

Posts: 938
Joined: 05/04/2006
|
The answer is not stupid at all. You have to put one or more moderators to any forum you make, be it a member or an admin. As it is now, also superadmin. |
| |
|
|
| Flako_perro |
Posted on 26-04-2007 23:33
|

Newbie

Posts: 2
Joined: 16/04/2007
|
I am a superadmin on jofolk's website and also a moderator on every forum and I still can not move, make sticky, renew, or lock any threads.
Anyone else have another idea?  |
| |
|
|
| moppentappers |
Posted on 26-04-2007 23:54
|

Junior Member

Posts: 26
Joined: 06/05/2006
|
cross post topic is to on mod site |
| |
|
|
| Flako_perro |
Posted on 27-04-2007 03:19
|

Newbie

Posts: 2
Joined: 16/04/2007
|
moppentappers wrote:
cross post topic is to on mod site
What? |
| |
|
|
| jofolk |
Posted on 27-04-2007 10:06
|

Newbie

Posts: 6
Joined: 03/02/2006
|
I really don't think it has to with the mods I have put on the site. I put a clean viewthread.php in place of my modded one and it still doesn't work. It is acting like I don't have persmissions to mod the forum. Just like when a non-admin member tries to access one of the admin pages, it just send me back to my home page. |
| |
|
|
| jofolk |
Posted on 27-04-2007 10:18
|

Newbie

Posts: 6
Joined: 03/02/2006
|
Is there something wrong with this code?
Codeif (iMEMBER && $can_post) {
if (iMOD || iSUPERADMIN) {
echo "<td align='right' class='tbl'>
<form name='modopts' method='post' action='options.php?forum_id=$forum_id&thread_id=$thread_id'>
".$locale['520']."<br>
<select name='step' class='textbox'>
<option value='none'> </option>
<option value='renew'>".$locale['527']."</option>
<option value='delete'>".$locale['521']."</option>\n";
if (!$tdata['thread_locked']) {
echo "<option value='lock'>".$locale['522']."</option>\n";
} else {
echo "<option value='unlock'>".$locale['523']."</option>\n";
}
if (!$tdata['thread_sticky']) {
echo "<option value='sticky'>".$locale['524']."</option>\n";
} else {
echo "<option value='nonsticky'>".$locale['525']."</option>\n";
}
echo "<option value='move'>".$locale['526']."</option>\n";
echo "</select>
<input type='submit' name='go' value='".$locale['528']."' class='button'>
</form>
</td>
</tr>\n";
}
}
This seems to be the code that deals with the problem I am having. I tried to change and edit, but I am getting no where with it.
Any help on this would be greatly apprciated.
Edited by jofolk on 27-04-2007 10:20
|
| |
|