Cakephp 2.2 with php 5.4

2012-07-24 Thread #2Will
Iv'e had to reinstall MAMP and the new version has php5.2.17 or 5.4.  I'm 
working on an app that uses cake2.2  the site dosn't work at all.   All 
urls get a generic 404 error.  (not the cake one) 

I don't get any errors in cakes logs or php logs, just a "not found or 
unable to stat" in apache logs. 

Is this to be expected? Is cake2.2 not compatible with php5.4, or am i 
doing something silly?

If i switch mamp back to 5.2.17 my various dev sites work well, but this 
one throws php5.3 related errors. 

thanks for any pointers, 

will

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Can I / should I create multiple models for same single table?

2012-07-24 Thread Dr. Tarique Sani
You can create another model with the same table

Start here http://book.cakephp.org/2.0/en/models/model-attributes.html

HTH
Tarique

On Wed, Jul 25, 2012 at 7:38 AM, Kevin Mitchell  wrote:
> Hi ... and thank you so much for your time and expertise:
>
> I've made a lot of progress learning CakePHP, but I cannot find in the
> documentation what I should do when I want another, second model based upong
> the same database table.
>
> I have a single table, called topics. I've created one version of "Topics"
> model in one app that uses the standard approach and a second version of
> "Topics" model, in a second, separate app, that uses public $actsAs =
> array('Tree'); to create a TreeBehavior model. In each case I've called the
> model Topics, using the naming convention that matches the model to the
> table name.
>
> But what if I sometimes want to use the first version of the model and
> sometimes the second version of the model -- both in the same app? I tried
> naming the TreeBehavior version of the model "Tree" and then using public
> $useTable = 'Topic'; -- but I couldn't get things to work.
>
> I'm just wondering what, probably basic, concept I'm missing.
>
> Again, thank you!
>
> Kevin
>
> --
> 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...@googlegroups.com For more options, visit this group at
> http://groups.google.com/group/cake-php



-- 
=
PHP for E-Biz: http://sanisoft.com
=

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Can I / should I create multiple models for same single table?

2012-07-24 Thread Dr. Tarique Sani
You can create another model with the same table

Start here http://book.cakephp.org/2.0/en/models/model-attributes.html

HTH
Tarique

On Wed, Jul 25, 2012 at 7:38 AM, Kevin Mitchell  wrote:
> Hi ... and thank you so much for your time and expertise:
>
> I've made a lot of progress learning CakePHP, but I cannot find in the
> documentation what I should do when I want another, second model based upong
> the same database table.
>
> I have a single table, called topics. I've created one version of "Topics"
> model in one app that uses the standard approach and a second version of
> "Topics" model, in a second, separate app, that uses public $actsAs =
> array('Tree'); to create a TreeBehavior model. In each case I've called the
> model Topics, using the naming convention that matches the model to the
> table name.
>
> But what if I sometimes want to use the first version of the model and
> sometimes the second version of the model -- both in the same app? I tried
> naming the TreeBehavior version of the model "Tree" and then using public
> $useTable = 'Topic'; -- but I couldn't get things to work.
>
> I'm just wondering what, probably basic, concept I'm missing.
>
> Again, thank you!
>
> Kevin
>
> --
> 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...@googlegroups.com For more options, visit this group at
> http://groups.google.com/group/cake-php



-- 
=
PHP for E-Biz: http://sanisoft.com
=

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Can I / should I create multiple models for same single table?

2012-07-24 Thread Kevin Mitchell
Hi ... and thank you so much for your time and expertise:

I've made a lot of progress learning CakePHP, but I cannot find in the 
documentation what I should do when I want another, second model based 
upong the same database table.

I have a single table, called topics. I've created one version of "Topics" 
model in one app that uses the standard approach and a second version of 
"Topics" model, in a second, separate app, that uses public $actsAs = 
array('Tree'); to create a TreeBehavior model. In each case I've called the 
model Topics, using the naming convention that matches the model to the 
table name.

But what if I sometimes want to use the first version of the model and 
sometimes the second version of the model -- both in the same app? I tried 
naming the TreeBehavior version of the model "Tree" and then using public 
$useTable = 'Topic'; -- but I couldn't get things to work.

