Howdy,
I'm moving a development site to a new dedicated server at GoDaddy. After moving the site pages in the content module no longer work. When I access the default page in Content I get redirected again and again to the same page when I load the page. From my logs..
my.ip.add.ress - - [03/Jan/2007:08:14:50 -0700] "GET /modules/content/ HTTP/1.1" 302 13800 "-"
my.ip.add.ress - - [03/Jan/2007:08:14:52 -0700] "GET /modules/content/?id=1 HTTP/1.1" 302 14464 "-"
my.ip.add.ress - - [03/Jan/2007:08:14:52 -0700] "GET /modules/content/?id=1 HTTP/1.1" 302 14474 "-"
my.ip.add.ress - - [03/Jan/2007:08:14:53 -0700] "GET /modules/content/?id=1 HTTP/1.1" 302 14476 "-"
The continual redirects happen maybe 30 times before the browser times out. I've un-installed and re-installed the Content module and still have the same problem. I see the working site is making many more sql queries that the non-working site does when I click to Edit/Delete content.
Here is the sql queries on the failing site.
SELECT * FROM xoops_config WHERE (conf_modid = '0' AND conf_catid = '1') ORDER BY conf_order ASC
SELECT sess_data FROM xoops_session WHERE sess_id = 'e5kmhucqaik2t1ge2dkoroq050'
SELECT * FROM xoops_users WHERE uid=1
SELECT * FROM xoops_modules WHERE dirname = 'content'
SELECT * FROM xoops_config WHERE (conf_modid = '52') ORDER BY conf_order ASC
SELECT * FROM xoops_group_permission WHERE (gperm_name = 'module_admin' AND gperm_modid = '1' AND (gperm_groupid = '1' OR gperm_groupid = '2'))
Total: 6 queries
Here is the working site queries.
SELECT * FROM xoops_config WHERE (conf_modid = '0' AND conf_catid = '1') ORDER BY conf_order ASC
SELECT sess_data FROM xoops_session WHERE sess_id = '82a159515c31503f642de7ecf3b090fd'
SELECT * FROM xoops_users WHERE uid=1
SELECT * FROM xoops_modules WHERE dirname = 'content'
SELECT * FROM xoops_config WHERE (conf_modid = '52') ORDER BY conf_order ASC
SELECT * FROM xoops_group_permission WHERE (gperm_name = 'module_admin' AND gperm_modid = '1' AND (gperm_groupid = '1' OR gperm_groupid = '2'))
select storyid, parent_id, title from xoops_content where parent_id = 0 order by blockid, storyid
select count(*) as count from xoops_content where parent_id = '3'
select count(*) as count from xoops_content where parent_id = '1'
select storyid, parent_id, title from xoops_content where parent_id = 1 order by blockid, storyid
select count(*) as count from xoops_content where parent_id = '2'
SELECT child.visible, child.submenu, child.nocomments, child.homepage, child.storyid, child.blockid, child.title, child.visible, child.parent_id, child.address,CASE parent.parent_id WHEN 0 THEN parent.blockid ELSE child.blockid END 'menu_block', CASE child.parent_id WHEN 0 THEN child.storyid ELSE child.parent_id END 'menu_id'FROM xoops_content child LEFT JOIN xoops_content parent ON child.parent_id = parent.storyid ORDER BY menu_block, menu_id, parent_id, blockid
Total: 12 queries
Is there some setting for php that XOOPS may require that GoDaddy has off?
TIA for any idea, BA