Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC:

compatibility with php5.5 03 Apr 2015 14:58 #12905

  • LJ01
  • LJ01's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
  • Posts: 78
  • Thank you received: 2
Hi
i update my website with php5.5, but my component have a problem

Fatal error: Call-time pass-by-reference has been removed in /home/batenerg/www/components/com_batenergie/controllers/statbat.php on line 102
function save()
    {        // Check for request forgeries
        JRequest::checkToken() or jexit( 'Invalid Token' );

        $model = $this->getModel('batenergiepartitem');
        $item = $model->getItem();

        if ($model->getId() == 0)
        {    //New item

            if (!$this->can('core.create', JText::_("BATENERGIE_JTOOLBAR_SAVE")))
                return;
        }
        else
        {    //Existing item
            if (!$this->can(array('core.edit', 'core.edit.own'), JText::_("BATENERGIE_JTOOLBAR_SAVE")))
                return;

            //Check Item ACL
            if (!$this->can('access-edit', JText::_("BATENERGIE_JTOOLBAR_SAVE"), $item->params))
                return;
        }
        $post    = JRequest::get('post');
        $post['id'] = $model->getId();

        //UPLOAD FILE : Image
[color=#ff0000][b]102[/b][/color]
if (!$this->_upload('image', &$post, array(
            'image/bmp' => 'bmp',
            'image/gif' => 'gif',
            'image/jpeg' => 'jpg,jpeg',
            'image/png' => 'png'), 
            array('maxSize' => 512000,
            )))
        return;    

        $post['description'] = JRequest::getVar('description', '', 'post', 'string', JREQUEST_ALLOWRAW);
        $post['travaux'] = JRequest::getVar('travaux', '', 'post', 'string', JREQUEST_ALLOWRAW);

        if ($cid = parent::_save($post))
        {
            $vars = array();
            $layout = JRequest::getVar( 'layout');
            switch($layout)
            {
                case 'batenergiepartitem':
                    JRequest::setVar( 'view'  , 'batenergiepart');
                    JRequest::setVar( 'layout', 'default' );
                    JRequest::setVar( 'cid', null );
                    break;


                default:
                    JRequest::setVar( 'view'  , 'batenergiepart');
                    JRequest::setVar( 'layout', 'default' );
                    JRequest::setVar( 'cid', null );
                    break;
            }

            $this->setRedirect(BatenergieHelper::urlRequest($vars));
        }
        else
            //Keep the post and stay on page
            parent::display();

    }
an idea please LJ
Ce sont les fils qui font les cordes
ingall-niger.org

Please Log in or Create an account to join the conversation.

Last edit: by LJ01.
  • Page:
  • 1
Time to create page: 0.072 seconds

Although I found this tool some time ago I just started learning experimenting and building this first component on Monday and now on Thursday afternoon it's already online. Although I already had a working version done with another tool this is much easier to build and at the end you have the freedom to own your own component. Once you know how to use Cook you will boost your productivity as the learning curve is really moderate compared to many other tools.
Giori (Forum)

Get Started