Looking for simple forum script..

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

    Looking for simple forum script..

    a simple forum script, not another bloated lavalair edit,
    xhtml-mp + css, without 100+ mods, without 100s of animated gif's,
    no javascript, admin can edit/delete posts/users..
    user registration, php+mysql (can be perl+mysql)
    anything like this exists?

    #2
    Yes but its not for sale thou lol
    Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
    Visit: WapMasterz Coming Back Soon!
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

    Comment


      #3
      mybb.com + mybbgm.com
      Unamos los corazones,hoy todos somos multicolores!

      Comment


        #4
        @sub, i don't want to buy it :D
        @morency, i already used that two, too much features, and mybbgm page is 170+kb, even bigger then mybb web lol because of prototype javascript and ****..

        i started my own forum project, but didn't finished it, still needs alot of work, i'll post if someone is interested..

        Added after 3 minutes:

        what i've did so far is, login/register/profile/forum browsing/recover password,
        no posting/opening topics/admin panel/etc..
        its serbian cyrilic..
        Last edited by milomir; 02.03.11, 11:08.

        Comment


          #5
          Originally posted by milomir View Post
          a simple forum script, not another bloated lavalair edit,
          xhtml-mp + css, without 100+ mods, without 100s of animated gif's,
          no javascript, admin can edit/delete posts/users..
          user registration, php+mysql (can be perl+mysql)
          anything like this exists?
          with those few features you can code a good forum just in one day.
          Advertise your mobile site for FREE with AdTwirl

          Comment


            #6
            Then share ur script with us @Milomir
            have connected with http://adexchat.com ?
            Fun up with
            http://forum.adexchat.com

            Comment


              #7
              well, @gum.. i can, just that, i'm lazy.. :P

              here's what i've done so far, sorry guy's, its serbian cyrillic..

              Added after 2 minutes:

              @Dirty-Dreamz, what do you mean, "to view the site"?
              anyways, i found some russian script, i'll be translating it..
              Attached Files
              Last edited by milomir; 03.03.11, 10:25.

              Comment


                #8
                ok. guy's, i started coding my own script, its not based on anything and does not use code from InsForum, if you have time i need some testers
                Krimos Devel
                register with code: kridevel
                not all features are available, when i finish it i'll be releasing it

                Comment


                  #9
                  last nyt one of ma lil bro request me to make em a forum script.
                  Now m on it.ill put a demo ere wen itll complete

                  Comment


                    #10
                    krime is progressing fast, well, not that fast, as i'm the only one who's working on it, and that i'm working 2h a day..
                    added many new features today, improved security, etc..

                    Comment


                      #11
                      check mine 60% completed
                      AxisChat.Com
                      Hows it?

                      Comment


                        #12
                        looks good no registration?
                        i finished krime, will be releasing beta on march 13

                        Added after 3 minutes:

                        some of the features of krime:
                        secure, small, simple, xhtml-mp, no images, fully customizable (css), forums/threads/posts, pin/lock/delete/edit, profile/edit/delete/ban/kick, online, users list, users/mods/admins, bbcode, smiles, multilingual (serbian/english), password reset, invitation only, admin approval, no mod/admin panel, everything is inline
                        Last edited by milomir; 11.03.11, 20:55.

                        Comment


                          #13
                          i just tryin to do a demo.
                          Reg systm is easy wid session. Just need to work wid style n base

                          Comment


                            #14
                            yeah
                            btw. you didn't secured it :P

                            try this
                            PHP Code:
                            function clean($string)
                            {
                              
                            $string trim($string);
                              
                            $string htmlentities($stringENT_QUOTES"utf-8");
                              
                            $string str_replace("\'""'"$string);
                              
                            $string str_replace("\r\n""<br />"$string);
                              
                            $string strtr($string, array(chr("0") => ""chr("1") => ""chr("2") => ""chr("3") => ""chr("4") => ""chr("5") => ""chr("6") => ""chr("7") => ""chr("8") => ""chr("9") => ""chr("10") => ""chr("11") => ""chr("12") => ""chr("13") => ""chr("14") => ""chr("15") => ""chr("16") => ""chr("17") => ""chr("18") => ""chr("19") => ""chr("20") => ""chr("21") => ""chr("22") => ""chr("23") => ""chr("24") => ""chr("25") => ""chr("26") => ""chr("27") => ""chr("28") => ""chr("29") => ""chr("30") => ""chr("31") => ""));
                              
                            $string str_replace("\\""\"$string);
                              
                            $string str_replace("|""I"$string);
                              
                            $string str_replace("||""I"$string);
                              
                            $string str_replace("/\\\$/""$"$string);
                              
                            $string mysql_real_escape_string($string);
                              return 
                            $string;

                            and this
                            PHP Code:
                            if(get_magic_quotes_gpc())
                            {
                              
                            $in = array(&$_GET, &$_POST, &$_COOKIE);
                              while(list(
                            $k$v) = each($in))
                              {
                                foreach(
                            $v as $key => $val)
                                {
                                  if(!
                            is_array($val))
                                  {
                                    
                            $in[$k][$key] = stripslashes($val);
                                    continue;
                                  }

                                  
                            $in[] = &$in[$k][$key];
                                }
                              }

                              unset(
                            $in);

                              if(!empty(
                            $_FILES))
                              {
                                foreach(
                            $_FILES as $k => $v)
                                {
                                  
                            $_FILES[$k]['name'] = stripslashes((string )$v['name']);
                                }
                              }

                            Comment


                              #15
                              lol u donno me :P
                              I said its only 60% done.i had 2 successful site n no one can inject :P
                              i know things dude.

                              Comment

                              Working...
                              X