Advanced RokStories Styling
- Category: Joomla
- Hits: 17753
RokStories has been overhauled to provide the spectacular display that you see on this demo. The module adapts depending on your image size, so no need to manually create rounded corners on your images, RokStories will do the rest.The custom features are also available in the standalone version.
RocketTheme's Affinity July 2009 Released
- Category: Joomla
- Hits: 17088
Affinity is the July 2009 release from RocketTheme and features extensive third party support for powerful and popular community products, such as JomSocial, K2 and phpBB3.
The template's core feature is Sortable Elements, which allows for the movement of modular rows, individual positions and stacks of modules
Docman - Uploaded a document and can't see it
- Category: Joomla
- Hits: 11981
As with all Joomla articles and files, you need to check that they have been published and approved. Sometimes you don't have to and it's all automatic, but if they're not showing:
- Check that they're in the right section and category
- Check that they have been approved and published
This is a screenshot of two uploaded documents:

Copy a Wordpress Site for Development
- Category: Wordpress
- Hits: 19960
- Wordpress CMS v4.1.1
What?
A note to myself on how to create a development/test version of a production/live Wordpress CMS site.
Why?
I have a website sitting at a domain (eg. www.myexample.com), and I want to create an exact copy at a subdomain entitled "dev1" (eg. dev1.myexample.com).
How?
A quick copy from copy 1 (LIVE) to copy 2 (DEV):
Migrate Joomla Users to WordPress
- Category: Wordpress
- Hits: 25824
Note that this article is for Joomla 1.5.x sites to be converted to Wordpress 3.2.x sites. I started with a Joomla 1.5 as the move from Joomla 1.6 or greater is a lot easier since it uses nested categories like Wordpress.
There are lots of commercial migrators out there and they all seem to have this problem. I'm really keen not to ask all my users to have to change their passwords but that is what the commercial applications are doing.
Importing Joomla articles to WordPress posts
- Category: Wordpress
- Hits: 27173
- Change database name my_joomla_db to your joomla database and my_wordpress_db to your Wordpress database
- Change http://demo.joellipman.com/wordpress/ to the full URL of your WordPress site.
- If post_type is to be post then append with ?p= otherwise use ?page_id=.
------ MIGRATING JOOMLA v1.5.# CONTENT TO WORDPRESS v3.2.# ------
-----------------------------------------------------------------
INSERT INTO my_wordpress_db.wp_posts
SELECT
id 'ID',
1 'post_author',
created 'post_date',
created 'post_date_gmt',
CONCAT(introtext, ' ', `fulltext`) 'post_content',
title 'post_title',
'' post_excerpt,
CASE state WHEN '1' THEN 'publish' ELSE 'draft' END 'post_status',
'open' comment_status,
'open' ping_status,
'' post_password,
alias 'post_name',
'' to_ping,
'' pinged,
modified 'post_modified',
modified 'post_modified_gmt',
'' post_content_filtered,
'0' post_parent,
CONCAT('http://demo.joellipman.com/wordpress/', '?p=', id) AS guid,
'0' menu_order,
'post' AS 'post_type',
'' post_mime_type,
0 comment_count
FROM
my_joomla_db.jos_content
ORDER BY
id
MediaWiki: MySQL to extract path to images
- Category: MediaWiki
- Hits: 20380
In not as many words as others, here's my MySQL query to extract details on images stored in the MediaWiki CMS system (v1.14).
Why?
Prior to a migration and just after another change freeze, I had sent all Wiki articles modified since the last export but then needed to send all images that had also been either added/modified since.
How?
Using MySQL, the following query lists the image name, size, user who uploaded, timestamp and the path. Remember that the paths are determined using the MD5 Hash of the filename:
List MediaWiki Articles
- Category: MediaWiki
- Hits: 19667
Page ID, Title, Content, Category, AccessLevel (note that AccessLevel is extra to your standard MediaWiki setup and one that was customized for my day job).
Thought I already had this somewhere on my site, so it took a while again but I've posted my finished query here:
The base query to list mediawiki articles
Page ID, Title, Content, Category
SELECT p.page_id AS PageID, CONVERT(p.page_title USING latin1) AS PageTitle, CONVERT(t.old_text USING latin1) AS PageContent, (SELECT GROUP_CONCAT(CONVERT(wikimedia_categorylinks.cl_to USING latin1)) FROM wikimedia_categorylinks WHERE wikimedia_categorylinks.cl_from=p.page_id) AS PageCategory FROM wikimedia_page p LEFT JOIN wikimedia_revision r ON p.page_latest=r.rev_id LEFT JOIN wikimedia_text t ON r.rev_text_id=t.old_id WHERE p.page_namespace=0 AND t.old_text='' AND p.page_is_redirect=0