I'm just wondering what, probably basic, concept I'm missing.

Again, thank you!

Kevin

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Error: The requested address was not found on this server.

2012-07-24 Thread Daniel Baird
On Wed, Jul 25, 2012 at 12:36 AM, Luís de Sousa
wrote:

> Dear all,
> [...]

when I access to:
> http://localhost/myApp/User
>
> I get an error saying the User model doesn't exist, which is correct since
> I only copied the view folder. But when I try a similar thing in the legacy
> application:
> http://localhost/legacyApp/User
>
> I get the address not found error.
>


 Have you checked that the paths inside your .htaccess files are correct?
 If you've renamed folders, e.g. "legacyApp" or whatever, then the rewrites
might be borked.

-- 
Daniel Baird
I've tried going to the XHTML  a few times, but it's always closed.

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Error: The requested address was not found on this server.

2012-07-24 Thread Luís de Sousa
Dear all,

Some weeks ago I inherited a CakePHP application that I'm supposed to 
deploy to a server. I went through the CakePHP tutorial and put my hands to 
work. The problem is that I can't pass from the front page 
(app/Pages/home.ctp), any links from there get to a page with the error in 
subject. Trying direct access to routes like /view/action have the same 
result.

I made a simple test that yielded a strange result: there's a model called 
User with its respective controller and view. I copied the view folder to 
another CakePHP app, and when I access to:

http://localhost/myApp/User

I get an error saying the User model doesn't exist, which is correct since 
I only copied the view folder. But when I try a similar thing in the legacy 
application:

http://localhost/legacyApp/User

I get the address not found error.

Reading the messages in this list I tried the following:
. changed the debug level to 1 - no further messages are shown
. deleted the contents of /app/tmp/cache/models/ and 
/app/tmp/cache/persistent/
. verified .htaccess files are present
. verified www-data has permissions to write on .htaccess files

But none of these actions had effect. If anyone as a clue on what else may 
be causing this I'd appreciate to know.

Thank you and regards.

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: pagination not work after change to Nginx

2012-07-24 Thread Phang Mulianto
hello..

anybody can help me..

On Tue, Jul 24, 2012 at 5:13 PM, Phang Mulianto  wrote:

> Hi all,
>
> i have an apps build using cakephp1.1 .
>
> i use the pagination component which come with 1.1
>
> The app run using lighttpd, and its ok.
>
> now i switch to nginx , and the pagination breaks, also the sorting
> facilites.
>
> the error is, the link not point to my webroot adress, example:
>
> http://www.mywebsite.com/product/page/2   <=== using lighttpd
>
> product/page/2   <=== using nginx
>
> so the url is not there, and the application point to no server...  it
> should ok if the link is /product/page/2  , but the link generate for the
> page is product/page/2
>
> any one know how to handle this , coz i need to use nginx.
>
> thanks in advanced
>
> Mulianto
>
>

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


CakeBase | Simple idea to assist CakePHP Developers

2012-07-24 Thread Merianos Nikos
Hello.

My name is Merianos Nikos and I have create a GitHub public application 
named CakeBase and you can find it here : 
https://github.com/merianos/CakeBase

The idea behind that project is to be created a CakePHP Basic application 
containing all the repeated functionality we use from application to 
application.

More specific, most of our applications, require a login system, 
user/groups management, maybe sometimes ACL and I18n. All that 
functionality is reapeated and cost to time. The final product must be a 
CakePHP release, containing all of that functionality, including an 
installer for the database configuration.

Another good proprerty of the application can be a series of themes for the 
administration panel. In that case, the end user will be able to get the 
CakeBase, and just start to code the business logic of  the application 
without any wory for user/group management, controll access and so on.

At the current state, the application just has a copy of the CakePHP with 
no functionality yet installed on it.

Any person can assist that project is very welcome. Also you are free to 
ask me anything about the project or to give ideas for better 
implementation.

Kind regards
Merianos Nikos

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Is CakePHP 2.x support firebird database

2012-07-24 Thread Alexey SnowLeo
At the moment there is no support. There is support only in version 1.3
Connection information is here:
http://ask.cakephp.org/questions/view/how_can_i_connect_cakephp_to_firebird_database
But PDO plugin is not compatible with version 2.x

