The CakePHP Bakery Launches
This is the place to be. The CakePHP community is always contributing something, so we figured we should put together a nice place for everyone to hang out. Its a pretty complete community publishing system.
The current build can handle multiple categories in a tree, multiple pages per article, ratings, tags, and user profiles. We plan to slowly add features, including adding attachments and icons. Attachments will help manage images, pod-casts, screen-casts, etc.
You can see that some of the styling and detailing needs to be completed. We are working on making it look better. If you have any ideas feel free to post a screenshot and add a comment with the link.
Even before we wrote this post, There have been 100 users added and some great articles and code samples. This community continues to impress. Thanks for the help.
More to come.
You can see that some of the styling and detailing needs to be completed. We are working on making it look better. If you have any ideas feel free to post a screenshot and add a comment with the link.
Even before we wrote this post, There have been 100 users added and some great articles and code samples. This community continues to impress. Thanks for the help.
More to come.
Comments
Comment
1 Feeds on categories
Bug
2 Other characters than a to z in a name
So, would be nice if the bakery could handle characters from other languages, like swedish, turkish, german, etc.
Müfit NOT Mufit
Question
3 Feature Request
I'd suggest using breadcrumbs for this.
Keep up the good work with the platform and this community !
Max
Bug
4 Page Title Missing
Happy baking!
Marco
Comment
5 Couple of things...
Comment
6 Excellent centralization of previously scattered information
Random suggestion: I'd prefer radio buttons over the drop-down field for specifying the 'Comment Type.' Saves a click, and it gives the option better visability. And, perhaps make 'Comment' the selection by default?
Comment
7 Someone really enjoys regexp validation here
Getting 'please enter title' while I entred it and have absolutely NO idea if the validation does not allow "?" or maybe sth else is also very frustrating.
Anyway: any real purpose for these restrictions except for 'having fun' with regexp validation?
Comment
8 Validation is a good thing
The main reason for strict validation is ensuring submitted data is correct. Validation is better than filter or sanitizing. I agree that its a little too restricitve, though. Expect some updates soon.
Bug
9 Real Name Field
Question
10 Search
Comment
11 You know what is missing here
Would be nice to have a big link back to cake home up there.
just my 2 cents (been itching to say this for a long time... :)
Louis
PS +1 for Igor Mroz comment. Got hit twice because my title was "You know what's missing here?" No apotrophe and no question mark allowed! Bit or a bummer since it looks like a valid title to me. Well, go with the flow they say...
Comment
12 RSS feeds not working
Sorry to be abusing the comments system, but there is no obvious way to contact the site administrators on this site...
The RSS feeds of the following URLs are not working. They remain empty of any entries and have been this way for some time.
http://bakery.cakephp.org/articles/rss
http://bakery.cakephp.org/comments.rss
These are the URLs linked in the head section of all the pages on this site.
Bug
13 Unable to change account password
Comment
14 unable to create Blog tutorial
Im new in Cakephp, I downloaded cakephp 1.2 version since its recommened to dowload it and its new.Im runnging everything under XAMPP(MySQL/PHP/Apache).I’ve been following the Blog tutorial on Cookbook:http://book.cakephp.org/view/326/the-cake-blog-tutorial. I’ve done all the steps now,
Im getting this error now:
Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\cake\app\views\posts\index.php on line 9
Can somebody help me. As I am so new in Baking. How do I resolve this problems? I am very much interested on using this framework with my development. But I find it very difficult to go on. Can somebody guide me please?
thanks
Darkie
Comment
15 RE unable to create Blog tutorial
You have a problem in one of your views. Two possible causes:
1) You're not sending any data from your controller to that view. That's the $this->Post->findall(); your index() method in the controller C:\xampp\htdocs\cake\app\posts_controller.php should have or...
2) You have misspelled or something a var in the foreach() loop that renders your posts (that's the view in C:\xampp\htdocs\cake\app\views\posts\index.php... that should be index.ctp). Should be something like:
<?php foreach ($posts as $post): ?>
<tr>
<td><?php echo $post['Post']['id']; ?></td>
<td>
<?php echo $html->link($post['Post']['title'],
"/posts/view/".$post['Post']['id']); ?>
</td>
<td><?php echo $post['Post']['created']; ?></td>
</tr>
<?php endforeach; ?>
Later!