Top Blogs of BlogAds - Face The Reality And Get Instant Blog NirvanaMarch 10th, 2006 I was browsing through Blogads order page (search "Simple Thoughts" to find ours) and was surprised to find the top blogs in terms of page views in BlogAds. Now BlogAds is an independent entity and it is likely that the pageviews they are reporting is pretty accurate and real users (or at least bots who also fetches associated javascripts).
3 PHP Tips For Product DevelopersAugust 23rd, 2006 Three lessons I learned the hard way while developing a PHP based product, Translator Plugin Pro for WordPress. Let me know if you find them useful.
Silverlight: Features and Future - A Brief AnalysisFebruary 6th, 2009 There's been much fuss about Silverlight, Microsoft's web browser plugin. On most talks I find it as a hot technology that seems to be the future of web and even an most likely runtime alternative for present day OS-es.
How To Use Vanilla Forum On MySQL Database Without Password SetOctober 23rd, 2006 First of all I want to make it clear that having a MySQL database without a password set (on your root account) is a very very bad idea. However I wanted to set it up on my home machine which has XAMPP installed.
Top 10 Web Hosting Providers (Updated August 2005)August 3rd, 2005 According to Hosting-Review, an independent provider of web hosting reviews, the Top 10 Web Hosts (updated August 2005) are:
BlueHost
IX Web Hosting
Powweb
Lunarpages
iPowerWeb
Yahoo Hosting
StartLogic
Host Excellence
Bluefish Hosting
Site Build It
Link
How to Hack Your Computers BIOS PasswordNovember 22nd, 2008 Suppose you have forgot the BIOS password of your computer or you are into your friend's computer and want to give him a little shock. But the problem is the BIOS is locked with a password and you can't find a way to enter through it.
How To Purchase Dell Computers Without Windows Vista & Microsoft SoftwareMarch 12th, 2008 I had a hard time in selecting a Dell configuration from their website without Microsoft Windows Vista or other Microsoft software. We are a Linux house and have no need for Microsoft products on our machine.
Selecting the Best Compiler OptionsJuly 18th, 2005 The fundamental questions
There are two questions that you need to ask when compiling your program:
1. What do I know about the platforms that this program will run on?
2.
Kindertrust's Anti-Trust Lawsuit Against Google Dismissed And Yet A Question RemainsJuly 14th, 2006 US Federal court judge, Jeremy Fogel, dismissed Kinderstart's, education website, lawsuit against Google. The lawsuit accused Google of ""pervasive monopolistic practices" that denied its free speech rights, destroyed competition, and led to predatory pricing conditions".
Biggest Db4o Gotcha!August 18th, 2008 Db4o is an excellent open source object database for Java & .NET platform by Carl Rosenberger's team. I highly recommend it for rapid prototyping and RAD.
Blogging + Adsense Success Story (from $200 to $3000 per day) - Weblogs Inc. Profiled by GoogleNovember 14th, 2005 Weblogs Inc. is now profiled by Google as one of AdSense success stories along with Camcorderinfo.com and Askthebuilder.com.
Leveraging Java in Developing CountriesFebruary 8th, 2006 Java is the No. 1 language on planet earth, high performing and very easy to use.
Boomarklet to make any web page editableMarch 16th, 2009 Imagine you had a way to edit any web page instantly in the browser itself to experiment with the look and layout or copy some code?
Here is a Firefox bookmarklet to make any web page editable [Edit] in the browser itself. Just drag it to your bookmarks and you are ready to use it.
Experts-Exchange: How To Get Answers Without Subscribing / PayingOctober 14th, 2007 Experts-Exchange provides deceptive advertising and gives impression that the answers on the site are inaccessible without (paid) subscription. However the answers in Experts-Exchange are visible in plan sight should you know where to look for them.
Angsuman's Multi-Page Plugin: WordPress 2.x Plugin To Create Multi-Paged ArticlesMay 5th, 2006 WordPress 2.x (and above) plugin to create multi-paged article. I have been asked several times how I create articles with multiple pages (like this or this).
June 6th, 2005 at 8:56 am
The generated url will work, but the port for https is 443. And the IIS may not set $_SERVER['HTTP_HOST']:
‘ ‘) {
$script_name .= ‘?’.$_SERVER['QUERY_STRING'];
}
}
if (isset($_SERVER['HTTP_HOST'])) {
$_SERVER['FULL_URL'] .= $_SERVER['HTTP_HOST'].$port.$script_name;
} else {
$_SERVER['FULL_URL'] .= $_SERVER['SERVER_NAME'].$port.$script_name;
}
?>
June 6th, 2005 at 8:58 am
The uploaded code-snipped was broken:
$port = ”;
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']==’on’) {
$_SERVER['FULL_URL'] = ‘https://’;
if($_SERVER['SERVER_PORT']!=’443′) {
$port = ‘:’ . $_SERVER['SERVER_PORT'];
}
} else {
$_SERVER['FULL_URL'] = ‘http://’;
if($_SERVER['SERVER_PORT']!=’80′) {
$port = ‘:’ . $_SERVER['SERVER_PORT'];
}
}
if(isset($_SERVER['REQUEST_URI'])) {
$script_name = $_SERVER['REQUEST_URI'];
} else {
$script_name = $_SERVER['PHP_SELF'];
if($_SERVER['QUERY_STRING']>’ ‘) {
$script_name .= ‘?’.$_SERVER['QUERY_STRING'];
}
}
if (isset($_SERVER['HTTP_HOST'])) {
$_SERVER['FULL_URL'] .= $_SERVER['HTTP_HOST'].$port.$script_name;
} else {
$_SERVER['FULL_URL'] .= $_SERVER['SERVER_NAME'].$port.$script_name;
}
April 18th, 2006 at 4:58 pm
I found this script quite useful
. TNX!
August 31st, 2006 at 5:09 am
[...] Configuration [...]
September 7th, 2006 at 7:26 am
[...] [...]
August 22nd, 2008 at 12:22 pm
This script will NOT take in to account any redirects. They will show up in $_SERVER['REDIRECT_URL'] and $_SERVER['REDIRECT_QUERY_STRING'] but they are not bullet proof. It depends on how the redirect is made.
October 15th, 2008 at 12:25 pm
Thank you for sharing.
May 8th, 2009 at 10:37 am
hii thanks for the above info,
but its not satisfying my requirement
what i need to trace is not ust url with query strin but i also need to trace #href
i.e. if my url is
http://jigishthakar.com/?p=2#cid
then till
http://jigishthakar.com/?p=2 ur code works fine but now how to trace #cid ?