Tagged Questions
0
votes
0answers
20 views
Issue with validation when model has three belongsTo associations with another model
Some validation messages are missing on my form, though they are correct in the result of invalidMessages(). If I enter the last name for the ATCSTudent.lastName, then I don't get a validation message ...
0
votes
3answers
26 views
cakePHP show a validation error beside a label element in a view
Hello I have the following model :
class Mymodel extends AppModel {
public $validate = array(
'username' => array(
'required' => array(
'rule' => ...
0
votes
0answers
59 views
CakePHP - Custom validation for linked model only in certain parent models
I have a generic Image model that is linked to by other models that need to have images attached. In most places the image is not required and we have fallbacks in case there is no image uploaded, ...
0
votes
0answers
88 views
Example of form validation cakephp
anybody please give an example of validation form in cakephp, because i have cakephp 2.3.3 and cant' validate forms, doesnt recognize my model Usuario
model usuario
public function ...
1
vote
0answers
76 views
CakePHP: Validation message not showing but $this->validationErrors works
I have a field gentel_id with the following validation rules in my model Contrat:
public $validate = array(
'gentel_id' => array(
'numeric' => array(
'rule' => ...
0
votes
2answers
116 views
CakePHP - Password confirmation not allowing user to submit registration
I'm trying to set up validation for user registration but I'm having troubles. When I only have the email,role and password fields in the $validation array (remove the others) it works and will save a ...
0
votes
1answer
57 views
Cake PHP validation, change incoming $data
I got a problem with my cake validation.
The user enters e.g. "20€" in a form field and I only want to get the number "20" with stripped out Euro-sign. But the validation methods only allow checking ...
0
votes
4answers
114 views
how to return the form validation back in cakePHP
i need to return the form validation because i lost it after submitting
i'm on News/view/30 ---view a report details----
in that page we have add comment Form :
<h2>Add ...
0
votes
1answer
67 views
Cakephp Validate uniqueness of name field w.r.t other field of same table
I am a kind of noob in cakephp and While working with this validation rule`, I were unlucky to get the satisfactory response.
In my project, I have to valiidate the name w.r.t foreign key and many ...
0
votes
1answer
17 views
Regex in Cake model validation
I need to validate social security number in the format XXXXXX-XXXX (each X represents a number; 6 digits followed by hyphen followed by 4 digits)
Here is what I am using for validation.
'rule' ...
1
vote
3answers
201 views
preg_match() expects parameter 2 to be string, object given error in CakePHP
I am trying to send an email with CakeEmail and it is failing on $email->to() method. The error messages can be seen on this image: http://i47.tinypic.com/240yq86.png
Basically, I am getting this ...
0
votes
0answers
21 views
Generating a error on multiple form helper fields
I'm writing a cakephp 2.2 app and have a fairly big form built using the form helper.
Basically if the value of a select field is '6' I want 2 other fields to be mandatory and if there not use form ...
0
votes
1answer
80 views
Showing validation errors for specific input field
I have a form set up with a file upload for profile pictures, and I'm validating the file upload like so:
'picture' => array(
'kosher' => array(
'rule' => 'validateImage',
...
2
votes
1answer
245 views
CakePHP 2.3.1 deactivate form validation in certain views
The Cookbook introduces for version 2.3 the possibility to deactivate the forced valiadation for forms. Or at least I understood it like that:
Quote: from ...
1
vote
1answer
59 views
Combining validation syntax in CakePHP
Say I have a fairly typical, by-the-docs validation array and I want to keep those rules and add a specific validation rule for 8+ other fields.
Original $validate:
var $validate = array(
...
1
vote
1answer
118 views
Validating URL-Parameter by using Model-Rules CakePHP
i just write my first article so please tell me if i've done something wrong!
My Problem: I want to validate data given by url.
...
0
votes
2answers
74 views
cakephp validation message not showing
i am new to cakephp and am trying to build an app in it. I have some textfields, i wish to have validation on them. I following cakephp tutorials in cakephp.org and did the following but i cant see ...
0
votes
0answers
34 views
Validate form fields in controller with a hasMany relation
I'm having some issues with validating form fields inside my controller, for testing purposes.
I have my model Experience with hasMany ExperienceDetail. ExperienceDetail belongsTo Experience.
I ...
0
votes
2answers
58 views
cakephp validate translated field
I have a model ex. posts that acts as translate and I want to validate the title which is a translated field.
How is this possible. The below does not work.
'title' => array(
'notempty' => ...
0
votes
1answer
162 views
Vallidation errors with saveAll in CakePHP
I have a list of User records that I'm saving at one time (the form is populated from an uploaded CSV).
Everything seems to be working fine, and my validation rules are being honoured, but one thing ...
0
votes
2answers
84 views
cakephp notempty and unique validation on field
I am working with cakephp. I need to add three validation on email field. First validation if email not given, second for valid email address, third if email address is given then it should be unique. ...
0
votes
1answer
34 views
validate email cake 1.2 without a model
I'm trying to find a way to validate an email address using CakePHP 1.2 without a model. Can this be done? If so, how can I validate an email address with CakePHP 1.2 without a model?
Thanks!
0
votes
1answer
88 views
CakePHP - Validation with save no messages
Working on my first CakePHP 'project'. Im having problems getting CakePHP (2.3) to show validation messages correctly on submit when i add $this->request->is('post'). If i remove it i get the ...
4
votes
2answers
126 views
CakePHP requires two page loads to validate form
I'm writing a page where my users can change their account email and password. Here's the controller action and the view:
# UsersController.php
public function edit() {
...
0
votes
1answer
152 views
cakephp not validating select field
I just downloaded a fresh copy of cakephp version 2.3.0 and I am trying to validate a select field of a form that I have just created:
echo $this->Form->input('province_id', array('empty' => ...
-1
votes
2answers
58 views
CakePHP not checking form validation
I'm writing a contact form and want to add some simple validation routines. The action for this page looks like this:
public function contact() {
$this->loadModel('Contact');
...
1
vote
2answers
113 views
How to make CakePHP validation more secure?
Recently I finished tutorial about create simple blog using CakePHP - here is link: http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/part-two.html
Creating validation form is very easy and ...
0
votes
0answers
83 views
cakephp saveassociated validation not working for all models
i faced a problem that CakePHP does not validate both models when using saveAssociated. This code validates only Poll model validation rules, but PollOptions model validation does not work. What i'm ...
0
votes
3answers
554 views
Cakephp data validation “notEmpty” “required”
I'm a newbie too cake,done the blog tutorial and now I'm trying something simple to start.
But I got something I can't understand.
On model PersonalInformation I got the data validation for the table ...
3
votes
1answer
102 views
How do I validate multiple fields from a single location in CakePHP?
I wanna validate multiple fields at one place. So in a form I have included 4 fields
as follows
facebook_link
twitter_link
google_plus_link
linked_in_link
The user atleast type any one field of ...
0
votes
1answer
146 views
cakephp url validation
One of my models has a 'url' field. I am using the default url validation rule on it. When trying to add a specific url it is not validated.
The url causing validation to fail is ...
1
vote
1answer
61 views
Required rule nesting in CakePHP
I'm going trough the CakePHP tutorial, and I'm at the beginning of the Simple Autorization app. There is the following code, relative to the model for the users table:
public $validate = array(
...
1
vote
1answer
105 views
CakePHP bypassing validation rules
I have a Post model which has the following validation rules:
public $validate = array(
'title' => array(
'between' => array(
'rule' => array('between', 1, 60),
...
0
votes
1answer
278 views
CakePHP not showing form validation messages
I am trying to build my first CakePHP application and I am having some trouble with the form validation not showing when I try to add to the database. On submitting the form I get the flash message ...
-1
votes
1answer
67 views
CakePHP: validation( ) fails
My validation fails, so my test for this message throws an ValidationException every time.
"Not all fields are filled out correct". Why? Analoguosly, it works for users (another method).
MODEL:
...
1
vote
1answer
177 views
Cakephp validation rule fires on update, even with on=>'create' specified
I need a Cakephp 2.2 expert to help me here.
I want to make an update, with the following '$this->data':
array(
'Button' => array(
(int) 0 => array(
'id' => '1',
...
0
votes
1answer
52 views
Should I only add validation criteria to user input in CakePHP?
When baking models in CakePHP, should I add validation criteria only to the data which are user input? Or to everything? Or to some specific data? The database consists mostly of things which will be ...
1
vote
1answer
126 views
Default value for a model validate rule
I have a question regarding default values for model fields, this problem has been driving me crazy for a while.
To give you an example, I have a model with a status field that must be validated:
...
0
votes
1answer
99 views
CakePHP - Custom validation function & messages for multiple conditions
I have created a custom validation function in my model. I know each rule (and subsequently my validation function) can return one error message as is defined in the $validation array. But my function ...
0
votes
1answer
92 views
form validation failed on edit in cakephp2
'employees_firstname' => array(
'rule' => 'alphaNumeric',
'required' => true,
'allowEmpty' => false,
'on' => '',
'message' => 'This field is required'
)
This is ...
0
votes
0answers
47 views
CakePHP rule comparison with not required
I try use CakePHP validation rule 'comparison > 1' in Model for select box, but I would like use only when select box it is in form. I use 'required => false', but doesn't work.
-2
votes
2answers
45 views
Validating using the Model before Querying DB
I can do this to search the Table for emails.
// controller method
public function forgot_password() {
if ($this->Session->read('Auth.User')) {
$this->redirect(array('action' ...
0
votes
1answer
153 views
cakephp savemany validation
i have array with valid and not valid values , i want to save valid values with saveMany method , but if this method validate all value in array its work and save my data Otherwise its not working ! ...
0
votes
0answers
174 views
CakePHP file upload validation error using Miles Uploader on update
Using CakePHP, I added Miles Uploader plugin to upload file. The upload is done in the model, with the $actsAs property :
<?php
class Company extends AppModel {
public $actsAs = array(
...
0
votes
1answer
67 views
CakePHP Negated RegEx not working
I am trying to enforce the first name of my model to be any character but numbers, but so far it's not working as expected. When I try this:
public $validate = array(
'first_name' => array(
...
1
vote
1answer
392 views
CakePHP validation not working for contact form
I am trying to do some very simple validation in my CakePHP contact form, but validation does not work eventhough I think I did everything necessary. Here's what I did:
I made a model like this:
...
1
vote
4answers
1k views
CakePHP: Error message not showing Validate Fields
I am new to CakePHP. I have two problem with the view.
There is line break between text field name and text field area. I have tried to pass 'div' => false but that didn't work. How can I remove ...
0
votes
1answer
220 views
CakePHP Validation::naturalNumber() not working
Good morning (at least in Arizona).
I am running a simple validation check on a Model. Nothing fancy.
$this->loadModel('Something');
$data = array(
'foo_id' => '1',
'bar' => 'John'
...
0
votes
0answers
226 views
cakephp v2.2 custom validation method isn't being called
I'm trying to use a custom validation method in cakephp 2.2.2 but for some reason the function isn't being called. Custom validation methods worked on the same system when I used cakephp for another ...
0
votes
1answer
75 views
What is wrong with my php/cakephp syntax?
Although I'm doing this in cakephp, i believe I have a terrible php-syntax-newbie-mistake in my code, but I can't decipher the correct way.
The mistake is in the line:
'logo' => $validateArray
...



