SHOW TABLES
SELECT file_id
FROM jos_jdownloads_files
WHERE published = 1
AND use_timeframe = 1
AND publish_to != '0000-00-00 00:00:00'
AND publish_to <= '2024-10-15 10:51:10'
SELECT file_id
FROM jos_jdownloads_files
WHERE published = 0
AND use_timeframe = 1
AND publish_from != '0000-00-00 00:00:00'
AND publish_from <= '2024-10-15 10:51:10'
SELECT m.*, c.`option` AS component
FROM jos_menu AS m
LEFT JOIN jos_components AS c
ON m.componentid = c.id
WHERE m.published = 1
ORDER BY m.sublevel, m.parent, m.ordering
SHOW TABLES
SELECT template
FROM jos_templates_menu
WHERE client_id = 0
AND (menuid = 0 OR menuid = 113)
ORDER BY menuid DESC
LIMIT 0, 1
SELECT c.*, CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(':', c.id, c.alias) ELSE c.id END AS slug
FROM jos_phocagallery_categories AS c
WHERE c.id = 1
LIMIT 0, 1
SELECT *
FROM jos_phocagallery_categories AS c
WHERE c.id = 0
AND c.published = 1
SELECT *
FROM jos_phocagallery_categories
WHERE id = 0
AND published = 1
AND approved = 1
AND id <> 1
ORDER BY ordering ASC
LIMIT 0, 1
SELECT c.*, a.filename, a.extm, a.exts, a.extw, a.exth
FROM jos_phocagallery_categories AS c
LEFT JOIN jos_phocagallery AS a
ON c.id = a.catid
WHERE c.parent_id = 1
AND c.published = 1
AND c.approved = 1
AND c.id <> 1
GROUP BY c.id
ORDER BY c.ordering ASC
SELECT a.*
FROM jos_phocagallery AS a
LEFT JOIN jos_phocagallery_img_votes_statistics AS r
ON r.imgid = a.id
WHERE a.catid = 1
AND published = 1
AND approved = 1
ORDER BY a.ordering ASC
LIMIT 0, 20
SELECT a.*
FROM jos_phocagallery AS a
LEFT JOIN jos_phocagallery_img_votes_statistics AS r
ON r.imgid = a.id
WHERE a.catid = 1
AND published = 1
AND approved = 1
ORDER BY a.ordering ASC
UPDATE jos_phocagallery_categories
SET hits = ( hits + 1 )
WHERE id='1'
SELECT id, title, module, POSITION, content, showtitle, control, params
FROM jos_modules AS m
LEFT JOIN jos_modules_menu AS mm
ON mm.moduleid = m.id
WHERE m.published = 1
AND m.access <= 0
AND m.client_id = 0
AND ( mm.menuid = 113 OR mm.menuid = 0 )
ORDER BY POSITION, ordering
SELECT jf_content.reference_field, jf_content.VALUE, jf_content.reference_id, jf_content.original_value
FROM jos_jf_content AS jf_content
WHERE jf_content.language_id=1
AND jf_content.published=1
AND jf_content.reference_id IN(35,29,43,1,90,69,89,27)
AND jf_content.reference_table='modules'
SELECT id
FROM jos_menu
WHERE link LIKE 'index.php?option=com_comprofiler&task=registers%'
AND published = 1
AND access IN (0)
SELECT DISTINCT
c.id AS ID,
c.SECTION AS SID,
c.title AS name
FROM
jos_categories AS c
LEFT JOIN
jos_content AS content
ON
c.id = content.catid
WHERE
( c.id = 1 )
AND
c.published = 1
AND
c.access <= 0;
SELECT DISTINCT
cats.title AS cat,
users.name AS author,
users.email AS author_email,
cats.SECTION AS SID,
content.title AS title,
content.introtext AS text,
content.created AS DATE,
content.publish_up AS date_publish,
content.images AS images,
content.id AS IID,
content.hits AS hits,
content_rating.rating_sum AS rating_sum,
content_rating.rating_count AS rating_count,
CASE WHEN CHAR_LENGTH(content.alias)
THEN CONCAT_WS(":", content.id, content.alias)
ELSE content.id END AS ID,
CASE WHEN CHAR_LENGTH(cats.alias)
THEN CONCAT_WS(":", cats.id, cats.alias)
ELSE cats.id END AS CID
FROM
jos_content AS content
LEFT JOIN
jos_categories AS categories
ON categories.id = content.catid
LEFT JOIN
jos_sections AS sections
ON sections.id = content.sectionid
LEFT JOIN
jos_users AS users
ON users.id = content.created_by
LEFT JOIN
jos_content_frontpage AS frontpage
ON content.id = frontpage.content_id
LEFT JOIN
jos_categories AS cats
ON content.catid = cats.id
LEFT JOIN
jos_content_rating AS content_rating
ON content_rating.content_id = content.id
WHERE
content.state = 1
AND categories.access <= 0
AND content.access <= 0
AND categories.published = 1
AND ( content.publish_up = '0000-00-00 00:00:00' OR content.publish_up <= '2024-10-15 08:51:11' )
AND ( content.publish_down = '0000-00-00 00:00:00' OR content.publish_down >= '2024-10-15 08:51:11' )
AND ( content.catid = 1 )
AND frontpage.content_id IS NULL
ORDER BY
content.created DESC
LIMIT
0,4;
SELECT jf_content.reference_field, jf_content.VALUE, jf_content.reference_id, jf_content.original_value
FROM jos_jf_content AS jf_content
WHERE jf_content.language_id=1
AND jf_content.published=1
AND jf_content.reference_id IN(107,106,101,100)
AND jf_content.reference_table='content'
SELECT guest, usertype, client_id
FROM jos_session
WHERE client_id = 0
SELECT DISTINCT
c.id AS ID,
c.SECTION AS SID,
c.title AS name,
m.id AS MID
FROM
jos_categories AS c
LEFT JOIN
jos_menu AS m
ON
c.id = m.componentid
LEFT JOIN
jos_content AS content
ON
c.id = content.catid
WHERE
( c.id = 1 )
AND
c.published = 1
AND
c.access <= 0;
SELECT DISTINCT
cats.title AS cat,
users.username AS author,
cats.SECTION AS SID,
content.title AS title,
content.introtext AS text,
content.created AS DATE,
content.publish_up AS date_publish,
content.images AS images,
content.id AS IID,
CASE WHEN CHAR_LENGTH(content.alias)
THEN CONCAT_WS(":", content.id, content.alias)
ELSE content.id END AS ID,
CASE WHEN CHAR_LENGTH(cats.alias)
THEN CONCAT_WS(":", cats.id, cats.alias)
ELSE cats.id END AS CID
FROM
jos_content AS content
LEFT JOIN
jos_categories AS categories
ON categories.id = content.catid
LEFT JOIN
jos_sections AS sections
ON sections.id = content.sectionid
LEFT JOIN
jos_menu AS menu
ON menu.componentid = content.id
LEFT JOIN
jos_users AS users
ON users.id = content.created_by
LEFT JOIN
jos_content_frontpage AS frontpage
ON content.id = frontpage.content_id
LEFT JOIN
jos_categories AS cats
ON content.catid = cats.id
WHERE
content.state = 1
AND categories.access <= 0
AND content.access <= 0
AND categories.published = 1
AND ( content.publish_up = '0000-00-00 00:00:00'
OR content.publish_up <= '2024-10-15 08:51:11' )
AND ( content.publish_down = '0000-00-00 00:00:00'
OR content.publish_down >= '2024-10-15 08:51:11' )
AND ( content.catid = 1 )
ORDER BY
content.created DESC
LIMIT
0,10;
SELECT jf_content.reference_field, jf_content.VALUE, jf_content.reference_id, jf_content.original_value
FROM jos_jf_content AS jf_content
WHERE jf_content.language_id=1
AND jf_content.published=1
AND jf_content.reference_id IN(107,106,101,100,99,98,96,97)
AND jf_content.reference_table='content'
SHOW TABLES