Glad you got it working Martin! Let me know if it pops up again. Hopefully we will get this upgrade process all settled soon--thought to be honest, I already have a couple big ideas for BoltWire 5!!! :)
Cheers, Dan On Sun, Mar 23, 2014 at 1:24 PM, mz <[email protected]> wrote: > Deleted all, re-installed everything in a different folder and somehow it > works out of the box (standard urls). > Sorry for bothering you. > > Greetings, Martin > > Am Donnerstag, 20. März 2014 14:27:49 UTC+1 schrieb Dan: >> >> You can fix the first couple errors by rewriting the last section of the >> stamps command to this: >> >> if ($expire != '' || $max != '') { >> $time = time() - ($expire * 86400); >> $pages = BOLTlistpages(NULL, 'stamp'); >> if (is_array($pages)) { >> $pages = array_reverse($pages); >> foreach ($pages as $p) { >> if ($expire > 0 && substr($page, -10) < $time) unlink("stamp/$p"); >> $base = substr($page, 0, -11); >> $count[$base] = $count[$base] + 1; >> if ($max > 0 && $count[$base] > $max) unlink("stamp/$p"); >> } >> } >> } >> } >> >> Similarly, the offending line in the redirect command in the library >> script could be rewritten to this: >> >> if (is_array($BOLTformKeys)) $keys = implode(',', $BOLTformKeys); // >> current forms needed on next page >> >> >> But all these do is remove the error messages when there are no stamp >> pages, or no forms on a page (they will be fixed anyway, of course). >> Normally with error reporting turned off these are ignored and the header >> errors are just there because the error messages get output. :) I'm pretty >> sure there's nothing here to help with your forms processing problem. >> >> Maybe you can you send me a link offlist I can look at, and maybe >> editor/admin access, or even temp ftp access just to see if I can figure >> out what's going on. I would really like to replicate your issue and get it >> taken care of for you. >> >> Couple questions: >> >> What form did you submit? And what did you mean by "Form commands will >> be executed. A reload delivers the form before executed." Are you saying >> the form is being submitted but none of the commands are being executed? Or >> that some of the commands are not being executed? >> >> Sorry for all the trouble you are having. Everything is working great on >> my end!!! >> >> Cheers, >> Dan >> >> P.S. I still think it is in the skin or the css, maybe you can show me >> those as well... >> >> >> >> On Thu, Mar 20, 2014 at 2:41 AM, mz <[email protected]> wrote: >> >>> This comes back after sending a form (vanilla installation, nothing >>> customized, no cleanURLs, no htaccess, permissions checked) >>> >>> Warning: array_reverse() [function.array-reverse]: The argument should >>> be an array in /www/htdocs/w006b090/mysite/boltwire/scripts/commands.php >>> on line 270 >>> >>> Warning: Invalid argument supplied for foreach() in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/commands.php on line 271 >>> >>> Warning: implode() [function.implode]: Invalid arguments passed in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/library.php on line 1332 >>> >>> Warning: Cannot modify header information - headers already sent by >>> (output started at /www/htdocs/w006b090/mysite/ >>> boltwire/scripts/commands.php:270) in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/library.php >>> on line 1041 >>> >>> Warning: Cannot modify header information - headers already sent by >>> (output started at /www/htdocs/w006b090/mysite/ >>> boltwire/scripts/commands.php:270) in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/library.php >>> on line 1042 >>> >>> Warning: Cannot modify header information - headers already sent by >>> (output started at /www/htdocs/w006b090/mysite/ >>> boltwire/scripts/commands.php:270) in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/library.php >>> on line 1044 >>> >>> Warning: Cannot modify header information - headers already sent by >>> (output started at /www/htdocs/w006b090/mysite/ >>> boltwire/scripts/commands.php:270) in >>> /www/htdocs/w006b090/mysite/boltwire/scripts/library.php >>> on line 1048 >>> >>> Form commands will be executed. A reload delivers the form before >>> executed. >>> >>> Greetings, Martin >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "BoltWire" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To post to this group, send email to [email protected]. >>> >>> Visit this group at http://groups.google.com/group/boltwire. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- > You received this message because you are subscribed to the Google Groups > "BoltWire" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/boltwire. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/boltwire. For more options, visit https://groups.google.com/d/optout.
