Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: EZ1 on May 15, 2009, 12:20:41 PM

Title: can anyone explain this error I'm getting in my log
Post by: EZ1 on May 15, 2009, 12:20:41 PM
8: Undefined index: hhyaltbolum
BoardIndex.template.php (eval?)
Line: 208 

8: Undefined index: hhyaltbolum 
BoardIndex.template.php (eval?)
Line: 163 

8: Undefined offset: 333
BoardIndex.template.php (eval?)
Line: 175 

8: Undefined offset: 21
BoardIndex.template.php (eval?)
Line: 174 

all i have to do is visit the forums and i get 10 pages of these in the log (any ideas) >??
Powered by SMF 2.0 RC1


Title: Re: can anyone explain this error I'm getting in my log
Post by: SA™ on May 15, 2009, 12:22:13 PM
what mods do you have installed ?

Title: Re: can anyone explain this error I'm getting in my log
Post by: EZ1 on May 15, 2009, 12:40:49 PM
Mod Name Version 

1. Aeva ~ Auto-Embed Video & Audio 6.9.99   [ Uninstall ]   

2. Best 3 0.1  [ Apply Mod ]   

3. Latest Members RC1 1.1   [ Uninstall ]   

4. Welcome Topic Mod 2.0.2  [ Apply Mod ]   

5. SMF Articles 1.0.2   [ Uninstall ]   

6. Contributions in Boards 1.3   [ Uninstall ]   

7. RSS Feeder 1.1.1   [ Uninstall ]   

8. SMF Media Gallery 1.5.6   [ Uninstall ]   

9. Hack's Park Shoutbox 2.0   [ Uninstall ]   

10. Pm Number in All Pages 1.0   [ Uninstall ]   

11. Skype Profile Field 1.1   [ Uninstall ]

12. Do not enter 1.1   [ Uninstall ]

13. Aligned and Bilateral Child Boards 1.4   [ Uninstall ]   

14. SA Affiliates 3.1  [ Apply Mod ]
Title: Re: can anyone explain this error I'm getting in my log
Post by: SA™ on May 16, 2009, 08:15:30 AM
can i8 see your BoardIndex.template.php please
Title: Re: can anyone explain this error I'm getting in my log
Post by: [SiNaN] on May 16, 2009, 09:13:27 AM
It is related to Aligned and Bilateral Child Boards (http://custom.simplemachines.org/mods/index.php?mod=1704) mod.

BoardIndex.template.php
MessageIndex.template.php

Code (Find) Select
$modSettings['hhyaltbolum'] == 0

Code (Replace) Select
empty($modSettings['hhyaltbolum'])

Code (Find) Select
$child['new'] ? $txt[333] : $txt[334]

Code (Replace) Select
$child['new'] ? $txt['new_posts'] : $txt['old_posts']

Code (Find) Select
$txt[330] . ': ' . $child['topics'] . ', ' . $txt[21]

Code (Replace) Select
$txt['topics'] . ': ' . $child['topics'] . ', ' . $txt['posts']
Title: Re: can anyone explain this error I'm getting in my log
Post by: SA™ on May 16, 2009, 09:40:36 AM
oh thanks Blue Dream i wasnt shore tis why i asked for the template
Title: Re: can anyone explain this error I'm getting in my log
Post by: kenet on May 23, 2009, 09:25:44 AM
Quote from: Blue Dream on May 16, 2009, 09:13:27 AM
It is related to Aligned and Bilateral Child Boards (http://custom.simplemachines.org/mods/index.php?mod=1704) mod.

BoardIndex.template.php
MessageIndex.template.php

Code (Find) Select
$modSettings['hhyaltbolum'] == 0

Code (Replace) Select
empty($modSettings['hhyaltbolum'])

Code (Find) Select
$child['new'] ? $txt[333] : $txt[334]

Code (Replace) Select
$child['new'] ? $txt['new_posts'] : $txt['old_posts']

Code (Find) Select
$txt[330] . ': ' . $child['topics'] . ', ' . $txt[21]

Code (Replace) Select
$txt['topics'] . ': ' . $child['topics'] . ', ' . $txt['posts']


I have done what they get up and gives me less errors, but still giving me some SIGE




8: Undefined index: hhyaltbolum
Apply Filter: Only show the errors from this file
File: /homepages/11/d221278972/htdocs/Themes/Mc_Dult21/BoardIndex.template.php (main sub template - eval?)
Line: 201


Apply Filter: Only show the errors with the same message
8: Undefined offset: 334
Apply Filter: Only show the errors from this file
File: /homepages/11/d221278972/htdocs/Themes/Mc_Dult21/BoardIndex.template.php (main sub template - eval?)
Line: 168


Apply Filter: Only show the errors with the same message
8: Undefined index: hhyaltbolum
Apply Filter: Only show the errors from this file
File: /homepages/11/d221278972/htdocs/Themes/Mc_Dult21/BoardIndex.template.php (main sub template - eval?)
Line: 201

thank you very much
Title: Re: can anyone explain this error I'm getting in my log
Post by: [SiNaN] on May 23, 2009, 09:26:41 AM
Would you attach your BoardIndex.template.php file here?
Title: Re: can anyone explain this error I'm getting in my log
Post by: kenet on May 23, 2009, 09:42:10 AM
here you have it, thanks again
Title: Re: can anyone explain this error I'm getting in my log
Post by: [SiNaN] on May 23, 2009, 09:46:22 AM
Try the attached file.

I also suggest that you inform the mod author about the issues.
Title: Re: can anyone explain this error I'm getting in my log
Post by: kenet on May 23, 2009, 09:52:05 AM
   
ok, now report. that whenever you install the RC1 or RC1-1 either the default or another theme gives this error.

trial and tell you what

thanks
Title: Re: can anyone explain this error I'm getting in my log
Post by: kenet on May 23, 2009, 09:56:10 AM
perfect, can you tell me what to edit in case I need. thank you very much again
Title: Re: can anyone explain this error I'm getting in my log
Post by: [SiNaN] on May 23, 2009, 09:58:01 AM
This is what I have done.

Code (Find) Select
$modSettings['hhyaltbolum'] == 1

Code (Replace) Select
!empty($modSettings['hhyaltbolum'])

Code (Find) Select
334

Code (Replace) Select
'old_posts'

Code (Find) Select
333

Code (Replace) Select
'new_posts'

You're welcome.
Title: Re: can anyone explain this error I'm getting in my log
Post by: kenet on May 23, 2009, 10:05:44 AM
ok, I already have my log clean. thanks
Title: Re: can anyone explain this error I'm getting in my log
Post by: JBlaze on July 06, 2009, 08:08:43 PM
Marking this topic solved.