KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

Page 1 of 2 12 LastLast
Results 1 to 25 of 46
  1. #1
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    Note:Please note that this v3.5.5 is only a trial to test the image verification before v4. You may fix the bugs and post it here if you found any bugs cos I know that image verification will cause alot of bugs.

    Update for v4:

    -Registration with Image Verification (Hopefully I can fix this bug.)
    -Rebirth Ranking (Editing Maxxy's .php script for some reasons)
    -Introduce Blue Layouts (Tested and working~)
    -GM Apply using Vino144's.
    -Character Name Changing (Hopefully, I willl try to fix the bug~)

    Update log: v3.5.5 TRIAL

    -Trial for Image Verification.

    Update log v3.5:

    -GM Apply
    -FoJ Ranking

    Download Link v3.5.5 TRIAL
    http://www.mediafire.com/?z3ojtzjdnds

    DOwnload Link v3.5:
    http://www.mediafire.com/?urwyv2zr8rb

    Credits:
    Everyone who make the script I used =P
    Last edited by frantier123; 03-07-08 at 04:56 PM.


  2. #2
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    whats the bug with char name change?

  3. #3
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    and also image verification? do they both work 100%?

  4. #4
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    and you should check ur channel.php. it doesnt fit the kakacms's layout and the image is missing

  5. #5
    Member James Renard is offline
    MemberRank
    Jul 2008 Join Date
    61Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    we need aql for gm apliaction

  6. #6
    Apprentice Cakemasta is offline
    MemberRank
    May 2008 Join Date
    Berryville VaLocation
    16Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    Nice Job Ill Post my Version Of KaKacmsv3 its awseome and sorta like 3.5 but dif layout


    but All in all nice work

  7. #7
    Account Upgraded | Title Enabled! pr0666 is offline
    MemberRank
    Jun 2008 Join Date
    Holland =)Location
    381Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    nice work dude =)

  8. #8
    Member Jusor is offline
    MemberRank
    Jan 2004 Join Date
    SingaporeLocation
    64Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    hey, firstly, i like to thank the creator of kakacms v3. it has nice designs n all.. Perhaps i could suggest an interesting addition? I added a shoutbox into my website which looks kinda like this :



    ok maybe it sucked with the alignment, but at least it worked. PM me if you'd like this addition or would wanna improve then implement it, i'd give u the files. :)

  9. #9
    Proficient Member nguyenictom is offline
    MemberRank
    Jun 2008 Join Date
    196Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    uhh how can i change the background color?

  10. #10
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    You see, whn I implant the verification, you still can create a account without or typing the wrong verification.

  11. #11
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    thats because u didnt implement the checking of security code in register_do.php

  12. #12
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    Quote Originally Posted by thegamer1907 View Post
    thats because u didnt implement the checking of security code in register_do.php
    I did. Either i implant wrong. i

  13. #13
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    nope you didnt. this is ur reg_do.php:

    Code:
    <?php
    /* Store user details */
    $name = $_POST['name'];
    $pass = sha1($_POST['pass']);
    $email = $_POST['email'];
    $dob = $_POST['dob'];
    $vpass = sha1($_POST['vpass']);
    include('./config2.php');
    $sel = 'SELECT * FROM accounts WHERE name="'.$_POST['name'].'"';
    if($name == ""){
    echo 'No username filled in.';
    exit();
    }elseif(mysql_num_rows(mysql_query($sel)) >= 1 ){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>This username does already exists!</center>';
    exit();
    }elseif($pass == ""){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>No password filled in.</center>';
    exit();
    }elseif($vpass != $pass){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>The passwords did not match.</center>';
    exit();
    }else{
    
    $d = 'INSERT INTO accounts (name, password, email, birthday) VALUES ("'.$name.'", "'.$pass.'", "'.$email.'", "'.$dob.'")';
    mysql_query($d) OR die (mysql_error());
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>Your account has been created, you can now login!</center>';
    }
    ?>
    you are missing this, which verifies the code :
    Code:
    if(strtoupper($_POST['code']) == $_SESSION['code']) {
    echo '<script type="text/javascript">alert("Congradulations, You have entered the Security code correctly.")</script>';
    } else {
    echo '<script type="text/javascript">alert("You have entered a wrong Security code, Please try again!")</script><META HTTP-EQUIV="refresh" CONTENT="0;URL='.$regpage.'">';
    exit();
            }
    and:
    Code:
    $code = mysql_real_escape_string(trim($_SESSION['code']));

  14. #14
    Account Upgraded | Title Enabled! thegamer1907 is offline
    MemberRank
    May 2008 Join Date
    SingaporeLocation
    464Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    and just to add on your register do is prone to mysql injections.

    you should change the user details lines to:

    Code:
    $name = mysql_real_escape_string(trim($_POST['name']));
    $pass = mysql_real_escape_string(sha1($_POST['pass']));
    $email = mysql_real_escape_string(trim($_POST['email']));
    $dob = mysql_real_escape_string(trim($_POST['dob']));
    $vpass = mysql_real_escape_string(sha1($_POST['vpass'])); 
    include('./config2.php');
    $code = mysql_real_escape_string(trim($_SESSION['code']));
    $sel = 'SELECT * FROM accounts WHERE name="'.$name.'"';
    to prevent injection attacks

  15. #15
    Apprentice nmcybro2 is offline
    MemberRank
    Jun 2008 Join Date
    SingaporeLocation
    19Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    how do i change the forum link at my homepage? which file shld i look out for? im try to find the file but i cant. any help pls.

  16. #16
    Apprentice ET240 is offline
    MemberRank
    May 2007 Join Date
    24Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    How to set the ranking and online page to pages, if i got 200 char. the page will be very long, how to set it in like shows 20 in a page.... etc

  17. #17
    Proficient Member vino104 is offline
    MemberRank
    Jan 2008 Join Date
    NetherlandsLocation
    167Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    it's vino104 ^^ very nice, i like, wawawiewa
    and post some screenshots please :D
    prefer using photobucket

  18. #18
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    Re: [Released]KaKaCMS v.3.5 Frantier's Rolled Back

    Quote Originally Posted by thegamer1907 View Post
    nope you didnt. this is ur reg_do.php:

    Code:
    <?php
    /* Store user details */
    $name = $_POST['name'];
    $pass = sha1($_POST['pass']);
    $email = $_POST['email'];
    $dob = $_POST['dob'];
    $vpass = sha1($_POST['vpass']);
    include('./config2.php');
    $sel = 'SELECT * FROM accounts WHERE name="'.$_POST['name'].'"';
    if($name == ""){
    echo 'No username filled in.';
    exit();
    }elseif(mysql_num_rows(mysql_query($sel)) >= 1 ){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>This username does already exists!</center>';
    exit();
    }elseif($pass == ""){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>No password filled in.</center>';
    exit();
    }elseif($vpass != $pass){
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>The passwords did not match.</center>';
    exit();
    }else{
    
    $d = 'INSERT INTO accounts (name, password, email, birthday) VALUES ("'.$name.'", "'.$pass.'", "'.$email.'", "'.$dob.'")';
    mysql_query($d) OR die (mysql_error());
    echo '<link rel=stylesheet href="style.css" type="text/css"><center>Your account has been created, you can now login!</center>';
    }
    ?>
    you are missing this, which verifies the code :
    Code:
    if(strtoupper($_POST['code']) == $_SESSION['code']) {
    echo '<script type="text/javascript">alert("Congradulations, You have entered the Security code correctly.")</script>';
    } else {
    echo '<script type="text/javascript">alert("You have entered a wrong Security code, Please try again!")</script><META HTTP-EQUIV="refresh" CONTENT="0;URL='.$regpage.'">';
    exit();
            }
    and:
    Code:
    $code = mysql_real_escape_string(trim($_SESSION['code']));
    and just to add on your register do is prone to mysql injections.

    you should change the user details lines to:

    Code:
    $name = mysql_real_escape_string(trim($_POST['name']));
    $pass = mysql_real_escape_string(sha1($_POST['pass']));
    $email = mysql_real_escape_string(trim($_POST['email']));
    $dob = mysql_real_escape_string(trim($_POST['dob']));
    $vpass = mysql_real_escape_string(sha1($_POST['vpass'])); 
    include('./config2.php');
    $code = mysql_real_escape_string(trim($_SESSION['code']));
    $sel = 'SELECT * FROM accounts WHERE name="'.$name.'"';
    to prevent injection attacks
    Thx, I will try it tmr, now go sleep *yawn*

  19. #19
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    Ah-ha! I managed to implant verification but nvr test though...go sleep le *yawn*

    pls report if any bugs

    p/s: pls change the config etc. I was using my own lolx

  20. #20
    Proficient Member nguyenictom is offline
    MemberRank
    Jun 2008 Join Date
    196Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    how do i change background color?

  21. #21
    Enthusiast Justinxvengance is offline
    MemberRank
    May 2008 Join Date
    34Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    hey can you help me out
    im using you cms and the pages dont load on there
    im hosting with godaddy
    check my website out
    www.thexelite.net/reg

    please help me

  22. #22
    Account Upgraded | Title Enabled! holdenms is offline
    MemberRank
    Apr 2008 Join Date
    MaineLocation
    264Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    OMG!! u used my Channel Script XD thanks Just 1 thing plzzz give me credit! well u did on the site but not on this tread but idc all ik is that u used it XD ppl enver use my stuff i release

    EDIT - Here is the Images In This Rar File if u guys needed it
    MEDIAFIRE - RapidShare

  23. #23
    Ooo, shiny! FateJiki is offline
    MemberRank
    Feb 2008 Join Date
    1,057Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    I need the .SQL script for the GM apply.

  24. #24
    Proficient Member nguyenictom is offline
    MemberRank
    Jun 2008 Join Date
    196Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    so can anyone tell me how to change the background?

  25. #25
    Account Upgraded | Title Enabled! frantier123 is offline
    MemberRank
    May 2008 Join Date
    659Posts

    Re: [Released]KaKaCMS v.3.5.5 TRIAL Frantier's Rolled ON

    Quote Originally Posted by Justinxvengance View Post
    hey can you help me out
    im using you cms and the pages dont load on there
    im hosting with godaddy
    check my website out
    www.thexelite.net/reg

    please help me
    Well, it can load. Did you change the files I called u to change?



Page 1 of 2 12 LastLast

Advertisement