[eluser]Bramme[/eluser]
[quote author="xwero" date="1224521045"]you have to put the print_r function after the run method is called.[/quote]
Doesn't make a difference in my app: when the page is new, I just get an empty array, when I submit it, the array gets filled with rules and so. Which is the way the library works:
Code:
// No reason to set rules if we have no POST data
if (count($_POST) == 0)
{
return;
}
However, this only happens when I set the array with the set_rules function. When I use the config file group it fails. I wanted to enable debug logging, but my shite shared host crashes when I enable logging.
I really should develop on my localhost, but I can't seem to get mod_rewrite to work.