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.075 seconds

I jumped and started to work on a demo component... but 2 days later this demo component became the real component. I just showed today the end result to my customer and he turned to me and said... "this is more than I expected"... All of this is because Cook did cut about 70% of my work and provided me more ways to improve the usability of the component. The end result was 17 tables all related between than to generate a full dashboard for the travel agents. Thanks for Cook developers for such great tool. This component would not be possible to be done at short time with all the features in it
Griiettner (Forum)  

Get Started