SOLVED - Simple Plugin causes White Page - Joomla! Forum - community, help and support
hi,
i've developed simple system plugin without funtionality. in me local test environment, there no problems.
later, i've tried install plugin on live server http://www.usvk.net, on activation of plugin, admin site displays empty page. in frontend empty page displayed.
i had disable plugin phpmyadmin.
i turned on error_reporting configuration.php, turned on error reporting in index.php on first line, nothing displayed.
i've no idea....
here comes code, mase.php:
and mase.xml:
thanks
mario
i've developed simple system plugin without funtionality. in me local test environment, there no problems.
later, i've tried install plugin on live server http://www.usvk.net, on activation of plugin, admin site displays empty page. in frontend empty page displayed.
i had disable plugin phpmyadmin.
i turned on error_reporting configuration.php, turned on error reporting in index.php on first line, nothing displayed.
i've no idea....
here comes code, mase.php:
code: select all
<?php
// no direct access
defined('_jexec') or die('restricted access');
class plgsystemmase extends jplugin {
}
and mase.xml:
code: select all
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="system">
<name>plg_system_mase</name>
<description>mase system plugin</description>
<files>
<filename plugin="mase">mase.php</filename>
<filename>index.html</filename>
</files>
</extension>
thanks
mario
i've found problem. mase.php file encoded "utf-8" instead of "utf-8 without bom".
br
mario
br
mario
Comments
Post a Comment