Re: Problems with Datasources - FIREBIRD

2012-01-09 Thread Djonatan Buss
As I can see we are the only ones using this datasource... damn! -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this

Problems with Datasources - FIREBIRD

2012-01-03 Thread Djonatan Buss
We are using the Firebird DBMS and it seems that either I'm doing something wrong or theres some error when using the Datasources plugin in CakePHP 2.0.4 We have tried some ways to solve this problem and currently we have: (base is our folder name) *Plugin path:* /var/www/base/app/Plugin/Datasou

Re: Cakephp 2.0 Missing Database Connection Solved

2011-10-27 Thread Djonatan Buss
Just to agree with Andy, I spent some time searching for this mail that I remember had seen in a fast reading... Well, now I was trying to figure out what was that thing and couldn't find the right email... I had to search for Andy's answers ( and they are quite a few ) and open one by one until I

Re: Route problem with PHP 5.3

2011-05-03 Thread Djonatan Buss
Ok its working now, I had to do the following sudo gedit /etc/apache2/sites-available/default Find the following: Options Indexes FollowSymLinks MultiViews AllowOverride *None* Order allow,deny allow from all and change it to Options Indexes FollowSymLinks MultiViews AllowOverride *all* Order

Re: Route problem with PHP 5.3

2011-05-03 Thread Djonatan Buss
Yes it is... -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegrou

Re: Route problem with PHP 5.3

2011-05-03 Thread Djonatan Buss
I've put an phpinfo() file into webroot folder and it was accessible with http://localhost/projectname/app/webroot/teste.php -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with

Route problem with PHP 5.3

2011-05-03 Thread Djonatan Buss
I've installed PHP 5.3 and I have already had to make some changes on my cake project ( core.php UTC setting). The problem is that something is going wrong with my routes, I think, because it worked perfectly before. I'm not sure that is a real route problem because it redirecting me to the right

Re: Problem with encoding UTF-8

2011-03-10 Thread Djonatan Buss
Just to confirm, we had a .htaccess with the attribute AddDefaultCharset = ISO-8859-1 Then I added another .htaccess in this new project just turning it off AddDefaultCharset = Off -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Que

Re: Problem with encoding UTF-8

2011-03-10 Thread Djonatan Buss
Seems to be something to do with /etc/apache2/conf.d AddDefaultCharset -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe fro

Problem with encoding UTF-8

2011-03-10 Thread Djonatan Buss
I'm trying to set my application to run under UTF-8 encoding. I've setted : config/database.php 'encoding' => 'utf8' config/core.php Configure::write('App.encoding', 'UTF-8'); views/layouts/*.ctp charset(); ?> And my netbeans project was created as an UTF-8 proj

Changing hiddenField from 0

2011-02-22 Thread Djonatan Buss
I'm using checkbox to check if the client agrees with the contract. But I would like to have 'No' if it was not checked. The problem is that I don't know how to change the hiddenField value. Ok, I know that I can treat it before saving changing 0 for 'No', but I would like to avoid this code and

Debugging SQLs

2011-02-18 Thread Djonatan Buss
HI everyone, I'm just starting with cake and that's my first post in this forum. I have been having the help of a friend that works with a cake but I couldn't find the right way to see the SQL generated by cake. In order to learn it better and understand how it makes SQL and why theres some troubl