вторник, 26 июня 2012 г., 18:32:11 UTC+6 пользователь tony написал:
>
> If yes, how to connect to firebird database?

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Connecting to a ReSTful API (Google apps) instead of a database.

2012-07-24 Thread Saran Pal
Hi Andrew,
*
*
*I have impement this thing recently with my application. *


On Mon, Jul 23, 2012 at 11:37 PM, Andrew Lechowicz  wrote:

> Also, I found this on 
> StackOverflow.
> But I'm not sure how I would use it.
>
> --
> 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...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-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 their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


cakephp.org doesn't allow user registration

2012-07-24 Thread josemv
Hello,

probably this is not the best place, but... maybe some cakephp.org manager 
visit us.

I tried to register today to post a big application case showing some 
interesting features of cake and some big fails... everything goes ok, got 
account verification email, but when follow verification link, got this 
message at cakephp.org site:

Not Found

*Error: *The requested address *'/users/users/verify/email/'* was 
not found on this server.
?? replace real verification ID.

Looks like verification process it is not working.

If somebody knows Cake webmaster.

Thanks
Jose

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: saving HABTM data in a fixture - have to resort to Model::query() to get it done

2012-07-24 Thread lsiden
After replying to Ralf, I dropped everything in my 'test' database, and 
went back to the code I had before, " $myModel->save(...)".  Now, I'm 
seeing something else:

   - The page displays a PDOException " SQLSTATE[23000]: Integrity 
   constraint violation: 1062 Duplicate entry '' for key 1 "
   - The error_log displays the MissingActionException.
   
I find it frustrating that:

   - The message for PDOException doesn't tell me what query was run (since 
   it was composed inside Cake's core).
   - The output from MissingActionException shows what action is missing, 
   "Action AppController::webroot() could not be found", but not where the 
   request got generated and sent
   

On Tuesday, July 24, 2012 8:25:33 AM UTC-4, lsiden wrote:
>
> Stuff, more stuff, and stuff to change.  I want to avoid cluttering the 
> post with too much detail that will make people's eyes glaze over.  
>
> What I should do when I have time is clone the database schema, eliminate 
> anything non-relevant, repopulate it with "lorem ipsum" to satisfy my 
> client that I'm not disclosing anything proprietary, and see if I can 
> recreate it.  Then I can post it on Github.
>
> I did find something suspicious that make me think that this is related to 
> fixtures: My test pulls in six fixtures, but when I look at my 'test' 
> database, only one fixture table has been created, the one corresponding to 
> "stuff_to_change".  When I open it's class file, it's the only one that I 
> didn't define "public $records = ...".  
>
> According to http://book.cakephp.org/2.0/en/development/testing.html:
>
> CakePHP performs the following during the course of a fixture based test 
>> case:
>> Creates tables for each of the fixtures needed.
>> Populates tables with data, if data is provided in fixture.
>> Runs test methods.
>> Empties the fixture tables.
>> Removes fixture tables from database.
>
> So it makes me suspicious that a table still remains in the test database 
> after the test runner is finished.
> Every time I run a test, I've been seeing the following stack trace in my 
> error_log:
>
> 2012-07-23 19:37:52 Error: [MissingActionException] Action 
>> AppController::webroot() could not be found.
>> #0 /opt/cakephp_2.0/lib/Cake/Routing/Dispatcher.php(186): 
>> Controller->invokeAction(Object(CakeRequest))
>> #1 /opt/cakephp_2.0/lib/Cake/Routing/Dispatcher.php(161): 
>> Dispatcher->_invoke(Object(AppController), Object(CakeRequest), 
>> Object(CakeResponse))
>> #2 /opt/csw/apache2/share/htdocs/kaos/app/webroot/index.php(93): 
>> Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse))
>> #3 {main}
>
>
> I already created a ticket for this, but kept going because I didn't think 
> it was related.  The page comes up normally after a test is run.  Now I 
> wonder if this exception is hiding some other problem.
>
> On Tuesday, July 24, 2012 2:22:51 AM UTC-4, Ralf Rottmann wrote:
>>
>> What is in the 'Stuff', 'MoreStuff' and 'StuffToChange' arrays?
>>
>> On Tuesday, July 24, 2012 2:05:40 AM UTC+2, lsiden wrote:
>>>
>>> I created a component test that modifies and saves a model with HABTM 
>>> associated data.   
>>>
>>> Before I upgraded to CakePHP 2.0, I tried to accomplish this with 
>>> unbindModel() all over my code, but wanted to try something a little 
>>> cleaner albeit less efficient.  I spent hours reading  
>>> http://book.cakephp.org/2.0/en/models/saving-your-data.html and wanted 
>>> to try doing it the "Cake" way: 
>>>
>>> $data = array(
   'User' => array(
 'id' => 99,
 ...
   ),
   'Stuff' => array( ... some stuff ...),
   'MoreStuff => array( .. more stuff ...),
   'StuffToChange' => array( ... this is the stuff I added a record to 
 ...)
 );
