Hi, I tried to install the module but I get the following:
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /var/www/vhosts/vdu.it/subdomains/ebvip/httpdocs/modules/last_node/last_node.module on line 33
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /var/www/vhosts/vdu.it/subdomains/ebvip/httpdocs/modules/last_node/last_node.module on line 50
However, I don't get to access to my php.ini file, so is there any way to sort this out in another way (maybe using htaccess?)
Thanks a lot!
Comments
Comment #1
TheCrow commentedChange this line (n. 33):
_last_node_blocknode($op,'2',&$blocks);with this:
_last_node_blocknode($op,'2',$blocks);and this line (n.50):
$block['subject'] = _last_node_blocknode($op,$delta,&$block);with this:
$block['subject'] = _last_node_blocknode($op,$delta,$block);Comment #2
slombardi commentedThanks!!!
now it works.
Just what I needed.
D.
Comment #3
TheCrow commentedTnx for your notice i update them at next version
Comment #4
TheCrow commentedComment #5
(not verified) commentedComment #6
pandian123 commentedhi. i learner for PHP . i writing a Coding for some Problem with conditions applied their.
i send error coding. plz help me anyone.
Error: Deprecated: Call-time pass-by-reference has been deprecated in C:\wamp\www\ws2300_php\ws2300.php on line 22.
Comment #7
TheCrow commentedbecause you wrote:
read_safe($address, &$data, $bytes)instead of:
read_safe($address, $data, $bytes)(look how the ampersand vanish in the good version)