TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 10-01-2009, 06:27 PM   #1 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default Dingo Framework Launched

I just launched my PHP framework today. Check it out if you want...

> http://www.dingoframework.com
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-01-2009, 10:30 PM   #2 (permalink)
The Addict
 
tony's Avatar
 
Join Date: Aug 2008
Posts: 336
Thanks: 8
tony is on a distinguished road
Default

I've been hearing about your framework for months, good to see there is a release, I'm going to check it out.
tony is offline  
Reply With Quote
Old 10-01-2009, 10:55 PM   #3 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

I checked it out, the overall application seems nice, the code is semi-documented (I love documented code, almost too much). Overall it's nice, light (expected for an initial release).

*EDIT*:

1) I had to remove everything from the .htacces file and add this:
"DirectoryIndex index.php"

2) I had to create a "none.php" [Blank File] library in system\libraries, because I didn't want to load any library. If I commented out the loading it would throw an error.

This framework is not for non-programmers (as of now), you need to know and understand a little about programming. Otherwise I'm seeming to really like this.

A "Hello, World!" demo (Really Exciting!).

P.S. I have not checked any of the documentation (except for install/hello-world), but I will later tonight.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-02-2009, 01:11 PM   #4 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Glad you guys seem to like it so far.

@adam, what system configuration are running? You errors seem very strange, do you have any of these problems when not using fancy URLs?

Quote:
This framework is not for non-programmers (as of now), you need to know and understand a little about programming. Otherwise I'm seeming to really like this.
Yeah I think that's the best way to go. After all, if I make it for people who do not know programming then it will be too dumbed-down for the programmers.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-02-2009, 03:14 PM   #5 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

I just posted the first part of a series of tutorials covering making a blog with Dingo.

> http://www.dingotuts.com/article/blo...ial-part-one/2
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-03-2009, 04:43 AM   #6 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
@adam, what system configuration are running? You errors seem very strange, do you have any of these problems when not using fancy URLs?
XP SP2
Apache 2.2.13 (Latest)
PHP 5.3
MySQL (Not Used)

Most .htaccess files are ignored locally, but your application seemed to auto-load them. It was weird.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-03-2009, 01:14 PM   #7 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Strange. Did you have any of these problems when you uploaded them to your public web server?
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-03-2009, 04:26 PM   #8 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
Strange. Did you have any of these problems when you uploaded them to your public web server?
Nope. (Char Limit)
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-05-2009, 02:41 PM   #9 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

Hmm the tutorial looks nice, it reminds me of CodeIgniter :)
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
Old 10-05-2009, 03:00 PM   #10 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Yes I liked how you accessed the libraries in CI, $this->lib->func() so I used that method in Dingo rather than static classes or $lib->func().

Other than that and the fact that is uses the MVC pattern, it doesn't have very many similarities.

Has anybody checked out the Dingo Talk library or the XSS helper? I know the XSS helper is not currently documented, but basically you can use it like this:

PHP Code:
$this->load->helper('xss');
        
$xml 'test <a href="javascript:window.alert" title="wow. this /is/ awesome!">Link</a> <i onclick="alert(\'xss\')">test</i><p class="wow">Amazing</p><wow></wow>';

$d xss::clean($xml);

var_dump($d); 
The talk library is kinda an experimental way to easily add an API to your sites.

Also note that there is an issue with the email helper in version 0.3.0. I have fixed this issue and the new email helper will be included with version 0.4.0. If you want the fixed version before then (probably a month) just send me a PM.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-07-2009, 03:04 PM   #11 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Part 2 of the blog tutorial has been posted: http://www.dingotuts.com/article/blo...ial-part-two/3
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-07-2009, 09:56 PM   #12 (permalink)
That guy
 
cachepl0x's Avatar
 
Join Date: Sep 2009
Location: San Antonio, TX
Posts: 24
Thanks: 0
cachepl0x is on a distinguished road
Default

Waiting for three. ;)
cachepl0x is offline  
Reply With Quote
Old 10-24-2009, 10:17 PM   #13 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

I finally got part 3 of that tutorial posted: http://www.dingotuts.com/article/blo...l-part-three/5
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-24-2009, 10:55 PM   #14 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

Very well written tutorial, but I'm afraid you may have missed the most important piece of advice for people building a blog; "Download Wordpress".


delayedinsanity is offline  
Reply With Quote
Old 10-25-2009, 12:16 AM   #15 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Oh I love constructive feedback.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-25-2009, 01:40 AM   #16 (permalink)
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

It was completely meant as tongue in cheek, I hope you didn't take it the wrong way. I'm a huge fan of people who put that much hard work into a project and finally get it up and running (or released as the semantics may be). I'm a full time developer for Wordpress and Wordpress µ (sites, not the core) so when I saw your tutorial was on blogging, it just flowed forth.

If I ever get the chance I'll definitely give you real constructive feedback, but for now all I could tell you is that I scanned over the codebase and it looks pretty snazzy so far. Nice and clean, and well organized, all good things - from my initial scan, the only thing I'd suggest is that you may want to consider releasing a regular MySQL driver for your database handlers in conjunction with the MySQLi. Although MySQLi is to be preferred and most people using a framework will probably have the ability to update if they compiled without it, I developed a UAC a long time back that used strictly MySQLi until I realized half my audience wasn't so well endowed.
delayedinsanity is offline  
Reply With Quote
Old 10-26-2009, 03:39 PM   #17 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Lol yeah I knew you were kidding, I just never miss an opportunity to be sarcastic.

I'll be sure to look into creating a purely MySQL driver for the framework.

Thank you!
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dingo Framework - ALPHA Testing Open! ETbyrne Show Off 97 10-18-2012 02:11 PM
Best License for Dingo? ETbyrne The Lounge 12 08-22-2009 10:44 PM
Framework: Do's and Don'ts Jim Advanced PHP Programming 7 04-14-2009 03:00 PM
Zoop Framework 1.5 released bobthecow Libraries & Extensions 3 11-02-2008 06:54 PM
Framework Rendair Javascript, AJAX, E4X 1 03-09-2008 10:28 PM


All times are GMT. The time now is 02:23 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design