Join the forums now, and start posting to receive access to our Scripts Vault!
`password` varchar(64) DEFAULT NULL,
Quote from: 133794m3r on October 12, 2010, 05:30:16 PM `password` varchar(64) DEFAULT NULL,Whats wrong with this? I normally store my password in a varchar and I've never had any problems?
I suspect the issue he had is that NULL passwords are allowed by the database.
If Passwords stored on varchar means not secure,TYPO3, Simple Machines Forum (yea our forum uses too), Magento (popular e-commerce suite), wordpress, egroupware Not secure too...
WoW, one damn table field and your project blown, because of what ?It was open source you uber 3l33t l4mer. If you know better, patch it...
Quote from: Delifisek on October 13, 2010, 02:26:50 AMWoW, one damn table field and your project blown, because of what ?It was open source you uber 3l33t l4mer. If you know better, patch it...just because you get all pissy becuase allowing for null passwords as an option and also making it appear to be a 64character password which as far as i know is no decent hashing algorithm proper, and i didn't want to dig through it tall. I'm too busy doing my own things, and this is the name that i've been using ever since i finally decided to have a singular online presence. I don't know what this kohona thing is, and it's probably OO by nature as most things are now a days and i refuse to touch OO code.
New version released which uses InnoDB for all tables.I decided to change them all from MyISAM after a bit of reading online and doing a few benchmarks.
Bad choice for a framework.InnoDB needs more memory to run properly and people who use frameworks usually run on crappy hardware.InnoDB requires proper setting of buffers and people who use frameworks usually don't have access to hardware settings nor have the skills to do it properly (setting too high buffers is very bad, too low is bad too).InnoDB is more prone to nobish mistakes and people who use frameworks usually have low skills (how many of them will remember/know to rewrite the count(*) part of the code?).MyISAM is much more fit for frameworks.
InnoDB needs more memory to run properly and people who use frameworks usually run on crappy hardware.
InnoDB requires proper setting of buffers and people who use frameworks usually don't have access to hardware settings nor have the skills to do it properly (setting too high buffers is very bad, too low is bad too).
InnoDB is more prone to nobish mistakes and people who use frameworks usually have low skills (how many of them will remember/know to rewrite the count(*) part of the code?).
MyISAM is much more fit for frameworks.
Do you have any references to back up your claims about InnoDB? I've never heard of your memory and buffer claims before.
framework builders are skilled developers
InnoDB needs more memory to run properly ...