Status
Not open for further replies.
Well looking for some advice on a design i purchased! i want to know if it looks open source and user friendly!


What i want to know is do you think the design will be user friendly and professional for the open source / professional market?

Note: The background will be changed along with other aspects of the color scheme! but general block layout etc.

I am afraid, the design doesn't look good for a professional site.
 
catch you on msn soon Dman!

Thanks for that comment 1only, lol soon as you noticed that its instance SEO you was hooked lol

@Desi! Couple more key points would be nice! what makes it not professional in your eyes! what you think i should change! :D please


Mr happy, MisterT{
Ill let you know soon! ill be needing testers but i need real OOP Programmers AND MVC
experts to play with it mainly! but you will get a tester soon :D
}
 
^^ how did you guys test it? Lite pm you? Id like to try it out :D


You mentioned something about seo?

Also it is sql injection free which sounds good. I was rereading your post about how it could eliminate all of ftps. That would be really amazing if you got a few hosts to implement it. You would spread rather fast.
 
The SQL Injection elimination works like so!


All input from the user (GET / POST / COOKIE) and scanned in the process and converted into there entities so < becomes &lt; and ' becomes & #039;

so when you attempt to acces these converted enities with $this->input->post->usernmae instead of $_POST['username'] there pretty safe altho you still need to escape them!

in the model when your using the database you would do the following

$Query = $this->prepare('INSERT INTO (culumn_1) VALUES (?)');
$Query->bindParam($this->input->post->username); //its escaped here automatically

$Query->execute(); //And run

The input sanitization removes a fair amount of possible injections but not 100% with null chars etc!

the seo as described within another post is the routing

so take this url for instance

http://mysite.com/users/profile/administration

The urls are made up of 2 major segments

Code:
http://mysite.com/controller/method/unlimited/amount/of/varaibles/to/be/passed/to/the/method

this will load the file users.php and run the function profile() and pass in the first value adminstrator!

theres 4 lines to the htaccess to make this possible but here are some urls that you can see the SEO possibilities

http://mysite.com/blog/view/some-unique-title
http://mysite.com/downloads/get/22/some-download-title-here/
http://mysite.com/users/login/

all these get routed to the correct controller+method and pass in the params!

simples :D

ill sort some beta's out soon
 
It will come with a licence where it allows you to use the code as you see fit but abiding to certain regulations such as your not allowed to sell without the owners/creators written permissions

So the term Open Source means the "Source" is open to the general people freely meaning you can create edit delete sections of the code without infringing any distribution rights or general usage rights etc!

But note that i might not be 100% correct on the exact rules / regulations but what i said is my general knowledge of licence's :)

Reference: http://en.wikipedia.org/wiki/Open_source

peace up.. A town
 
ooh yea my bad haha! was half asleep when i read it :/

its not about the look of open source more the feel! its hard to explain but i tend to have an eye for design and i try make websites have some kind of feel to it by using colour schemes etc so open source to me would be light / simple / easy to use! along with like big download buttons and version repositories etc
 
main thing that can be changed is the background.
in navigation bar, the sides are too much curved.

off topic
we can sell open source code..these no rule which stops one from selling open source code( restrictions like including a copy of GNU license with the distribution , etc apply ).
 
I have always coded my own framework and i can do it easily..

Tell me why i should be using yours?

I mean, what are the features it offer??
 
The framework its self is extremely light weight in resources! The autoloading system layout means you can direcly drop modules / libraries within a library folder (application / system) and then you can directly access in controllers like $this->Library->youLibrary.

The framework itself atm with basic libraries like Session is < 30Kb taking in mind that there's Multiple database system supporting multiple database services like MySql

I would not recommend you using it until its out of beta mode atm as there's still work to do on compatibility, Not with php or mysql but with different server configs etc! to make it more global

Also another note being that theres only basic structure files loaded during initial startup! there's not configure to auto load certain libraries but libraries are auto loaded when used !

such as when you create a a DB Abstraction Model and you extend the ModelType_DatabasePDO before your model is initialized the system will auto load the core DatabasePDO systems so you havbe access to these within your Models

The system is built for the greater basic coders who want a simple and safe experience whilst programming there websites ! if your an experienced programmer you may prefer to create your own as it will be logic specific rather than the logic being used to a more global scope!

Regards
 
Status
Not open for further replies.
Back
Top