I've seen many people struggle with this line below the comments of Cutenews:
Warning: Division by zero in /home/.foster/seikatsu0/seikatsu.yumedeity.net/blog/cutenews/inc/
functions.inc.php on line 469. I bet you're wondering how in the world do I fix it? Many people have this problem and I have the solution for it.
First, open up the
function.inc.php in your cutenews directory in the folder that has
inc named for it, then you want to find the line that says:
if($i%$break_location == 0 and $break_location)
Have you found it yet? It should be on line 469. After you've found that script, replace
only that line shown above with this:
if($break_location and $i%$break_location == 0)
Wow, that was easy, wasn't it? Save the function.inc.php file and then refresh you comments area and it
should be gone. I think this "Division by zero" is something that's happening global. One simple line of code can change everything!