Page 1 of 1
Forum status

Posted:
Fri Sep 01, 2006 7:32 pm
Author: Flex
After the installation of cash and referral mods, I have lost the ability to "lock" forums under: ACP>Forum Admin>Management+ pick a forum and edit and finally forum status = empty drop down menu (nothing to select from).
Please please please help.
Re: Forum status

Posted:
Fri Sep 01, 2006 7:54 pm
Author: computerz
"Flex";p="14784" wrote:After the installation of cash and referral mods, I have lost the ability to "lock" forums under: ACP>Forum Admin>Management+ pick a forum and edit and finally forum status = empty drop down menu (nothing to select from).
Please please please help.
well.... did it break after the cash install or after the referral install? do you know?

Posted:
Fri Sep 01, 2006 7:57 pm
Author: computerz
i just took a look at mine and realize that mine never worked .... ever.
Another broke piece of code that hopefully will be fixed in 1.4.1
However, I wouldn't expect much support on this or anything else 1.4.0 related right now, since the devs are focusing all of their attention on the next release.
Re: Forum status

Posted:
Fri Sep 01, 2006 8:50 pm
Author: Drop-Forged
It has always worked fine for me.
Ive never installed these two mods, did you happen to edit the admin/admin_forums_extend.php???
If you did, that might be a good place to start.
Re: Forum status

Posted:
Fri Sep 01, 2006 9:00 pm
Author: Flex
"Drop-Forged";p="14791" wrote:It has always worked fine for me.
Ive never installed these two mods, did you happen to edit the admin/admin_forums_extend.php???
If you did, that might be a good place to start.
Yes I did with cashmod, thanks for the pointer, I'll have a look in there.

Posted:
Fri Sep 01, 2006 9:48 pm
Author: Michaelo
Just recheck the two mod installations again, my guess is the error is there, either an edit missing or in the wrong place, could also relate to your other post. <img>
If anyone has a copy of either of these two mods install without problems could you post the edited files her of add the ass files (zip before adding).... Thanks

Posted:
Sun Sep 03, 2006 3:01 am
Author: Flex
I've re checked admin_forums_extend.php and I got the same, but when I copy over the original file it works. Then do the edits again following the instructions and again it goes away, there's got to be something in code!.
Does anybody else who have installed this mod have the same issue?, might be worth to check <img>

Posted:
Tue Sep 19, 2006 2:29 am
Author: Flex
lol ok, doesn't look like teelk will be back anytime soon so, Can anybody else help me here?
Re: Forum status

Posted:
Tue Sep 19, 2006 3:14 am
Author: Frost
I'll try to recreate the problem and give you the fix <img>
What version of Im do you use and and what version of the two mods are you using. Give me the links to them all here and I'll up a test forum and see if I get the same problems.
Re: Forum status

Posted:
Tue Sep 19, 2006 3:24 am
Author: Flex
Re: Forum status

Posted:
Tue Oct 03, 2006 4:57 pm
Author: Teelk
I think I know what the problem is. When you edited admin_forums_extend.php to uninstall the points system you deleted the wrong set of code. You removed the code dealing with status, an understandable mistake as the code is almost identical.
The code dealing with status...
- Code: Select all
// status if ( !isset($forum_status_list[ $item['status'] ]) ) { @reset($forum_status_list); list($status, $value) = @each($forum_status_list); $item['status'] = $status; }
The code dealing with points(appears right below the status code)...
- Code: Select all
// Points MOD if ( !isset($forum_points_list[ $item['points'] ]) ) { @reset($forum_points_list); list($points, $value) = @each($forum_points_list); $item['points'] = $points; }
The only difference between the two sets of code are the words 'status' and 'points'. Just redo your edits making sure that you delete the points code instead.

Posted:
Tue Oct 03, 2006 5:52 pm
Author: Flex
Hi Teelk and thanks.
Still doesn't solve my problem, I have confirmed I deleted the correct code.
Sorry to be a pain, but any other ideas?