Status
Not open for further replies.

Loonycgb2

Active Member
957
2011
239
0
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:
81392e.png


Screenshot updated

Currently has & WIP:

  • Admin CP (20 % done) ~Updated Aug 30
  • Member Registration & Login - Its fully done & password is salted so no hijacking :D 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 xD... 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
 
Last edited:
19 comments
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"...
 
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 :D
 
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
 
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.
 
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..
 
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.
 
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 } ?>
 
hahah id make a lulz site but i rather do something useful..

Anyone know how to get rid of the need of
Code:
<?PHP
Im coding this on NEC server and its weird the free host is linux and has issues with the PHP part so i need to remove it or else it causes error

edit: nevermind got it i needed to enable short open tags.. was bout to say this is a bitch ahah
 
Last edited:
Well to be honest, can't do much with the code you gave me. :| I'd need the full script to make sure there were no bugs with the template. As son as you've got a stable version just let me know via PM. Until then I'll just get a basic HTML layout done.
 
Whats MVC :D im a noob haha...
edit: OH no this isnt ive made dirty classes for this xD not mvc based tho..

Also just added new video function.. Videos are called by video id's now so the source link isnt in the url.. its all pulled from mysql ;)...

Made it much easier to create a submit page because now i can seperate them and add way more sites to be supported
 
good i love that :D
take care of security in your forms, and i advise you to use a framework, it will be way more solid and efficient :)
GOOD JOB! keep updating ;)
 
good i love that :D
take care of security in your forms, and i advise you to use a framework, it will be way more solid and efficient :)
GOOD JOB! keep updating ;)


Yup im working on security ;) thats my first priority.. Also i hate useing frame works.. I always remember the standard functions then the next day i gotta re learn them haha...

I finally got a working admin cp..

Currently it can delete videos and users..
Im still need to edit the edit page to edit users and videos from admin cp..
 
I rather make my own template engine.. thats the point in createing my own script :P...

I pretty much have full control of what i can do because the code i have made is so easy
 
Status
Not open for further replies.
Back
Top