PHP Notice in Responsive Banner Slider
- Posted by capogr (3) Offline
Hi i am getting an error
PHP Notice: Undefined variable: i in .../public_html/modules/mod_responsivebannerslider/tmpl/default.php on line 223,
11 years 11 months ago #1
by capogr
PHP Notice: Undefined variable: i in .../public_html/modules/mod_responsivebannerslider/tmpl/default.php on line 223,
<li <?php $i++; ?>>Please Log in or Create an account to join the conversation.
- Posted by erwinschro (1034) Offline
Hi
is it possible for you to edit that file /modules/mod_responsivebannerslider/tmpl/default.php? if possible then do the following
add declaration $i = 0
just before the foreach so it looks like this
then at line 223 edit it to
let us know the result while we're updating the downloadable file.
11 years 11 months ago #2
by erwinschro
is it possible for you to edit that file /modules/mod_responsivebannerslider/tmpl/default.php? if possible then do the following
add declaration $i = 0
just before the foreach so it looks like this
<?php $i = 0;
foreach() {
?>then at line 223 edit it to
<li><?php $i++; ?>let us know the result while we're updating the downloadable file.
Please Log in or Create an account to join the conversation.
- Posted by capogr (3) Offline
PHP Parse error: syntax error, unexpected ')' in .../public_html/modules/mod_responsivebannerslider/tmpl/default.php on line 1
Sorry my PHP knowledge are limited
11 years 11 months ago #3
by capogr
Sorry my PHP knowledge are limited
Please Log in or Create an account to join the conversation.
- Posted by erwinschro (1034) Offline
Line 1? wew...
can you overwrite the existing file /modules/mod_responsivebannerslider/tmpl/default.php
using this one attached (unzip it first then upload to module folder above )
11 years 11 months ago #4
by erwinschro
can you overwrite the existing file /modules/mod_responsivebannerslider/tmpl/default.php
using this one attached (unzip it first then upload to module folder above )
Please Log in or Create an account to join the conversation.
- Posted by capogr (3) Offline