Sersi
Newbie   Posts: 1 Registered: 4/18/2006 Status: Offline
|
posted on 4/18/2006 at 09:53 AM |
Help me! Please! Someone!
I spent forever getting typetool to work for my users on my site - and
woohoo! thanks to this forum I got it working!
Now - my users are complaining that the typetool option causes the posts in
the forum to mess up!
Now - personally, I would like to turn it all off - and damnit I've tried
to disable it in permissions for just the forum, and I've tried to say that
users can't use it - just admins, but no joy.
I've tried:
all groups - typetool: - PNphpBB2: - None
all groups - typetool::- PNphpBB2: - None
all groups - typetool: - PNphpBB2::- None
all groups - typetool::- PNphpBB2::- None
all groups - typetool: - (NphpBB2)::- None
all groups - typetool: - (PNphpBB2|Messages):: - None
all groups - typetool: - PNphpBB2:|Messages): - None
I've tried in first and second place and I've tried saying that instead of
all groups - its just users... but I keep getting it pop up "use visual
editor" in the forum.
Im wondering now if thats because I added:
<!--Visual Editor Plug-in-->
<script type="text/javascript">VISUAL=0; FULLCTRL=1; SECURE=1;
USETABLE=1; USEFORM=1; LANGUAGE='language.js';</script>
<script type="text/javascript"
src='http://www.yoursite.com/~youraccount/modules/typetool/pnincludes/quick
build.js'></script>
<!--End Visual Editor Plug-in-->
To HTML401_Transitional.html
And if it is - how the hell do I switch it off in the forum only?
(or if not - what the hell do I use instead because Im losing it with
typetool).
Ta!
Sersii
[Edited on 18/4/2006 by Sersi] |
| |
| |
RichLane
Newbie   Posts: 7 Registered: 7/22/2004 Status: Offline
|
posted on 9/6/2006 at 04:58 PM |
This is my problem exactly. If anyone has an answer to this, I love to
hear it as well. Thanks in advance.
[Edited on 6/9/2006 by RichLane] |
| |
RichLane
Newbie   Posts: 7 Registered: 7/22/2004 Status: Offline
|
posted on 9/12/2006 at 08:28 AM |
So is it safe to assume there is no answer to this question? |
| |
Mars
Moderator   Posts: 351 Registered: 3/11/2003 Status: Offline
|
posted on 9/13/2006 at 06:45 AM |
It sohuld be
1 All groups typetool: PNphpBB2:: None
It should be the very first permission.
If you don't want to use it at all remove it from HTML401_Transitional.html ____________________ PostNuke Themes
PHPNuke Themes
AutoThemes
Your #1 source for FREE and custom AutoThemes! |
| |
Shawn
Administrator   Posts: 4570 Registered: 10/7/2002 Status: Online
|
posted on 9/13/2006 at 07:52 PM |
For now, to turn it off in a certain module like the Forum, do this:
Surround:
<!--Visual Editor Plug-in-->
<script type="text/javascript">VISUAL=0; FULLCTRL=1; SECURE=1;
USETABLE=1; USEFORM=1; LANGUAGE='language.js';</script>
<script type="text/javascript"
src='http://www.yoursite.com/~youraccount/modules/typetool/pnincludes/quick
build.js'></script>
<!--End Visual Editor Plug-in-->
With this, like this:
<?php if (atGetModName() != "Forum") { ?>
<!--Visual Editor Plug-in-->
<script type="text/javascript">VISUAL=0; FULLCTRL=1; SECURE=1;
USETABLE=1; USEFORM=1; LANGUAGE='language.js';</script>
<script type="text/javascript"
src='http://www.yoursite.com/~youraccount/modules/typetool/pnincludes/quick
build.js'></script>
<!--End Visual Editor Plug-in-->
?>
Assuming that your forum is named Forum. If not, then replace Forum above
with whatever the module name for your forum is (PNphpBB@, etc).
-Shawn |
| |
RichLane
Newbie   Posts: 7 Registered: 7/22/2004 Status: Offline
|
posted on 9/15/2006 at 10:18 PM |
That didn't work either. When I surrounded it as directed (using PNphpBB2
rather than Forum) I get a blank page--No theme, no anything-- so
I switched it back. |
| |
Shawn
Administrator   Posts: 4570 Registered: 10/7/2002 Status: Online
|
posted on 9/16/2006 at 10:09 AM |
Try now. I forgot the <?php } ?> at the end.
<?php if (atGetModName() != "Forum") { ?>
<!--Visual Editor Plug-in-->
<script type="text/javascript">VISUAL=0; FULLCTRL=1; SECURE=1;
USETABLE=1; USEFORM=1; LANGUAGE='language.js';</script>
<script type="text/javascript"
src='http://www.yoursite.com/~youraccount/modules/typetool/pnincludes/quick
build.js'></script>
<!--End Visual Editor Plug-in-->
<?php } ?>
-Shawn
[Edited on 9/16/2006 by Shawn] |
| |
RichLane
Newbie   Posts: 7 Registered: 7/22/2004 Status: Offline
|
posted on 9/16/2006 at 11:28 AM |
BEAUTIFUL!!!
It worked like a charm this time! Thank you very much, sir! This goes a
long way towards helping me convice my administration to allow us to buy
the full version for next year.
Again, thank you for your time and effort in helping me get this figured
out. |
| |