>>>
>>>
>>> When I look at the query log, Cake generated queries to delete Stuff, 
>>> MoreStuff, and ReallyImportantStuff, but only does inserts into 
>>> StuffToChange.
>>>
>>> I'm wondering if this is somehow related to the fact that I'm using 
>>> fixtures in my test.  I suppose I could clone the real database and try it 
>>> on that to see if its a fixture problem.  (I'm too exhausted now to try 
>>> anything.  I need a break!)  
>>>
>>> So in order to make progress I had to give up for now and do it the 
>>> "brute force" (but much more effiicient way):
>>>
>>> $model->query("insert into stuff_to_change where user_id=99 and 
 something_id=xxx")
>>>
>>>
>>> I suppose Cake purists will tell me that this is wrong and could create 
>>> problems in the future if I were to migrate the data to a different 
>>> database platform, for example, but I wasted half a day trying to get this 
>>> to work and I can't afford to spend much more time when I have a 
>>> functioning workaround.  Even if it turns out to be an issue that will only 
>>> happen when I use my fixtures, I want it to work the same way in a unit 
>>> test as it works in the field.
>>>
>>> Anyone else having this problem in Cake 2.x?  (I'm actually in the 
>>> master bra

Re: saving HABTM data in a fixture - have to resort to Model::query() to get it done

2012-07-24 Thread lsiden
Stuff, more stuff, and stuff to change.  I want to avoid cluttering the 
post with too much detail that will make people's eyes glaze over.  

What I should do when I have time is clone the database schema, eliminate 
anything non-relevant, repopulate it with "lorem ipsum" to satisfy my 
client that I'm not disclosing anything proprietary, and see if I can 
recreate it.  Then I can post it on Github.

I did find something suspicious that make me think that this is related to 
fixtures: My test pulls in six fixtures, but when I look at my 'test' 
database, only one fixture table has been created, the one corresponding to 
"stuff_to_change".  When I open it's class file, it's the only one that I 
didn't define "public $records = ...".  

According to http://book.cakephp.org/2.0/en/development/testing.html:

CakePHP performs the following during the course of a fixture based test 
> case:
> Creates tables for each of the fixtures needed.
> Populates tables with data, if data is provided in fixture.
> Runs test methods.
> Empties the fixture tables.
> Removes fixture tables from database.

So it makes me suspicious that a table still remains in the test database 
after the test runner is finished.
Every time I run a test, I've been seeing the following stack trace in my 
error_log:

2012-07-23 19:37:52 Error: [MissingActionException] Action 
> AppController::webroot() could not be found.
> #0 /opt/cakephp_2.0/lib/Cake/Routing/Dispatcher.php(186): 
> Controller->invokeAction(Object(CakeRequest))
> #1 /opt/cakephp_2.0/lib/Cake/Routing/Dispatcher.php(161): 
> Dispatcher->_invoke(Object(AppController), Object(CakeRequest), 
> Object(CakeResponse))
> #2 /opt/csw/apache2/share/htdocs/kaos/app/webroot/index.php(93): 
> Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse))
> #3 {main}


I already created a ticket for this, but kept going because I didn't think 
it was related.  The page comes up normally after a test is run.  Now I 
wonder if this exception is hiding some other problem.

