The User Level Hidden Messages Mod is not working.

Support zum phpBB2 und zu MODs anderer Autoren.

Moderator: Supporter

Beitragvon mariocaz » 31. Mai 2006 20:42

Ok, I will do your fixes Max :D and then tell you the results ;) , but I need a little hand with the translation of your last post to do that jeje :lol:

Well I hope now with the fixes of Max this Mod works fine in my forum. :)

Cheers and also thanx! :D

Added after 2 hours 32 minutes:

WWWWOOOOOOWWWWW my friend Max!!! :shock: :D :)

With a little help of an internet translator jejeje :lol: (I used the translation posts that is installed here but not works Amigalink :cry: ) I did all your great fixes Max and now it works very fine, yupi yupi!!!!!! :bofl:

Really thanx a lot for all your help to fix this Mod because I wanted a lot installed in my forum. ;)

Cheers. :o

Caused after further 1 hours 15 minutes:

UUUUPPPSSS!! one problem my friends........ :roll:

The Mod only works sometimes and sometimes not, more than less in the new topics(in the first post), because I was testing it in the topics that already the forum have and I don't know why the Mod is not working there, only one time works in the old topics and in the new topics that I opened only works sometimes, so I don’t know what is happen. :cry:

I think is someting in the viewtopic.php file :? in this part:

Code: Alles auswählen
-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

