- Beiträge: 1
- Dank erhalten: 0
problem with MarvikShop on Jommla 2,5.8
- Paul Weaver
- Autor
- Offline
- Neues Mitglied
Weniger
Mehr
11 Jahre 11 Monate her #486
von Paul Weaver
problem with MarvikShop on Jommla 2,5.8 wurde erstellt von Paul Weaver
I am using PHP Version 5.3.17 and Joomla! 2.5.8 Stable [ Ember ] 8-November-2012 14:00 GMT
Can anyone tell me what is going wrong please, I keep getting this displaying on the front end and on config screens on the backend, don\'t know how to fix it?
Any extremely simple instructions on how to fix this would be very welcome.
Thanks.
Paul
....................................
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 395
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Can anyone tell me what is going wrong please, I keep getting this displaying on the front end and on config screens on the backend, don\'t know how to fix it?
Any extremely simple instructions on how to fix this would be very welcome.
Thanks.
Paul
....................................
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 395
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Deprecated: Function split() is deprecated in /home/tagnotpo/public_html/shop/components/com_oscommerce/includes/functions/html_output.php on line 397
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
11 Jahre 10 Monate her - 11 Jahre 10 Monate her #487
von Simpel
Simpel antwortete auf Re: problem with MarvikShop on Jommla 2,5.8
It\'s quite easy to solve. It has got to do with PHP 5.3.17
open the file and change these lines 393-400 into:
==============
if ($action_par != \\\'\\\') {
$action_params = array();
$action_params = explode(\\\'&\\\',$action_par);
foreach ($action_params AS $this_par) {
list($key, $value) = explode(\\\'\\',$this_par);
$form .= tep_draw_hidden_field( $key, $value );
};
}
===============
The split functions changed into explode
open the file and change these lines 393-400 into:
==============
if ($action_par != \\\'\\\') {
$action_params = array();
$action_params = explode(\\\'&\\\',$action_par);
foreach ($action_params AS $this_par) {
list($key, $value) = explode(\\\'\\',$this_par);
$form .= tep_draw_hidden_field( $key, $value );
};
}
===============
The split functions changed into explode
Letzte Änderung: 11 Jahre 10 Monate her von Simpel.
Bitte Anmelden oder Registrieren um der Konversation beizutreten.