Hi all,
I did an upgrade on my Debian web server and stumbled with upgrade of apache2.2 to apache2.4. I had to replace
Most time I spend to find out "<? " is not longer supported from PHP5.6.
I have to replace it with "<?php ". This also affects couchcms: <?php echo COUCH::invoke(); ?>
Find out files with bad PHP start tag:
I hope you can save time...
Cheers,
Florian
I did an upgrade on my Debian web server and stumbled with upgrade of apache2.2 to apache2.4. I had to replace
- Code: Select all
Order allow,deny
Allow from all
- Code: Select all
Require all granted
Most time I spend to find out "<? " is not longer supported from PHP5.6.
I have to replace it with "<?php ". This also affects couchcms: <?php echo COUCH::invoke(); ?>
Find out files with bad PHP start tag:
- Code: Select all
grep -rin "<? " *.php
I hope you can save time...
Cheers,
Florian