| Title |
Body |
Short |
Tags |
Created |
| Welcome at my webdev blog |
|
The website is currently under construction. I'm gonna use this website to post interesting stuff about web developement and about a php framework called CakePHP. |
cakephp, new |
2008-03-03 15:25:50 |
| Pagebakery CakePHP CMS |
To catch a glimpse of Pagebakery you can visit their site and watch the screenshots and check out their developer releases. Pagebakery.org |
Pagabakery is an open source CMS made with CakePHP. The alpha version is not released yet and the CMS use alot of ajax. Interesting? |
cakephp, cms, pagebakery, ajax |
2008-03-29 13:46:52 |
| Cakephp Multiple HABTM bug |
$this->data:
[Foo] => Array
(
[Foo] => Array
(
[0] => 2
)
)
[Bar] => Array
(
[Bar] => Array
(
[0] => 2
[1] => 3
)
)
This doesn't work without the fix. When you save this cake will add the [foo] to the [bar] table. To fix this you have to edit model.php in /cake/libs/model. Scroll down to function __saveMulti and then look for this line: foreach ($value as $update) { and add this line before it:
$newValues = array();
The problem is fixed! Good luck. (This is tested in cakephp 1.2 rev 6311) |
Hi do you have problems with your cake model with multiple HABTM fields in cakephp 1.2? It can be the bug in cakephp. Here's the solution. |
cakephp, HABTM, bug |
2008-04-14 16:30:54 |
| GTA IV |
 |
Hi i've bought Grand Theft Auto 4 for the playstation 3 yesterday. I was lucky because the game was sold out completely. Several sites has given GTA a 10. |
gta 4, playstation 3 |
2008-04-30 22:51:15 |
| CakePHP 1.2 RC1 released |
You can download the new version of cakephp at their official website at cakephp.org.
If you used vendors in your current cakephp project and you are planning to upgrade cakephp to release candidate 1 then you have to change the code which you include your vendor with. First you used:
vendor('foo');
but now the vendor command is deprecated and this is the new command:
App::import('Vendor', 'foo');
I hope this information is useful for you. See you later! |
Hi, a few weeks ago cakephp released a new version of 1.2, this time it is the release candidate so it means they are almost ready for the full stable version, it only needs more testing. |
cakephp |
2008-06-23 23:21:46 |
| Posting comments is fixed |
|
Hi I fixed the function to post comments to items i've posted. |
|
2008-12-13 12:14:31 |
| Merry christmas |
|
Hello,
I wish you a merry christmas and a nice day with a lot of food :-) |
|
2008-12-25 19:10:23 |
| CakePHP 1.2 Final released |
For more information you can visit: http://bakery.cakephp.org/articles/view/the-gift-of-1-2-final |
Hi! First of all, I hope you had a wonderfull christmas and a delicious turkey. :-)
Second, cakephp just released their final version of 1.2. So if you like the framework you can finally use the stable version of 1.2.
Enjoy! |
cakephp, php |
2008-12-26 13:29:10 |
| Happy 2009 |
|
Hi people, I wish you a happy new year and be carefull with the fireworks :-) |
|
2008-12-31 19:33:08 |
| CakePHP released 1.2.1 |
|
Hi my first news post in 2009.
Cakephp has released a new version of their framework yesterday. Version 1.2.1. You can read the changes in the changelog here: Changelog
Have a nice day. |
cakephp |
2009-01-17 12:30:49 |
| Make your own Obama poster |
The site is obamiconme.pastemagazine.com.
Have fun with your campaign in 4 years. |
Hi today Obama is inaugurated as the new president of the USA and I found a site where you can make your own Obama-like poster which he used for his campaign. |
obama |
2009-01-21 00:16:08 |
| Plans for new blogging system |
I didn't start yet to build the new system. I'm gonna start when I have more time for myself. |
Hi soon i'm gonna develop a new blogging system because I like to make it myself, this one I also build myself with CakePHP but the new one is without a php framework. |
php, blog |
2009-04-26 11:50:31 |
| Dutch webdevvelopers community |
It must be a place where people can read/add tutorials, comment on news items, ask questions about web developing and many more. The site isn't open yet but check the site often and you will enjoy the site if you are Dutch or Belgian.
See you at webdevvers! |
Hi folks,
I haven't update this site for a while so here my update. I am busy with a dutch webdevelopers community called webdevvers.nl. Read more for more info. |
web developers |
2010-02-04 21:03:35 |
| Making eclipse run in debian |
To get rid of the message: " JVM terminated. Exit code=127 " you need to install xulrunner-dev. It is a bug that xulrunner-dev is not installed with eclipse when you install it with apt-get.
First get root acces and update your packages with apt-get update.
Then install xulrunner-dev with the command (without the quotes): "apt-get install xulrunner-dev".
After installing xulrunner-dev you will hopefully run eclipse without problems.
Still not work? Post your question below.
Have a nice day! |
Hi,
After installing debian on my laptop I wanted to install eclipse with the apt-get install eclipse command. That was no problem but I couldn't start eclipse after installing and I only saw exit code 127. After searching the internet i've found the solution. |
linux, eclipse, debian |
2010-02-14 16:50:14 |