Monday, September 24, 2012

Permanet Redirecting Page

1. well this code will automatic redirect your page to another website using .httacess

Alright , to do this , you need to add .htaccess to your public_html folder ,and the code is .

RewriteEngine On
RewriteCond %{HTTP_HOST} !^http://example.com\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
 
This will redirect any requests to http://example.com to http://www.example.com.

2. Another way to redirect page using Refresh Redirecting Tag:

<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.co.il">

3. JAVA SCRIPT METHOD 

<script type="text/javascript">
function delayedRedirect(){
    window.location = "https://www.site.com/"
}
</script>
</head>
<body onLoad="setTimeout('delayedRedirect()', 10000)">  ==> This means 10 Seconds


~~> e-yhamtech 

Thursday, September 6, 2012

How to Fix Windows XP Activation Loop

This Tutorial is dedicated to one of my friend need a help to FIX the annoying windows xp activation loop:


the image above is example of windows activation, this activation message actually  appear if your activation is already expired. the message is looping and can't continue to your windows desktop.

so here's the way how to fuck i mean to fix the windows xp activation :)

first reboot you windows and  press F8 button until Windows Boot Menu appear





then select "Safe Mode with Command Prompt" and press ENTER

now windows boot and bypass the activation message and you will see a command prompt.



At the command prompt type: explorer.exe 

Now you have access to the Windows desktop and you can activate your windows :D


e-yhamtech