On Tuesday, July 24, 2012 2:22:51 AM UTC-4, Ralf Rottmann wrote:
>
> What is in the 'Stuff', 'MoreStuff' and 'StuffToChange' arrays?
>
> On Tuesday, July 24, 2012 2:05:40 AM UTC+2, lsiden wrote:
>>
>> I created a component test that modifies and saves a model with HABTM 
>> associated data.   
>>
>> Before I upgraded to CakePHP 2.0, I tried to accomplish this with 
>> unbindModel() all over my code, but wanted to try something a little 
>> cleaner albeit less efficient.  I spent hours reading  
>> http://book.cakephp.org/2.0/en/models/saving-your-data.html and wanted 
>> to try doing it the "Cake" way: 
>>
>> $data = array(
>>>   'User' => array(
>>> 'id' => 99,
>>> ...
>>>   ),
>>>   'Stuff' => array( ... some stuff ...),
>>>   'MoreStuff => array( .. more stuff ...),
>>>   'StuffToChange' => array( ... this is the stuff I added a record to 
>>> ...)
>>> );
>>
>>
>> When I look at the query log, Cake generated queries to delete Stuff, 
>> MoreStuff, and ReallyImportantStuff, but only does inserts into 
>> StuffToChange.
>>
>> I'm wondering if this is somehow related to the fact that I'm using 
>> fixtures in my test.  I suppose I could clone the real database and try it 
>> on that to see if its a fixture problem.  (I'm too exhausted now to try 
>> anything.  I need a break!)  
>>
>> So in order to make progress I had to give up for now and do it the 
>> "brute force" (but much more effiicient way):
>>
>> $model->query("insert into stuff_to_change where user_id=99 and 
>>> something_id=xxx")
>>
>>
>> I suppose Cake purists will tell me that this is wrong and could create 
>> problems in the future if I were to migrate the data to a different 
>> database platform, for example, but I wasted half a day trying to get this 
>> to work and I can't afford to spend much more time when I have a 
>> functioning workaround.  Even if it turns out to be an issue that will only 
>> happen when I use my fixtures, I want it to work the same way in a unit 
>> test as it works in the field.
>>
>> Anyone else having this problem in Cake 2.x?  (I'm actually in the master 
>> branch from the Git repo - yeah, I'm bleeding edge now).
>>
>

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


pagination not work after change to Nginx

2012-07-24 Thread Phang Mulianto
Hi all,

i have an apps build using cakephp1.1 .

i use the pagination component which come with 1.1

The app run using lighttpd, and its ok.

now i switch to nginx , and the pagination breaks, also the sorting
facilites.

the error is, the link not point to my webroot adress, example:

http://www.mywebsite.com/product/page/2   <=== using lighttpd

product/page/2   <=== using nginx

so the url is not there, and the application point to no server...  it
should ok if the link is /product/page/2  , but the link generate for the
page is product/page/2

any one know how to handle this , coz i need to use nginx.

thanks in advanced

Mulianto

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: How to connect to Microsoft Access in cakephp 1.3 ?

2012-07-24 Thread Cruisine
Thanks  Tarique for the quick answer.
i've downloaded it already.but dont have an idea where to place it.in the 
direction it's mentioned that the datasource must be place in  " 
app/plugins/datasources " .
does "app" mean our application or "app folder" in cake core? 
moreover,there's no "datasource" folder inside "plugins" folder.
and how to call it in database.php?

Thanks in advance.

On Tuesday, July 24, 2012 1:20:56 PM UTC+7, Dr. Tarique Sani wrote:
>
> You will need to use the ODBC datasource - I don't know if this works 
> with 1.3 
> https://github.com/cakephp/datasources/blob/master/models/datasources/dbo/dbo_odbc.php
>  
>
> HTH 
>
> Tarique 
>
> On Tue, Jul 24, 2012 at 11:46 AM, Cruisine  
> wrote: 
> > hi guys, 
> > 
> > do you happen to know how to connect to M.Access database in cakephp ? 
> > i've been trying to search thread which related to this case but there's 
> no 
> > satisfied answer for this case. 
> > 
> > i need to know the answer very soon. many thanks 
> > 
> > -- 
> > 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...@googlegroups.com For more options, visit this 
> group at 
> > http://groups.google.com/group/cake-php 
>
>
>
> -- 
> = 
> PHP for E-Biz: http://sanisoft.com 
> = 
>

-- 
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...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php