Re: Help Installing CakePHP 3

2015-06-14 Thread McBuck DGAF
After your initial Xampp install, you should be able to go to the standard phpinfo screen (I think xampp serves one up at http://localhost/xampp/phpinfo.php). The location of the current php.ini file in use by the system will be listed there under the title "Loaded configuration file" (for ex

Re: "Companies using CakePHP"

2015-06-14 Thread mark_story
It should be possible to get that setup. There isn't a form, but you can email me at this address and I can do my best to remember to take care of it -Mark On Sunday, 31 May 2015 13:39:56 UTC-4, Pgbi wrote: > > Hello there, > > I've launched not long ago a new website using cakephp 3. I was jus

Help Installing CakePHP 3

2015-06-14 Thread Daniel Travelstead
Hi all, I have just recently gotten into PHP and want to install CakePHP 3 through Xampp. There's many tutorials on how to do so, but for whatever reason non of them work. I keep getting the problem when running through Terminal: cakephp/cakephp 3.0.x-dev requires ext-intl * -> the requested

Unit Testing issue

2015-06-14 Thread Bhashit Pandya
Hello, I am new to CakePhp and have 2.6.7 version setup. I am interested to test progressbar as illustrated in 2.x documentation. I am unable to get where to place ProgressHelper.php but I tried placing in *C:\xampp\htdocs\Cake\Core\app\Test\Case\View\Helper\ProgressHelper.php* Now when I

CakePHP 3.0.7 Released

2015-06-14 Thread mark_story
The CakePHP core team is happy to announce the immediate availability of CakePHP 3.0.7. 3.0.7 is a maintenance release for the 3.0 release series. Bug Fixes in 3.0.7 -- * Time validation rules now accept 12:15pm. * Table names with .'s to access tables in other databases in MySQL, no

CakePHP 2.7.0-RC released

2015-06-14 Thread mark_story
The CakePHP core team is happy to announce the immediate availability of CakePHP 2.7.0-RC. 2.7.0 will be the next API compatible release for the 2.x release series. 2.7.0 should be a drop in replacement for your existing 2.5 or 2.6 libraries. In 2.7 the following new features are available. D

Re: Is there a working Localized plugin for CakePHP 3.0?

2015-06-14 Thread Paulo Terra
Thank you Anthony! You saved my Sunday! It worked! now I understand the meaning of provider and namespace. Thank you very much again. I hope I can help you in the future too. best regards, Paulo 2015-06-14 17:03 GMT-03:00 Anthony GRASSIOT : > Paulo, this is what I'm doing with french phone num

Re: Is there a working Localized plugin for CakePHP 3.0?

2015-06-14 Thread Anthony GRASSIOT
Paulo, this is what I'm doing with french phone number. I've cut the example to the minimum : file src/Model/Validation/ provider('french', 'App\Model\Validation\FrValidationRule'); $validator ->add('phone', 'phone', [ 'rule' => 'phone', 'provider' => 'frenc

Re: Is there a working Localized plugin for CakePHP 3.0?

2015-06-14 Thread Paulo Terra
Hi Anthony, I am still trying to make the validation rule but it is not working. It says "Method personId does not exist". I created a folder: /src/Model/Validation inside I have 3 files: *BrValidation.phpLocalizedValidation.phpValidationInterface.php* *In BrValidation.php:* http://cakeph