Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
delete meh
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Khalil" data-source="post: 316304" data-attributes="member: 9938"><p>Alright so, I get the lightweight part, but how in the world is this 'powerful'? If to be quite frank with you, all I see is ripped off parts of RevCMS, put together in a horribly messy manner to result in what you call 'antFramework'. Not that I'm accusing you of ripping, but you'll catch my drift eventually.</p><p></p><p>You said this 'framework' utilizes PDO for mysql handling, yet you release it with an incomplete if not, none existant database engine. Also, your 'antTpl' reminds me quite a lot of RevCMS's template engine, and if I were to be quite honest, I'd say you just edited a few parts then renamed it. Even the fact you use the keywords 'final' when you set a function, reminds me of RevCMS. Not only that, but if we take a look at your index file and compare it to RevCMS's index file, it'll remind us of Rev. Everything, from your .htaccess file to your 'antTpl', it's all Rev alike.</p><p></p><p>[PHP]/* Coming Soon</p><p></p><p>try {</p><p> $pdo = new PDO('mysql:host='. $ant['PDO']['Hostname'] .';dbname=' . $ant['PDO']['Database'], $ant['PDO']['Username'], $ant['PDO']['Password']);</p><p> $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);</p><p>} catch(PDOException $e) {</p><p> die('ERROR: ' . $e->getMessage());</p><p>}*/</p><p>[/PHP]</p><p></p><p>Even that code sample makes me want to seperate my eyes from my face and throw them into a garbage can then light it up on fire, only to throw it deep down in an ocean after the fire settles down.</p><p></p><p>Also, it is highly unsuggestable to redirect in php and not kill the page after redirecting.</p><p></p><p>So this:</p><p>[PHP] if($user->isLoggedIn()) {</p><p> header($ant['Site']['Location'] . '/backend/dashboard');</p><p> }[/PHP]</p><p>Needs to be this:</p><p></p><p>[PHP] if($user->isLoggedIn()) {</p><p> header('Location: '.$ant['Site']['Location'].'/backend/dashboard');</p><p> exit;</p><p> }[/PHP]</p><p></p><p>Conclusion: I will never consider using this, and I would suggest everyone not to.</p></blockquote><p></p>
[QUOTE="Khalil, post: 316304, member: 9938"] Alright so, I get the lightweight part, but how in the world is this 'powerful'? If to be quite frank with you, all I see is ripped off parts of RevCMS, put together in a horribly messy manner to result in what you call 'antFramework'. Not that I'm accusing you of ripping, but you'll catch my drift eventually. You said this 'framework' utilizes PDO for mysql handling, yet you release it with an incomplete if not, none existant database engine. Also, your 'antTpl' reminds me quite a lot of RevCMS's template engine, and if I were to be quite honest, I'd say you just edited a few parts then renamed it. Even the fact you use the keywords 'final' when you set a function, reminds me of RevCMS. Not only that, but if we take a look at your index file and compare it to RevCMS's index file, it'll remind us of Rev. Everything, from your .htaccess file to your 'antTpl', it's all Rev alike. [PHP]/* Coming Soon try { $pdo = new PDO('mysql:host='. $ant['PDO']['Hostname'] .';dbname=' . $ant['PDO']['Database'], $ant['PDO']['Username'], $ant['PDO']['Password']); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch(PDOException $e) { die('ERROR: ' . $e->getMessage()); }*/ [/PHP] Even that code sample makes me want to seperate my eyes from my face and throw them into a garbage can then light it up on fire, only to throw it deep down in an ocean after the fire settles down. Also, it is highly unsuggestable to redirect in php and not kill the page after redirecting. So this: [PHP] if($user->isLoggedIn()) { header($ant['Site']['Location'] . '/backend/dashboard'); }[/PHP] Needs to be this: [PHP] if($user->isLoggedIn()) { header('Location: '.$ant['Site']['Location'].'/backend/dashboard'); exit; }[/PHP] Conclusion: I will never consider using this, and I would suggest everyone not to. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
delete meh
Top