Tuesday, June 13, 2017

Talend Data Migration Tool

Start from Creating a Project see screen below Create job now From the component choose Databases and MysqlThen Drag tMysqlInput and Drop in job design area.Click on it and enter mysql connection in Component section and write query for the data which you want to dump into target database.Then Drag tMysqlOutput and Drop in job design area.Click on it and enter mysql connection in Component...
Read More »

Thursday, May 25, 2017

Basic layout of Dompdf

<html> <head>   <style>   @page { margin: 50px; } .header, .footer {     width: 100%;     position: fixed; } .header {     top: -50px;     height:50px; } .footer {     bottom: -50px;     height:50px; } .pagenum:before {     content: counter(page); }   </style>   </head> <body> <div class="header">     <div...
Read More »

Wednesday, May 24, 2017

Cakephp and Dompdf

Here we go Download dompdf library https://github.com/dompdf/dompdf/releases/tag/v0.6.1 Extract zip file and rename dompdf and keep dompdf folder in app/vendor directory open app/config/routes.php and place following line in it Router::parseExtensions('pdf'); Now create pdf directory in app/view/layouts then create default.ctp file in app/view/layouts/pdf/ and paste following code in it <?php require_once(APP...
Read More »

Tuesday, April 11, 2017

Upload file from ckeditor in cakephp

To upload file from ckeditor you just have to use following four step and that's done. Include Ckeditor library file <?php echo $this->Html->script('/js/ckeditor/ckeditor');?> Textarea with class ckeditor <?php echo $this->Form->textarea('StaticPage.page_content',array('class'=>'ckeditor'));?> <script type="text/javascript">     CKEDITOR.replace( 'data[StaticPage][page_content]',  ...
Read More »

Monday, January 18, 2016

How to install Symfony

1) run following command php -r "file_put_contents('symfony', file_get_contents('https://symfony.com/installer'));" 2) run following command symfony new my_project 2.8 3) see picture below 4) Run on web In php ini open this extension extension=php_intl.dll Note: if you not installed Php accelerator, please install by following steps to show you PHP configuration...
Read More »

Tuesday, January 5, 2016

Cakephp validate

we can do validation with Model in cakephp by  array variable  i.e  $validate. here you can see working validation example which you have to write in model public $validate = array(             'username' => array(                 'notBlank' => array(                     'rule' => array('notBlank'),            ...
Read More »

Saturday, October 17, 2015

Sorting multidimensional array

//Input $files = Array ( [0] => Array ( [filename] => 1.mp4 [modified] => 0.00 ) [1] => Array ( [filename] => video2 [modified] => 1.00 ) [2] => Array ( [filename] => video1 [modified] => 2.00 ) ) usort($files, array('UsersController','date_compare')); $files is your multidimensional array UsersController is your class...
Read More »