Root/viewtopic.php

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

   $template->assign_block_vars('postrow', array(

-----------------------------------
----[ BEFORE, ADD ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.0 =========================================================== |
#====   
   if ( (strstr($message, '[admin]')) && (strstr($message, '[moderator]')) && (strstr($message, '[user]')) )
      $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------



or/and includes/topic_review.php file in this part: :?

Code: Alles auswählen
-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

Root/includes/topic_review.php

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

         $template->assign_block_vars('postrow', array(

-----------------------------------
----[ BEFORE, ADD ]----------------
-----------------------------------

#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.0 =========================================================== |
#====      
         if ( (strstr($message, '[admin]')) && (strstr($message, '[moderator]')) && (strstr($message, '[user]')) )
            $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------




Here u can see what I am talking about:

http://www.all-reefs.com/inicio/aqui-vp28899.html#28899

Do you know why is happen this ?, because in the Max forum yes in every topic works very fine (also old topics of the past year). :(

And

What can I do for fix that ? :?

I re-checked all the installation and the fixes from here and everything is all right.

I hope Amigalink can help me in the way that he can and also help us with the translations jeje :oops:

I put again here my files with the Mod and now with the fixes for if Max can take a look into them. :idea:
Dateianhänge
FILES with the Mod and the fixes.zip
(132.35 KiB) 778-mal heruntergeladen
mariocaz
User
 
Beiträge: 148
Registriert: 9. Jun 2005 07:35

Beitragvon AmigaLink » 1. Jun 2006 11:53

I used the translation posts that is installed here but not works Amigalink
Oh yes I have totaly forget this problem. :roll:
The English to German translation works fine but German to English shows the wrong post. :shock: :? I must fix that any time.

I can not help at problems with the Hidden Message MOD at this time. I do not know the MOD and I haven't the time to install it by myselft, to see how the MOD works and what can be wrong. :?
Die deutsche Sprache ist Freeware, du kannst sie benutzen, ohne dafür zu bezahlen. Sie ist aber nicht Open Source, also darfst du sie nicht verändern, wie es dir gerade passt.
Benutzeravatar
AmigaLink
Administrator
 
Beiträge: 3987
Registriert: 11. Aug 2004 01:06
Wohnort: NRW

Beitragvon mariocaz » 1. Jun 2006 19:28

My friend Max u can use the translator that is installed here in the posts and with that u can see wich is my problem that I explained in my last post. :)

Anyway I hope Amigalink can translate this for Max, because he can help me with this Mod. :oops:

Added after 6 hours 3 minutes:

Hello my friends!!! ;)

Well woooww :shock: here is the FIX for this Mod and now yes works very very nice. :D

Code: Alles auswählen
-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

Root/viewtopic.php

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.0 =========================================================== |
#====   
   if ( (strstr($message, '[admin]')) && (strstr($message, '[moderator]')) && (strstr($message, '[user]')) )
      $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ REPLACE WITH ]---------------
-----------------------------------

#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.1 =========================================================== |
#====   
   if ( (strstr($message, '[admin]')) || (strstr($message, '[moderator]')) || (strstr($message, '[user]')) )
      $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------

-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

Root/includes/topic_review.php

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------


#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.0 =========================================================== |
#====      
         if ( (strstr($message, '[admin]')) && (strstr($message, '[moderator]')) && (strstr($message, '[user]')) )
            $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ REPLACE WITH ]---------------
-----------------------------------

#======================================================================= |
#==== Start: == User Level Hidden Messages ============================= |
#==== v1.0.1 =========================================================== |
#====   
   if ( (strstr($message, '[admin]')) || (strstr($message, '[moderator]')) || (strstr($message, '[user]')) )
      $message = parse_staff_message_filter($message);
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== User Level Hidden Messages ============================= |   
#======================================================================= |

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------


And also I put the file with the package of the MOD for anyone who wants it, really it is a nice and useful Mod.

Cheers. :D
Dateianhänge
user_level_hidden_msgs_1.0.1.zip
(3.12 KiB) 782-mal heruntergeladen
mariocaz
User
 
Beiträge: 148
Registriert: 9. Jun 2005 07:35

Beitragvon kjwargan » 24. Jul 2006 13:38

Das ist eine Klassemod, besonders anch der Bearbeitung von Max!
Herzliche Grüße
Carlo (kjwargan)
Benutzeravatar
kjwargan
 
Beiträge: 1
Registriert: 24. Jul 2006 11:53
Wohnort: Bavaria D.C.

Beitragvon AmigaLink » 24. Jul 2006 16:32

Ja ich kann mir gut vorstellen, das dieser MOD für das ein oder andere Board sehr nützlich sein kann. :)
Die deutsche Sprache ist Freeware, du kannst sie benutzen, ohne dafür zu bezahlen. Sie ist aber nicht Open Source, also darfst du sie nicht verändern, wie es dir gerade passt.
Benutzeravatar
AmigaLink
Administrator
 
Beiträge: 3987
Registriert: 11. Aug 2004 01:06
Wohnort: NRW

Beitragvon Max » 24. Jul 2006 20:00

Hallo,


vielleicht müsste man mal die Fixes aus der neueren MOD-Version und meine Gedanken zum Verstecken in der Suche und im Zitat zusammenfassen, so dass da wirklich ein voller Nutzen draus entsteht.
Dann ist nämlich die aktuelle Version mit den Erweiterungen verpaart und Neuentdecker des MODs müssen nicht ewig suchen, fummeln und lesen.


Wenn da Interesse dran besteht, mach ich das morgen mal fertig.



Gruß Max
Max
User
 
Beiträge: 170
Registriert: 29. Mai 2005 16:50

Beitragvon mariocaz » 5. Sep 2006 18:24

Yes I am very interested Max!! :D
mariocaz
User
 
Beiträge: 148
Registriert: 9. Jun 2005 07:35

Beitragvon Max » 5. Sep 2006 21:34

Hallo,


ich habe das mal zusammengefasst.

Sollte nun vernünftig die Suche und Zitate berücksichtigen.
Das Posten von versteckten Nachrichten ist so geregelt, dass jeder User an Admin, Mod oder User eine Nachricht schreiben kann. Die Nachricht ist aber nur für den angeschriebenen Level sichtbar.

Die Anleitung ist im Anhang.



Gruß Max
Dateianhänge
user_level_hidden_msgs_1.0.1.a.zip
(2.58 KiB) 928-mal heruntergeladen
Max
User
 
Beiträge: 170
Registriert: 29. Mai 2005 16:50

Beitragvon mariocaz » 5. Sep 2006 23:01

Hi Max, :)


I downloaded your file and re-checked all the installation and everything was fine and also I already had your code in my files (posting.php and search.php). ;)

But I am still having the same problem that all my users can see the "Hidden" messagen if they quoted that messages. :?

They can see it in the message text area of the posting page when thay quoted the "hidden" message. :cry:

Here is the Image of the problem:

Bild

Please help me and take a look into my files. :( :oops:
Dateianhänge
My_Files_with_Mod.zip
(104.98 KiB) 755-mal heruntergeladen
mariocaz
User
 
Beiträge: 148
Registriert: 9. Jun 2005 07:35

Beitragvon Max » 6. Sep 2006 06:03

Hi,


the MOD runs in my Forum without bugs: http://www.hundefotografie.org/forum/vi ... .php?t=202
(Loginname: user | Pass: test )


your posting.php seems to be ok.
but I miss yours topic_review.php in archives with your files. I think however the topic_review.php thereby is not of importance.
it can be that this MOD does not co-operate with your PHP version, or by other MODs one impairs.

I do not know, where the problem in your Files.


Best greets,
Max
Max
User
 
Beiträge: 170
Registriert: 29. Mai 2005 16:50

VorherigeNächste

Zurück zu phpBB2 Support



Wer ist online?

Mitglieder in diesem Forum: 0 Mitglieder und 14 Gäste

cron