Архиви на блога

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource

If you have following error Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at Then you need to add some lines to your .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / Header add Access-Control-Allow-Origin „*“ Header

С етикет: , , , ,
Публикувано в Joomla, linux, wordpress

most userful joomla function to debug database query

// Get a db connection. $db = JFactory::getDbo();   // Create a new query object. $query = $db->getQuery(true);   // Select all articles for users who have a username which starts with ‘a’. // Order it by the created date.

С етикет: , , , , , ,
Публикувано в Joomla

Joomla show page content only

To show only page content from joomla article or component you need to add following to the url &task=display&tmpl=component

С етикет: , ,
Публикувано в Joomla

301 .htaccess redirect

Sometimes we need to redirect old links to new pages, it`s very easy. Redirect 301 /oldpage.php http://newlink/newpages.php

Публикувано в Joomla, linux

strip first words from a string

<?php echo implode(‘ ‘, array_slice(explode(‘ ‘, strip_tags($introtext) ), 0, 30));?> …

С етикет: , , ,
Публикувано в Joomla