Hello
I now have an alert message on a few sites: "A fatal error has occurred. Enable Debug Mode".
I haven't changed anything (no error locally for the same site in php 7.4). So while waiting for a more in-depth search, how can this alert no longer appear? Thanks.
Disable display a fatal error has occurred...
Re: Disable display a fatal error has occurred...
Have you activated the debug mode?
Gruß Olaf, Plugins for CMSimple_XH
Ich habe schon lange den Verdacht, dass so viele so eifrig auf Gender, Trans und Queer machen:
Weil sie für das Fachliche ganz einfach zu doof sind.
Ich habe schon lange den Verdacht, dass so viele so eifrig auf Gender, Trans und Queer machen:
Weil sie für das Fachliche ganz einfach zu doof sind.
Re: Disable display a fatal error has occurred...
I had touched something, not on the sites, but the version of the server, PHP from 7.4 to 8.2. In 8.2, a problem is then present and fixed with the error messages displayed (debug mode).
I had in the template <?php echo onepage_toplink(TOP); ?>
The error disappears with (without the TOP) <?php echo onepage_toplink(); ?>
I don't know why, I added this top, non-existent in the original template (op-goaway).
I had in the template <?php echo onepage_toplink(TOP); ?>
The error disappears with (without the TOP) <?php echo onepage_toplink(); ?>
I don't know why, I added this top, non-existent in the original template (op-goaway).
Re: Disable display a fatal error has occurred...
That should be
Code: Select all
<?php echo onepage_toplink('TOP');?>
Christoph M. Becker – Plugins for CMSimple_XH
Re: Disable display a fatal error has occurred...
Yes, that's fine, TOP enclosed in single quotes.
Thanks.
Thanks.