vote up 0 vote down star

in all my views i have a login/register (cake)form.

my question: can i use the file cache engine with <cake:nocache>form</ cake:nocache>

1.) open url "www.domain.com/home"
2.) cachefile generated
3.) look perfect
4.) refresh (f5)
5.) error (when debug=1):

Parse error: parse error in C:\xampp\htdocs\cake_1.2.3.8166\app\tmp\cache\view \cake_1_2_3_8166_home.php on line 752

cachefile -> line 752 -> </html>

cakephp: 1.2.3.8166
example:

<cake:nocache>
<?
$user = $session->read("user");
if(!$user){ //$user true or false
    echo "login:";
    echo $form->create('AdminUser', array('action' =>'login_load'));
    echo $form->input('email',array('label'=>false));
    echo $form->input('password',array('label'=>false));
    echo $form->submit('Login', array('id'=>'login'));
    echo $form->end();
}else{
    echo "hello user!";
}?>
</cake:nocache>
flag
I don't completely understand what you're asking. Please provide additional detail about what you'd like Cake to do that it isn't doing. – inkedmn Nov 3 at 14:52
update: description – hansi meier Nov 3 at 16:15
That sounds like you're missing a closing tag or statement terminator somewhere in your file. – inkedmn Nov 3 at 16:18
cakephp build the wrong code when i use formhelper inside 'nocache' – hansi meier Nov 3 at 16:22
That seems to be a bug. The best course of action would be to make a test case and report it. – Marko Nov 3 at 16:50
show 1 more comment

3 Answers

vote up 0 vote down

this was my mistake:
Parse error: parse error in C:\xampp\htdocs\cake_1.2.3.8166\app\tmp\cache\view \cake_1_2_3_8166_home.php on line 752 cachefile -> line 752 -> </html>
reason:

<cake:nocache>
    <?
       if($user){
         $user = $session->read("user");
     ?>
</cake:nocache>
   <? echo "test";?>    
<?}?>

correct: ( cache not close the if{} )

<cake:nocache>
<?
    if($user){
       $user = $session->read("user");
       echo "test";
    }
?>
</cake:nocache>

but the central question still undissolved:
can i use the file cache engine with

<cake:nocache>form</cake:nocache>
link|flag
vote up 0 vote down

it's a cakephp bug. cake google groups

link|flag
vote up 0 vote down

The dev state at https://trac.cakephp.org/ticket/6034 CakePHP does not support using the form helper from within tags at this time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.