#6113: Acl->allow fails on MSSQL
------------------------------------------+---------------------------------
Reporter: c_schmitz | Type: Bug
Status: new | Priority: High
Milestone: 1.2.x.x | Component: General
Version: 1.2 Final | Severity: Major
Keywords: mssql ARO allow c_schmitz | Php_version: PHP 5
Cake_version: |
------------------------------------------+---------------------------------
Using CakePHP version: cake_1.2.1 build 8004
The following code is executed in my application using a MSSQL
database.[[BR]]
The exact same code works like a charm with MySQL!
{{{
$user_id=3;
$survey_id=1;
$this->Acl->allow('User::'.$user_id, 'sBasic::'.$survey_id);
}}}
Both ARO and ACO exist, of course.
Executing the command above leads to the following SQL on MSSQL
{{{
Query: INSERT INTO [aros_acos] ([_create], [_read], [_update], [_delete],
[created], [modified], [aco_id], [aro_id]) VALUES ('1', '1', '1', '1',
'1', '1', 11, 11)
}}}
...which is obviously wrong since '1' is not a valid value for the date
fields [modified] or [created] field.
Unfortunately I am not very good with CakePHP inner workings so I cannot
provide a fix, but this bug is a blocker since it renders the complete ACL
useless on MSSQL.
Please help![[BR]]
[[BR]]
Thank you very much for this otherwise great product!
--
Ticket URL: <https://trac.cakephp.org/ticket/6113>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC.
Our primary goal is to provide a structured framework that enables PHP users at
all levels to rapidly develop robust web applications, without any loss to
flexibility.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"tickets cakephp" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tickets-cakephp?hl=en
-~----------~----~----~----~------~----~------~--~---