TTCOMMUNITY V1.2 :) Added pokes, notifications, comments, friend requests etc...

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

    TTCOMMUNITY V1.2 :) Added pokes, notifications, comments, friend requests etc...

    Features
    Mobile chatrooms, PC Compatibe
    Over 800 animated smileys
    Notifications
    Private messaging
    Shoutbox
    Photo Albums
    Different Themes
    Forums / Discussion
    Custom profile layouts - Add embed music, videos, background pics, colors,
    tons of major sites supported - even pornhub lol :p jk but true >.<
    AI chatbot / games
    and many more...
    Installation
    Upload, extract, edit file in inc/config.php, import aiochat.sql
    Bug Fixes/ Additions
    Bug in the formus fixed
    Chat room settings added, colors etc :P
    Pokes, photo comments
    Fixed error on uploader for some phones
    Get notified when someone pms you, unfriends you etc...
    Search users added
    Random members pics added to main page
    Some smiley errors fixed
    Added find girls and find guys to the userlist
    and more lol enjoyy
    script is only 3mb in size (:
    Download: check riderz first reply, or the 1st reply
    Demo
    100% clean first user to register becomes admin automatically
    improved auto ban, curl bots results in ip ban etc lol
    Admin Can
    ban
    edit, delete forums, sticky
    make admins
    edit shout clear whatever they want
    optimize, repair tables to avoid overhead
    edit room names
    and more
    So glad i can access the forum again ^.^
    also to add a smiley just upload in the img/smilies directory
    Screenshots taken from a galaxy Y except 4 the last 1 :p
    Attached Files
    Last edited by kevk3v; 28.12.12, 08:48.
    Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

    #2
    here are the script
    Attached Files
    ________________
    Jacques
    jacques@gw-designs.co.za
    http://coding.biz.tm
    Come join and lets make it a place to learn all the noobies how to code
    __________________

    NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

    Comment


      #3
      Originally posted by kevk3v View Post
      Features
      Mobile chatrooms, PC Compatibe
      Over 800 animated smileys
      Notifications
      Private messaging
      Shoutbox
      Photo Albums
      Different Themes
      Forums / Discussion
      Custom profile layouts - Add embed music, videos, background pics, colors,
      tons of major sites supported - even pornhub lol :p jk but true >.<
      AI chatbot / games
      and many more...
      Installation
      Upload, extract, edit file in inc/config.php, import aiochat.sql
      Bug Fixes/ Additions
      Bug in the formus fixed
      Chat room settings added, colors etc :P
      Pokes, photo comments
      Fixed error on uploader for some phones
      Get notified when someone pms you, unfriends you etc...
      Search users added
      Random members pics added to main page
      Some smiley errors fixed
      Added find girls and find guys to the userlist
      and more lol enjoyy
      script is only 3mb in size (:
      Download: check riderz first reply, or the 4th reply
      Demo
      100% clean first user to register becomes admin automatically
      improved auto ban, curl bots results in ip ban etc lol
      Admin Can
      ban
      edit, delete forums, sticky
      make admins
      edit shout clear whatever they want
      optimize, repair tables to avoid overhead
      edit room names
      and more
      So glad i can access the forum again ^.^
      also to add a smiley just upload in the img/smilies directory
      Screenshots taken from a galaxy Y except 4 the last 1 :p
      Kev i got 1 problem your zodiac is not correct dude i registered on your demo and it says im a taurus and im a gemini so you might wana look into that in any new updates other than that nice script
      My site: http://mimobifunclub.tk
      sigpic

      Comment


        #4
        Yupp, saw people complaining on my site about this, already fixed just have to release update, adding bbcode, more better notifications functionality, outbox and more... stay tuned
        Last edited by kevk3v; 24.12.12, 20:04.
        Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

        Comment


          #5
          Hey i've decided to post a guide to fix it instead of going through that upload process again...
          Edit profile.php
          Find
          PHP Code:
          function zodiac($birthdate
          {
             
          $zodiac ""
             list ( 
          $year$month$day ) = explode "-"$birthdate ); 
             if     ( ( 
          $month == && $day 20 ) || ( $month == && $day 20 ) ) { $zodiac "Aries"; } 
             elseif ( ( 
          $month == && $day 19 ) || ( $month == && $day 21 ) ) { $zodiac "Taurus"; } 
             elseif ( ( 
          $month == && $day 20 ) || ( $month == && $day 21 ) ) { $zodiac "Gemini"; } 
             elseif ( ( 
          $month == && $day 20 ) || ( $month == && $day 23 ) ) { $zodiac "Cancer"; } 
             elseif ( ( 
          $month == && $day 22 ) || ( $month == && $day 23 ) ) { $zodiac "Leo"; } 
             elseif ( ( 
          $month == && $day 22 ) || ( $month == && $day 23 ) ) { $zodiac "Virgo"; } 
             elseif ( ( 
          $month == && $day 22 ) || ( $month == 10 && $day 23 ) ) { $zodiac "Libra"; } 
             elseif ( ( 
          $month == 10 && $day 22 ) || ( $month == 11 && $day 22 ) ) { $zodiac "Scorpio"; } 
             elseif ( ( 
          $month == 11 && $day 21 ) || ( $month == 12 && $day 22 ) ) { $zodiac "Sagittarius"; } 
             elseif ( ( 
          $month == 12 && $day 21 ) || ( $month == && $day 20 ) ) { $zodiac "Capricorn"; } 
             elseif ( ( 
          $month == && $day 19 ) || ( $month == && $day 19 ) ) { $zodiac "Aquarius"; } 
             elseif ( ( 
          $month == && $day 18 ) || ( $month == && $day 21 ) ) { $zodiac "Pisces"; } 
             return 
          $zodiac

          Replace to
          PHP Code:
          function zodiac($day,$month

          if((
          $month==&& $day>20)||($month==&& $day<20)){
          $zodiac "Aquarius";
          }
          if((
          $month==&& $day>18 )||($month==&& $day<21)){
          $zodiac "Pisces";
          }
          if((
          $month==&& $day>20)||($month==&& $day<21)){
          $zodiac "Aries";
          }
          if((
          $month==&& $day>20)||($month==&& $day<22)){
          $zodiac "Taurus";
          }
          if((
          $month==&& $day>21)||($month==&& $day<22)){
          $zodiac "Gemini";
          }
          if((
          $month==&& $day>21)||($month==&& $day<24)){
          $zodiac "Cancer";
          }
          if((
          $month==&& $day>23)||($month==&& $day<24)){
          $zodiac "Leo";
          }
          if((
          $month==&& $day>23)||($month==&& $day<24)){
          $zodiac "Virgo";
          }
          if((
          $month==&& $day>23)||($month==10 && $day<24)){
          $zodiac "Libra";
          }
          if((
          $month==10 && $day>23)||($month==11 && $day<23)){
          $zodiac "Scorpio";
          }
          if((
          $month==11 && $day>22)||($month==12 && $day<23)){
          $zodiac "Sagittarius";
          }
          if((
          $month==12 && $day>22)||($month==&& $day<21)){
          $zodiac "Capricorn";
          }
          return 
          $zodiac;

          Find
          PHP Code:
          $imgz strtolower(zodiac($checkz));
          if(!empty(
          $imgz))
          {
          echo 
          '<br/>Astrological symbol: <br/><div class="info">'.zodiac($checkz).' <img src="img/zodiac/'.$imgz.'.png" alt="'.$imgz.'"/><br/></div>';

          Replace to
          PHP Code:
          $imgz strtolower(zodiac($star["0"], $starchk));
          if(!empty(
          $imgz))
          {
          echo 
          '<br/>Astrological symbol: <br/><div class="info">'.zodiac($star["0"], $starchk).' <img src="img/zodiac/'.$imgz.'.png" alt="'.$imgz.'"/><br/></div>';

          Last edited by kevk3v; 26.12.12, 06:06.
          Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

          Comment


            #6
            Font to big in mobile version.

            Comment


              #7
              Make it smaller then

              Comment


                #8
                kev u can add here the features of the next version ?? Im curious
                if like my post click:

                http://coding-talk.com/images/totall...ost_thanks.gif

                Comment

                Working...
                X