- Posts: 6
- Thank you received: 0
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question Warnings and Notics after upgrading to 1.0.10
16 years 9 months ago #16728
by Dahoon
Warnings and Notics after upgrading to 1.0.10 was created by Dahoon
Hi,
I got some warnings and notices after upgrading to Version 1.0.10
PHP Version = 5.1.6 / MySQL Version 5.0.70
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 /xxx/xxx/xxx/xxxxxx.de/httpdocs/components/com_kunena/kunena.php on line 247
Notice: Object of class jbCategory could not be converted to int in /xxx/xxx/xxx/xxxxxx.de/httpdocs/components/com_kunena/lib/kunena.permissions.php on line 73
Maybe someone has the same warnings and notices or someone has a quick solution.
Kind regards
Dahoon
I got some warnings and notices after upgrading to Version 1.0.10
PHP Version = 5.1.6 / MySQL Version 5.0.70
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 /xxx/xxx/xxx/xxxxxx.de/httpdocs/components/com_kunena/kunena.php on line 247
Notice: Object of class jbCategory could not be converted to int in /xxx/xxx/xxx/xxxxxx.de/httpdocs/components/com_kunena/lib/kunena.permissions.php on line 73
Maybe someone has the same warnings and notices or someone has a quick solution.
Kind regards
Dahoon
Please Log in or Create an account to join the conversation.
16 years 9 months ago #16730
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Warnings and Notics after upgrading to 1.0.10
Hello,
I have seen the same errors, but i haven't solutions. I report to the DEVs, thanks for you report.
I have seen the same errors, but i haven't solutions. I report to the DEVs, thanks for you report.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
16 years 9 months ago #16740
by lcascant
Replied by lcascant on topic Re:Warnings and Notics after upgrading to 1.0.10
Hello,
I have more or less the same problem on line 247 and 946.
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 /xxx/xxx/xxxx/xxxxx/httpdocs/components/com_kunena/kunena.php on line 247
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 /xxx/xxx/xxxx/xxxxx/httpdocs/components/com_kunena/kunena.php on line 946
Thank you for your help!
Lorena
I have more or less the same problem on line 247 and 946.
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 /xxx/xxx/xxxx/xxxxx/httpdocs/components/com_kunena/kunena.php on line 247
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 /xxx/xxx/xxxx/xxxxx/httpdocs/components/com_kunena/kunena.php on line 946
Thank you for your help!
Lorena
Please Log in or Create an account to join the conversation.
- RichRawlings
-
- Offline
- New Member
-
Less
More
- Posts: 2
- Thank you received: 0
16 years 9 months ago #16804
by RichRawlings
Replied by RichRawlings on topic Re:Warnings and Notics after upgrading to 1.0.10
Warning: Call-time pass-by-reference has been deprecated in /xxxxx/xxxxx/xxx/xxx/xxx/xxxx/xxxx/il/components/com_kunena/kunena.php on line 247
Warning: Call-time pass-by-reference has been deprecated in /xxxxx/xxxxx/xxx/xxx/xxx/xxxx/xxxx/il/components/com_kunena/kunena.php on line 946
il.usmjparty.org
PHP : 5.2.8
MySQL : 5.0.67.d7-ourdelta-log
Thanks for any help with this!
Warning: Call-time pass-by-reference has been deprecated in /xxxxx/xxxxx/xxx/xxx/xxx/xxxx/xxxx/il/components/com_kunena/kunena.php on line 946
il.usmjparty.org
PHP : 5.2.8
MySQL : 5.0.67.d7-ourdelta-log
Thanks for any help with this!
Please Log in or Create an account to join the conversation.
16 years 9 months ago #16821
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Warnings and Notics after upgrading to 1.0.10
Hello,
I have a way to fix it, in the file components/com_kunena/kunena.php at line 247 replace, but i think this solution work only on Php 5 :
by
and line 1021 :
by
I have a way to fix it, in the file components/com_kunena/kunena.php at line 247 replace, but i think this solution work only on Php 5 :
Code:
$kunenaProfile->trigger('onStart', &$params);
by
Code:
$kunenaProfile->trigger('onStart', $params);
and line 1021 :
Code:
$kunenaProfile->trigger('onEnd', &$params);
by
Code:
$kunenaProfile->trigger('onEnd', $params);
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
16 years 9 months ago #16825
by rawkey
Replied by rawkey on topic Re:Warnings and Notics after upgrading to 1.0.10
Fixed it for me !
Please Log in or Create an account to join the conversation.
Time to create page: 0.278 seconds