Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post Icy 27c Miserable User 
 
Hi
was just wondering if someone made a miserable user can see themselve's that they are one,
if they can
Can it be made that they cannot

what bought this to mind, i made a member miserable user and he can see it in his post everytime he makes one
is this normal
if it is can this be changed so they cannot see that they have been mark miserable user

sorry for asking same question twice in this post
but i wanted to make sure i get across what i was asking and make sure i explained myself properly
thanks
bloke  
 



 
blokeSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
Yes.  Users marked as "Miserable User" can see they have been marked as a miserable user in their posts.  Furthermore, other users can view a miserable user's posts by quoting their posts or by using the search function.

I'm not completely sure which line to change, but have a look here:

OPEN: ip_root/language/lang_english/lang_main_cback_ctracker.php

FIND:

Code: [Download] [Hide] [Select]
    'ctracker_mu_success' => 'The user has been marked as a "Miserable User".',
    'ctracker_mu_success_bbc' => '[cell class="text_orange"]The user has been marked as a "Miserable User".[/cell]',
    'ctracker_mu_success_html' => '<span class="text_orange">The user has been marked as a "Miserable User".</span>',


Play around the with these lines and see if you can figure out the rest.  I'm sure it won't take long to figure it out.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
Chaotic wrote: [View Post]
Yes.  Users marked as "Miserable User" can see they have been marked as a miserable user in their posts.


I can confirm this... Looks stupit to me. Isn't it better the miserable user would see there own posts like they are?
 




____________
TheSteffen
Often SEARCH is the quickest way to get support.
IcyPhoenix German Support
 
TheSteffenSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
I´m with you Steffen.

Would be better if Misserable User did´nt know that they´re Misserable Users.

So just Show others who´s an M-user.
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
the creator of the ctrackertracker, cback, support and develop any opensource mods since he had his own software company

this mod is to complex for a outsider i think we can never solve this
 




____________
IcyPhoenix German Support
 
New PlayerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
New Player wrote: [View Post]
the creator of the ctrackertracker, cback, support and develop any opensource mods since he had his own software company

this mod is to complex for a outsider i think we can never solve this

It is not so complex after all... it depends on your PHP knowledge.

I have never used Miserable User, I will check and think about it to see if it is a good idea to not making him know that he is a miserable user.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
I just had a quick look...

Try this:
OPEN viewtopic.php
FIND
Code: [Download] [Hide] [Select]
        if (($postrow[$i]['ct_miserable_user'] == 1) && ($postrow[$i]['user_id'] != $userdata['user_id']) && ($userdata['user_level'] == USER))
        {
            //$message = $lang['ctracker_message_dialog_title'] . '<br /><br />' . $lang['ctracker_ipb_deleted'];
            $message = $lang['ctracker_message_dialog_title'] . "\n\n" . $lang['ctracker_ipb_deleted'];
            $is_miserable = true;
        }
        else
        {
            $message = $postrow[$i]['post_text'];
            //if (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] == ADMIN))
            if ($postrow[$i]['ct_miserable_user'] == 1)
            {
                //$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
                $message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
                $is_miserable = true;
            }
        }

REPLACE WITH
Code: [Download] [Hide] [Select]
        if (($postrow[$i]['ct_miserable_user'] == 1) && ($postrow[$i]['user_id'] == $userdata['user_id']))
        {
            // The user is watching its own post... do nothing here!
            $message = $postrow[$i]['post_text'];
        }
        elseif (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] != ADMIN) && ($userdata['user_level'] != MOD))
        {
            // Normal users and guests...
            $message = '';
            // If you want to hide the post text, just comment this line!
            $message = $postrow[$i]['post_text'];
            $message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
            $is_miserable = true;
        }
        else
        {
            // We are in ADMIN and MODS case!
            $message = $postrow[$i]['post_text'];
            if ($postrow[$i]['ct_miserable_user'] == 1)
            {
                //$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
                $message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
                $is_miserable = true;
            }
        }

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
I have a question: this hack also works on this kind of forum (link)?
if yes, where can I get the script (or whatever that code is)?
 



 
lostpophetSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
the link you posted is to an invision powered board so no the hack (mod) will not work as it is it will need to be altered to fit the invision code...

maybe on invision they have something similar or you can ask someone to develop it to work for you board
 




____________
Mods and themes for Icy Phoenix 1.3

IcyPhoenix UK is off-line permanently due to lack of time to update mods.
if anyone is interested in my templates I will upgrade them to Icy 2.0.
 
DWhoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
DWho wrote: [View Post]
the link you posted is to an invision powered board so no the hack (mod) will not work as it is it will need to be altered to fit the invision code...

maybe on invision they have something similar or you can ask someone to develop it to work for you board

aw, too bad .__. well, maybe someone can make it work for my board...so again, where do I get the whole code?
anyway, thanks DWho  
 



 
lostpophetSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
http://www.cback.de/
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
Chaotic wrote: [View Post]
http://www.cback.de/


hopefully can anyone understand german

the phpbb2 mod

http://www.cback.de/cback_software/...rofessional.zip

standalone version (but not up to date)

http://www.cback.de/cback_software/files/ctrack_stand_alone.zip
 




____________
IcyPhoenix German Support
 
New PlayerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
Exactly, LOL.  I think the first time I visited that site, I closed the browser window in under five seconds.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
cback page appears to be a corportive page for selling something, not for free mods for phpbb2.   
 



 
novice programmerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Icy 27c Miserable User 
 
Yeah, it does appear that way.

You can find some of their phpBB2 MODS here: http://www.cback.de/downloads.php?cat=2
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron