Issue Information
-
#000026
-
Issue
Issue Confirmations
-
Yes (4)No (0)
PHP error debug Error: Function split() is deprecated Error type/ Nr.: - 8192 File: /home/devkwit1/public_html/jayewardenecentre.org/index.php Line: 557 Line 557 source: $tempSnippetParams = split($splitter, $tempSnippetParams); Parser timing MySQL: 0.0074 s s (4 Requests) PHP: 0.0109 s s Total: 0.0184 s s
change line 557 :
$tempSnippetParams = split($splitter, $tempSnippetParams);
to
$tempSnippetParams = explode($splitter, $tempSnippetParams);
Split has been replaced by explode,
it need to be replaced to work in PHP 5.3.0.
$tempSnippetParams = split($splitter, $tempSnippetParams);
to
$tempSnippetParams = explode($splitter, $tempSnippetParams);
Split has been replaced by explode,
it need to be replaced to work in PHP 5.3.0.
change line 557 :
$tempSnippetParams = split($splitter, $tempSnippetParams);
to
$tempSnippetParams = explode($splitter, $tempSnippetParams);
Split has been replaced by explode,
it need to be replaced to work in PHP 5.3.0.
$tempSnippetParams = split($splitter, $tempSnippetParams);
to
$tempSnippetParams = explode($splitter, $tempSnippetParams);
Split has been replaced by explode,
it need to be replaced to work in PHP 5.3.0.
$tempSnippetParams = explode($splitter, $tempSnippetParams);
This works, thanks!
Hello,
Hopefully someone can explain how I can deal with the following two issues.
1) When I try to view my site I get the following error page:
Error: Function split() is deprecated Error type/ Nr.: - 8192 File: /home/friendso/public_html/index.php Line: 555 Line 555 source: $tempSnippetParams = split($splitter, $tempSnippetParams)
2) When I try to access etomite CMS I get this message:
Deprecated: Assigning the return value of new by reference is deprecated in /home/friendso/public_html/manager/includes/browsercheck.inc.php on line 19
What I'm struggling with the most is how I can make any adjustments to my site to make it work when I am unable to access the CMS...
Any help is greatly appreciated!
Hopefully someone can explain how I can deal with the following two issues.
1) When I try to view my site I get the following error page:
Error: Function split() is deprecated Error type/ Nr.: - 8192 File: /home/friendso/public_html/index.php Line: 555 Line 555 source: $tempSnippetParams = split($splitter, $tempSnippetParams)
2) When I try to access etomite CMS I get this message:
Deprecated: Assigning the return value of new by reference is deprecated in /home/friendso/public_html/manager/includes/browsercheck.inc.php on line 19
What I'm struggling with the most is how I can make any adjustments to my site to make it work when I am unable to access the CMS...
Any help is greatly appreciated!
0 user(s) are reading this issue
0 members, 0 guests, 0 anonymous users











