I’m adding on to a Joomla 1.5 website. When I add a new article and assign it to a section/category, I then add to the main menu. On the frontend, when clicking that link, it only shows the home page content and not the article content. Here is the website and the link is under “About Us” as “Test Form”:
http://rocketship1.thehostingcompany.us/~hyp/
Any ideas what’s going on? Thanks!
Here’s query:
SELECT *
FROM jos_session
WHERE session_id = 't6uabsp4oh7gnvpitgm3rcro27'
DELETE
FROM jos_session
WHERE ( TIME < '1339531072' )
SELECT *
FROM jos_session
WHERE session_id = 't6uabsp4oh7gnvpitgm3rcro27'
UPDATE `jos_session`
SET `time`='1339534672',`userid`='0',`usertype`='',`username`='',`gid`='0',`guest`='1',`client_id`='0',`data`='__default|a:7:{s:15:\"session.counter\";i:55;s:19:\"session.timer.start\";i:1339527526;s:18:\"session.timer.last\";i:1339534666;s:17:\"session.timer.now\";i:1339534667;s:22:\"session.client.browser\";s:106:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:83:\"C:\\BitNami WAMPStack\\apps\\joomla\\htdocs\\HYP\\libraries\\joomla\\html\\parameter\\element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}'
WHERE session_id='t6uabsp4oh7gnvpitgm3rcro27'
SELECT *
FROM jos_components
WHERE parent = 0
SELECT folder AS TYPE, element AS name, params
FROM jos_plugins
WHERE published >= 1
AND access <= 0
ORDER BY ordering
SHOW COLUMNS
FROM jos_content
SELECT template
FROM jos_templates_menu
WHERE client_id = 0
AND (menuid = 0 OR menuid = 117)
ORDER BY menuid DESC
LIMIT 0, 1
SELECT *
FROM `jos_rsform_config`
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 = 117 OR mm.menuid = 0 )
ORDER BY POSITION, ordering
Consolidating all we know into an answer here:
From your menu, this does not work:
index.php?option=com_content&view=article&id=102&Itemid=113
But simply changing the Itemid to a random, but valid one DOES work:
index.php?option=com_content&view=article&id=102&Itemid=50
This indicates to me that data in your jos_menu and/or jos_menu_type tables are suspect because using the random Itemid 50 ignores whatever the settings are that you’ve set up for Menu Itemid 113.
What Component is the menu item – just a standard article? How does RSForms get incorporated into the whole equation I’ve never used rsforms) – using {loadposition xxx}?