- Details
- Written by: Stanko Milosev
- Category: Joomla
- Hits: 4680
If you are receiving message like:
PHP Strict Standards: Declaration of ContentModelCategories::populateState() should be compatible with JModel::populateState() in \components\com_content\models\categories.php on line 19
Then in you PHP ini should be:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
and restart your iis
- Details
- Written by: Stanko Milosev
- Category: Extensions
- Hits: 4891
Finally I've found how to put xml or html tags in the CodeHighlighter. Post has to be escaped,
So convert ">" into ">", "<" into "<" and so on...
I have found also good online tool with which this is much easier to achieve:
http://www.freeformatter.com/xml-escape.html#ad-output
If I am writing Joomla! article without any text editor and if I want to show ";gt;", then I should write it like "&gt;" :)
- Details
- Written by: Stanko Milosev
- Category: Extensions
- Hits: 5188
Just downloaded and installed it from here. You have to enabled it from plugins, and also, enable language which you want to use (Delphi is not enabled by default).
Example:
<pre class="brush:LanguageAlias"> put your magic code here </pre>
- Details
- Written by: Stanko Milosev
- Category: Extensions
- Hits: 9447
If you areĂÂ receiving error like this:
Call to undefined method JException::setQuery()
Check connection to your database (if it is different then Joomla!).
If everything is ok, then try something like it is described here.