Please help Me Coders

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Please help Me Coders

    please help me in php script like ,change login nick from the original nickname and have settings to activate in genproc.php , 2nd i need sms alert script when the members offllne he receive a message via email or number and have activated in genproc.php and you can off and on.. 3rd is lock option or settings once u set in cpanel for lock option need password to lock option or unlock.. hope you have share and idea about that..

    #2
    ok, first up, the code to change nick should be in your settings. ie: owners tools...

    although, just curious why you'd want to let users change nicks, etc...
    (normally it's a good idea to be able to keep track of troublemakers... if they can change their nick (and ip and browser) how you keep track?)

    sms script, there should be a few on the site here already, just need to change it so it posts to the sms send page filling in needed variables from users table or wherever...

    and which cpanel are you trying to lock? your user settings? if you put a password there it won't change much? basically you can't change a users settings without logging in as them or being higher ranked staff...

    ok, first up, the code to change nick should be in your settings. ie: owners tools...

    although, just curious why you'd want to let users change nicks, etc...
    (normally it's a good idea to be able to keep track of troublemakers... if they can change their nick (and ip and browser) how you keep track?)

    sms script, there should be a few on the site here already, just need to change it so it posts to the sms send page filling in needed variables from users table or wherever...

    and which cpanel are you trying to lock? your user settings? if you put a password there it won't change much? basically you can't change a users settings without logging in as them or being higher ranked staff...
    C3 Themes: http://c3themes.wen.ru/index.html
    Find Files: http://mystarter.tk/?goto=X-search

    Comment


      #3
      i use dreamer script and waplive sir edit sir riderz , ex sir new registration username is dren1234 then login domain.com/login.php?loguid=dren1234&password=***** after login go to cpanel or settings change login nick ->enter login nick "stephanie" password "*****" update sucessfully change now u my logout , login enter domain.com/login.php?loguid=stephanie&password=****** enter -welcome dren1234 your back- in profile view dren1234 profiles. this sample sir hope help me

      Comment


        #4
        it migth confuse many what you want to do.
        Ok first go to users table in phpmyadmin and create a column oldname no defaul value.
        Now make that change name option and pass and add as extra. $oldname is value from db of column oldname
        if($oldname =='') then u update column oldname (this means that will reg only original name... Also you should have some conditions like username min 4 letters long etc...
        Now go to login.php and edit that welcome daren1234
        Put same condition "welcome if($oldname=='') show username else show oldname"
        Same in profile and u are done.
        I don't have time to write it in php hope you get the idea...

        Comment


          #5
          sir can u create me for a settings

          Comment


            #6
            ok, hang on.,.. still trying to figure this out. you mean login will be original nick, but display name is flexible? something like that?
            C3 Themes: http://c3themes.wen.ru/index.html
            Find Files: http://mystarter.tk/?goto=X-search

            Comment


              #7
              yes sir once you login u can change your new nick in settings that use for login..

              Added after 3 minutes:

              yes sir once you login u can change your new nicklogin or nickname in settings that use for login.. and the original nick is not change.

              Added after 3 minutes:

              i think sir that is in login.php added code and sql table for user ,and what is a code? hope u have an idea
              Last edited by darwin055; 29.11.10, 13:34.

              Comment


                #8
                ok, what you're talking about sounds like madness, but here you go...

                ok, add another filed to the users table called extranick or whatever

                then edit getnick_uid($uid) function...

                $check = query to extranick;
                if ($check[0]!="")
                {
                $getnick = "extranick";
                }
                else
                {
                $getnick = "nickname";
                }

                $return = query fetch $getnick from users where id = $uid;

                return ....

                something along those lines... then add extra text box in user settings to change nick that posts to extranick n posts blank if extranick not in use...
                C3 Themes: http://c3themes.wen.ru/index.html
                Find Files: http://mystarter.tk/?goto=X-search

                Comment


                  #9
                  its simple to create a login nick changer., just create other sql table data on your user table and you dont have to do that...
                  For example:
                  sql table : users
                  sql data : id, loginnick, loginname

                  on registration form simply add the insert value with your login name.
                  Find
                  mysql_query("INSERT INTO users (id, loginnick, loginname) VALUES ('', '$regname', '$regname')");

                  on login simply change the login username compare to the LOGINNICK data., :D hope it help
                  Last edited by sm4rtgl0b3; 01.12.10, 02:03.

                  Comment


                    #10
                    lol, technically you just gotta change 1 bit in core...

                    getnick_uid() function...
                    C3 Themes: http://c3themes.wen.ru/index.html
                    Find Files: http://mystarter.tk/?goto=X-search

                    Comment

                    Working...
                    X