skip to Main Content

UnlockField not working in CakePHP for array

I have a form that has to handle some elements as part of an array. echo $this->Form->control('config.sys_file_id', ['type' => 'number']); echo $this->Form->control('click_enlarge', ['type' => 'checkbox']); echo $this->Form->control('config.max_width', ['type' => 'number']); echo $this->Form->control('config.max_height', ['type' => 'number']); echo $this->Form->control('config.fixed_width', ['type' => 'number']);…

VIEW QUESTION

Redirect Https to http in cakephp htacess – Apache

I want to remove forceful https,and redirect https:// to http:// My .htaccess in the webroot folder is as follows: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> I have…

VIEW QUESTION
Back To Top
Search