HOME TIPS FORUMS DOWNLOADS
   »»  Tips Archive |
Tricks/Tools : ShortURLs - Fix of Invalid URL Issue
Posted by tl001 on 2005/11/1 15:00:42 (5432 reads)
Tricks/Tools

One of issues with ShortURLs or SimplifiedURLs is that the URL tends to be transformed by some web programs due to the use of "+". You may find that some web sites have your URL transformed

m-news+article+storyid-123.html
becomes
m-news%20article%20storyid-123.html

If someone were to click on the transformed URL, she/he would end up the front page of your site. And most importantly, you could potentially have the notorious 302 redirect problem with search engines.

To fix the problem, you may want to add one line into loadpage.php file

$request = $_SERVER['REQUEST_URI'];
$request = str_replace("%20", "+", $request);


highlighted is the new line added.

The downside of the fix - it may create duplicate content problems.

4 comments
Modules : How to Properly Upgrade Protector Module
Posted by tl001 on 2005/9/8 22:01:43 (3305 reads)
Modules

Don't let the word "upgrade" mislead you. To properly install the Protector module, you will need to do a full uninstall and install.

Read More... | Comments?
Webmaster : Xoops Site SEO TIPs
Posted by tl001 on 2005/8/14 13:53:56 (14467 reads)
Webmaster

As search engine (SE) engineers constantly battling spammers and their techniques, Search Engine Optimization (SEO), nowadays is more about how to avoid being penalized than how to “optimize” your web site. You must pay attention to a few things; otherwise, you might become a unwilling victim in SE's war against spammers. With this in mind, we would like to summary various TIPS you could do or should not do in three categories: MUST, RECOMMENDED, AVOID

Read More... | 11 comments
Tricks/Tools : Hack to Speed Out Xoops Site - by GIJOE
Posted by tl001 on 2005/8/11 16:16:11 (3515 reads)
Tricks/Tools

If you have not heard or tried the hack by GIJOE, be sure to check it out.


http://www.peak.ne.jp/xoops/md/news/article.php?storyid=66

1 comment
Modules : News Module - Potential Duplicate Content Problem
Posted by tl001 on 2005/7/31 22:51:02 (5325 reads)
Modules

If you have set Meta Robots option to "index,follow" under Preferences »» Meta Tags and Footer, be sure to add the following 3 lines into article.php (all versions), newsbythisauthor.php (new version):


Read More... | 6 comments
« 1 2 (3) 4 5 6 7 8 ... 22 »