Activity Stream
48,167 MEMBERS
61190 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 20
  1.     
    #1
    Member
    Website's:
    vaporhostn.com

    Default My 1st New Video Script...

    Well it's not all that perfect i haven't coded in a while, but as soon as i get a fully stable copy going im planning to release a free and paid version..

    At the moment its just a basic script ive coded from ground up..
    It uses organized classes but main files are highly customizable with easy coding.

    Im trying to finish the internal functions and code first before working on extras like themes, features, addon's...

    Preview:


    Screenshot updated

    Currently has & WIP:

    • Admin CP (20 % done) ~Updated Aug 30
    • Member Registration & Login - Its fully done & password is salted so no hijacking 100% Done
    • Member list & profile (wip still but partly done)
    • External videos (Currently no upload just external.. Either youtube or MP4 hotlink)
    • Theme System (New Changes) ~Updated Aug 30
    • Submit system (New Changes) ~Updated Aug 30
    • Search System (I plan to do last as i would like to optimize it)
    • Category System (working adding more) ~Updated Aug 30
    • Member Groups (Added but still no special permission checks on features)
    • Video hit counter ~Added Aug 30

    Soon to have:

    • Upload Feature
    • Customizable Theme & Profile
    • Admin CP (Delete/add whatever) ~Updated Aug 30
    • PM System
    • Video Comment System
    • Script Install System

    I plan to have this done by a week or 2 since i just started this 2 days ago.

    Demo: http://loonycgb.x10.mx/index.php
    (I used a free host to test compatibility with low end hosting)

    Admin Account
    Username - Admin
    Password - password

    Member Account
    Please register it takes nothing but a second and it will help preview the site..

    Suggestions and exploiting my script would be helpful ... So i can work on main things first.. I might maybe before release place this on a svn so people may work on it as they please and add features and submit for main script..

    Also please dont trying attaching php shells to the source submit.. it wont work since php cant be run through a video player haha
    Loonycgb2 Reviewed by Loonycgb2 on . My 1st New Video Script... Well it's not all that perfect i haven't coded in a while, but as soon as i get a fully stable copy going im planning to release a free and paid version.. At the moment its just a basic script ive coded from ground up.. It uses organized classes but main files are highly customizable with easy coding. Im trying to finish the internal functions and code first before working on extras like themes, features, addon's... Preview: http://i25.lulzimg.com/81392e.png Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Banned
    Website's:
    servsilla.com
    Looks good, I'm already thinking of making a template for it. It'd be nice if you could send me over a copy of the script so I can play around and make a nice template for it.

    EDIT: found some exploits: http://screensnapr.com/v/yKLnFr.png

    When you press adminCP nothing happens

  4.     
    #3
    Member
    Website's:
    vaporhostn.com
    thats not a exploit... the admin cp hasnt been started.. i just did a admin check.. if you try to login as a member and go to the admin page it will say "Not admin"...

  5.     
    #4
    Banned
    Website's:
    servsilla.com
    ah, but logged in as Admin.....


    Well if you still haven't started the admin cp then its fine.

    Also about my idea? I've already gotten a little sketch ready for the template

  6.     
    #5
    Member
    Website's:
    vaporhostn.com
    Give me a day or two to get the main features done so the code isn't so messy.. I mean at the moment the template works like
    Code: 
    /themes/default/header.php
    /themes/default/mainmenu.php
    /themes/default/footer.php
    So it will be easier to code a theme around the code

  7.     
    #6
    Banned
    Website's:
    servsilla.com
    Mind giving the those files? I've already started coding a bit of the template. I just need those files so I can integrate them.

  8.     
    #7
    Member
    Website's:
    vaporhostn.com
    As i said im still coding it and id like to make it stable before i release any files.. but your fine to send me edits as you please and ill add them until then i dont like to give out unfinished work..

  9.     
    #8
    Banned
    Website's:
    servsilla.com
    Alright just send me a PM when your done. I'll make a basic layout for the script. Like the header, main content and the footer. When It's done I'll show you a preview.

  10.     
    #9
    Member
    Website's:
    vaporhostn.com
    Ill givem to you i looked at them and it wouldnt cause harm

    footer
    Code: 
             </div>
         </div> 
    </body>
    </html>
    header
    Code: 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title></title>
    <style type='text/css'>
    .wrapper{
       position: relative;
       float: left;
       left: 0px;
       width: 1152px;
       margin-bottom: 6px;
    }
    .left1{
       position: relative;
       float: left;
       left: 3px;
       width: 170px;
       height: 100%;
    }
    .left2{
       position: relative;
       float: left;
       left: 9px;
       width: 970px;
       height: 100%;
    }
    body {
       border-width: 0px;
       padding: 0px;
       margin: 0px;
       font-size: 90%;
       background-color: #e7e7de
    }
    </style>
    </head>
    <body>
        <div class="wrapper">
             <div class="left1">
             <?php include("themes/default/mainmenu.php"); ?>
             </div>
             <div class="left2">
    mainmenu
    Code: 
    
            <?php if(!isUserLoggedIn()) { ?>
                <ul>
                    <li><a href="index.php">Home</a></li>
                    <li><a href="login.php">Login</a></li>
                    <li><a href="register.php">Register</a></li>
                    <li><a href="forgot-password.php">Forgot Password</a></li>
                    <li><a href="resend-activation.php">Resend Activation Email</a></li>
                </ul>
           <?php } else { ?>
                   <ul>
                <?php if(isAdminCheck()) { ?>
                    <li><a href="admin">Admin CP</a></li>
                <?php } ?>
                    <li><a href="index.php">Home</a></li>
                    <li><a href="category.php">Categories</a></li>
                    <li><a href="submit.php">Submit Media</a></li>
                    <li><a href="members.php">Member List</a></li>
                    <li><a href="logout.php">Logout</a></li>
                    <li><a href="account.php">Account Home</a></li>
                       <li><a href="change-password.php">Change password</a></li>
                    <li><a href="update-email-address.php">Update email address</a></li>
                   </ul>
           <?php } ?>

  11.     
    #10
    Respected Member
    Website's:
    FreshWap.com KWWHunction.com
    is it a "Lulz" site? , nevermind looks kool just work on teh theme nigga
    Dear Haters,
    "I respect you so much, that's why I salute you with 1 middle finger!"

    Thank You !

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Video streaming script?
    By fakkme in forum File Host Discussion
    Replies: 3
    Last Post: 6th May 2012, 11:06 PM
  2. [Selling] AVS - Adult Video Script & Add-On
    By Darkstar in forum Completed Transactions
    Replies: 1
    Last Post: 11th Jan 2012, 08:37 PM
  3. [Hiring] Coder for Video Script
    By Deadmau5 in forum Completed Transactions
    Replies: 0
    Last Post: 13th Aug 2011, 03:51 PM
  4. [Selling] A.A.S. (Adult Automated Script For ClipBucket Video Script)
    By tangi in forum Completed Transactions
    Replies: 0
    Last Post: 25th Mar 2011, 12:45 PM
  5. [Selling] X Manager Services : Video creating,video uploading..script install and more!
    By Nikolasr in forum Completed Transactions
    Replies: 2
    Last Post: 14th Sep 2010, 09:59 PM

Tags for this Thread

BE SOCIAL