Re: Auth component deleting Session data for no reason.

2013-01-08 Thread Pedro Fortes Gallego
Hello cricket, its solved and fixed all above. Could you add me to gmail-chat? fortesgall...@gmail.com. Thanks you. El domingo, 6 de enero de 2013 23:32:35 UTC+1, cricket escribió: On Sat, Jan 5, 2013 at 3:08 PM, Pedro Fortes Gallego fortes...@gmail.com javascript: wrote: Is there any

Re: Save Uploaded/Parsed File to Database Table

2013-01-08 Thread Karl Smith
I am trying to move an uploaded file and Im having trouble with my file path. I want to move the uploaded file into Webroot/Spreadsheet. This is how I am currently doing it $filePath = WWW_ROOT . DS . 'spreadsheet/'.$this-data['Coverage']['Spreadsheet']; I also get this error message.

Re: Save Uploaded/Parsed File to Database Table

2013-01-08 Thread Jeremy Burns | Class Outfit
The $data array does not have a Coverage key. Jeremy Burns Class Outfit http://www.classoutfit.com On 8 Jan 2013, at 16:11:48, Karl Smith barnun...@hotmail.com wrote: I am trying to move an uploaded file and Im having trouble with my file path. I want to move the uploaded file into

Re: Save Uploaded/Parsed File to Database Table

2013-01-08 Thread lowpass
You haven't set up your form correctly. http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html On Tue, Jan 8, 2013 at 11:11 AM, Karl Smith barnun...@hotmail.com wrote: I am trying to move an uploaded file and Im having trouble with my file path. I want to move the uploaded file into

Problem with MS SQL Server (created and modified fields)

2013-01-08 Thread carlos . marcosr
Hi, i'm new at cakephp, and i've a problem with MSSQL and created/modified fields I did the blog example in mysql without problems. Now, i try to do the same in mssql server and it doesn't work properly. I created the table: CREATE TABLE [enqDocencia].[posts]( [id] [int] IDENTITY(1,1)

Which Component / Plugin is best to use for stripe.com

2013-01-08 Thread Salar Rahmanian
Hi All, I am developing a web app using CakePHP 2.2.4. Need to take payments using Stripe.com have come across these two plugins/components: https://github.com/jeremyharris/stripe https://github.com/chronon/CakePHP-StripeComponent-Plugin Any recommendation on which one is better to use in

Cake 2.0 - How to Specify a Primary Key

2013-01-08 Thread Brian QIS
Hello, We're coming from a custom CMS, and our MySQL database naming convention is a bit different. So, if I have a table called users with a primary key of users_id, how do I set my model to look for users.users_id as the record ID rather than users.id? Thanks! -- Like Us on FaceBook

jquery validation helper not working in 2.2.4

2013-01-08 Thread vanessa v
I'm trying to use the jquery validation helper in my registration form but looks like it is still validating server-side. I have the following code added in my default.ctp echo $this-Html-script('jquery.validate.min'); echo $this-Html-script('additional-methods.js'); echo

created and modified fields with microsoft sql server

2013-01-08 Thread carlos . marcosr
Hi, i'm new at cakephp, and i've a problem with MSSQL and created/modified fields I did the blog example in mysql without problems. Now, i try to do the same in mssql server and it doesn't work properly. I created the table: CREATE TABLE [enqDocencia].[posts]( [id] [int] IDENTITY(1,1)

Re: Cake 2.0 - How to Specify a Primary Key

2013-01-08 Thread Andras Kende
http://book.cakephp.org/2.0/en/models/model-attributes.html#primarykey app/Models/User.php : class User extends AppModel { public $primaryKey = 'users_id'; } Andras Kende http://www.kende.com On Jan 8, 2013, at 1:52 PM, Brian QIS bhan...@quasars.com wrote: Hello, We're coming

CakePHP 2.3.0-RC2 and 2.2.5 released

2013-01-08 Thread mark_story
The CakePHP core team is proud to announce the immediate availability of CakePHP 2.3.0-RC2 and 2.2.5[1]. There have been a few small improvementsand fixes since the release of 2.3.0-RC1. If there are no serious issues reported 2.3.0 stable should be released within a few weeks. ## Changes

Re: created and modified fields with microsoft sql server

2013-01-08 Thread OJ Tibi - @ojtibi
Can you kindly paste your CakePHP code that does the insert? :) On Tuesday, January 8, 2013 11:51:15 PM UTC+8, carlos@gmail.com wrote: Hi, i'm new at cakephp, and i've a problem with MSSQL and created/modified fields I did the blog example in mysql without problems. Now, i try to do