Joomla:export_content problem-title alias
Apr 4th
When I transfer all my joomla 1.0’s content to 1.5,I found that the title alias was not transfered.I use the sh404SEF component to rewrite my site URL using the title alias as the SEF URL,so this is a big problem!
But fortunately,I find the way so solve this problem.
In PhpMyAdmin:
1,chose the jos_content table,copy it structure and data to jos_content_bak.
2,rename alias to alias2.
3,add 1 field named alias after the id field.
4, execute:
UPDATE (jos_content LEFT JOIN jos_content_bak ON jos_content.`id` = jos_content_bak.`id`)
SET jos_content.`alias`= jos_content_bak.`title_alias`
5,what’s more?that’s all!
OpenSEF配置和使用
Sep 8th
1:GoogleSitemap扩展的一个小问题
默认的生成XML文件的位置是:/components/com_sef/google_opensef.xml
而robots.txt有这么一条:
Disallow: /components/
所以说这个设计比较不人性化,而可喜的是在设置里面是可以修改XML文件位置的。
Edit Configuration--Google Sitemap-Sitemap location: 下面一行留空,然后把/components/com_sef/google_opensef.xml这个文件移动到根目录下面重新生成就OK了,不然的话它会提示你XML文件不存在的。 Read the rest of this entry »