MyBB Community Forums

Full Version: ClanBB Alpha V1 Feature Suggestions [Contribute To The Feature]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5
Alpha V1 will be available for $3 tomorrow! (Australian Dollars)

Here you will receive all the Alpha To Beta V3 updates.

Our process will be
Alpha V1 (production release)
Alpha V2 (will include fixes what you expect)
Beta 1 (more stable then alpha)
Beta 2(Getting there)
Beta 3 (almost as good stable)

Not Included (Bare in mind we add in features during our alpha and beta stages)
Stable V => On Wards!!

Almost ready just making sure everything is as stable as possible for a alpha release.
You can now purchase the software on demand!
http://markm.spudgaming.com/

You may want to try before you buy! This will be up shortly

PM Me if you want to try before you buy and we will send you a link I also link it here shortly.

Get your FREE demo!
http://markm.spudgaming.com/forums/index.php

Forget about paying you can have our software for free Wink

Just download it on the site
Haven't got your copy yet?
Do so here
http://markm.spudgaming.com
It seems you put quite some effort on this, congratulations.

However, I'm curious about your coding style, seems far away from how MyBB is coded.
I know I decided to use regular MySQLI queries rather then the mybb defaults since that's what I'm use to but remember this is only an alpha v1 initial release so I be using/updating the mybb style queries in the V2 release Wink

This is also only free was going to release it for $4 but decided it should be free till the stable release.

Thanks Smile

If you do decide to use clanbb let me know how the functionality is and report any bugs.
What I meant is, that the whole code is far different from what most code in MyBB or MyBB plugins are like. It doesn't really surprises me the issue you were having with custom themes. You should consider using the template system.

<style>
    #wrapper {
        width:450px;
        margin:0 auto;
        font-family:Verdana, sans-serif;
    }
    legend {
        color:#0481b1;
        font-size:16px;
        padding:0 10px;
        background:#fff;
        -moz-border-radius:4px;
        box-shadow: 0 1px 5px rgba(4, 129, 177, 0.5);
        padding:5px 10px;
        text-transform:uppercase;
        font-family:Helvetica, sans-serif;
        font-weight:bold;
    }
    fieldset {
        border-radius:4px;
        background: #fff; 
        background: -moz-linear-gradient(#fff, #f9fdff);
        background: -o-linear-gradient(#fff, #f9fdff);
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f9fdff)); /
        background: -webkit-linear-gradient(#fff, #f9fdff);
        padding:20px;
        border-color:rgba(4, 129, 177, 0.4);
    }
    input,
    textarea {
        color: #373737;
        background: #fff;
        border: 1px solid #CCCCCC;
        color: #aaa;
        font-size: 14px;
        line-height: 1.2em;
        margin-bottom:15px;

        -moz-border-radius:4px;
        -webkit-border-radius:4px;
        border-radius:4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    input[type="text"],
    input[type="password"]{
        padding: 8px 6px;
        height: 22px;
        width:280px;
    }
    input[type="text"]:focus,
    input[type="password"]:focus {
        background:#f5fcfe;
        text-indent: 0;
        z-index: 1;
        color: #373737;
        -webkit-transition-duration: 400ms;
        -webkit-transition-property: width, background;
        -webkit-transition-timing-function: ease;
        -moz-transition-duration: 400ms;
        -moz-transition-property: width, background;
        -moz-transition-timing-function: ease;
        -o-transition-duration: 400ms;
        -o-transition-property: width, background;
        -o-transition-timing-function: ease;
        width: 380px;
        
        border-color:#ccc;
        box-shadow:0 0 5px rgba(4, 129, 177, 0.5);
        opacity:0.6;
    }
    input[type="submit"]{
        background: #222;
        border: none;
        text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
        text-transform:uppercase;
        color: #eee;
        cursor: pointer;
        font-size: 15px;
        margin: 5px 0;
        padding: 5px 22px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-border-radius:4px;
        -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
        box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
    }
    textarea {
        padding:3px;
        width:96%;
        height:100px;
    }
    textarea:focus {
        background:#ebf8fd;
        text-indent: 0;
        z-index: 1;
        color: #373737;
        opacity:0.6;
        box-shadow:0 0 5px rgba(4, 129, 177, 0.5);
        border-color:#ccc;
    }
    .small {
        line-height:14px;
        font-size:12px;
        color:#999898;
        margin-bottom:3px;
    }

</style>






<?php 
		

echo "
<style>
#background_image {

position:relative;
  background-color: grey;
    background:url('slider_img6.png') no-repeat fixed;
	 background-size: 800px 600000000px;
 
}


</style>


";


?>

 
	  	<style>
	
.info, .success, .warning, .error, .validation {
border: 1px solid;
margin: 10px 0px;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
}
.info {
color: #00529B;
background-color: #BDE5F8;
background-image: url('info.png');
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
background-image:url('success.png');
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
background-image: url('warning.png');
}
.error {
color: #D8000C;
background-color: #FFBABA;
background-image: url('error.png');
}
	</style>

It doesn't makes sense the way you mix PHP and HTML, at least to me.

require "groups/core/check_legit.php";

Doesn't seem to exists.

It may seem better to just put the functionality there first, but believe me, starting right from the start is going to save you time later.

Don't get me wrong, I will test it as soon as I get the chance to.
I agree with Omar G. Correcting a bunch of messy code at the end of a project can be a pretty daunting task once you've designed a great, highly functional plugin. It's been enough for me to be significantly discouraged finishing past projects, and I think it's safe to say I've just now learned my lesson. Toungue

Good luck with your project! It seems like a pretty interesting concept.
I can agree but the only issue here is its not a full plugin so theres no activate feature unless the user manually adds the Css in the template themselfs.

As for the check_legit I forgot to remove this as I was going to make this a paid software as the functionality is good enough.

Thanks for your feedback I will see what I can do Wink

i'm looking at the code now so I see what I can do and I may aswill make this A Alpha V1.5 Release.

i'm actually busy with my site right now so I try to fix it when I get time.

I know you shouldn't do it but sometime it's just easier to mix HTML and PHP especially when you need to get a certain variable in order to do a specific task.
Wondering if anyone has tested the software yet :/
I need to know if the functionality works for the mybb community as will


Thanks
Not sure why no one has giving it a try.

The site is completed save to download from
Pages: 1 2 3 4 5