Browse > Home / Archive by category 'General Tutorials'

| Subcribe via RSS

How to recover MOST of scratched CD data discs

I learn an old thecnique to how to recover damaged or scratched disks
with some lost of data. In this case i have one borrowed game – MAX PAYNE 2
with a chunck of 4 mb lost with a scratch in CD1 Install. Here we cover some
special thecniques of how to create a full working CD from the scratched one.

More »

Burn a BIN without a CUE using NERO

You’ve downloaded a *.BIN file, but there was no *.CUE file associated and you still want to burn the *.BIN file using Nero

Your options are:

1) Create yourself a *.CUE

2) Convert the *.BIN to an *.ISO

3) OR use Nero to burn without the *.CUE file!!!

More »

10 Fast and Free Security Enhancements

Before you spend a dime on security, there are many precautions you can take that will protect you against the most common threats.

1. Check Windows Update and Office Update regularly ( http://office.microsoft.com/productupdates ); have your Office CD ready. Windows Me, 2000, and XP users can configure automatic updates. Click on the Automatic Updates tab in the System control panel and choose the appropriate options.

2. Install a personal firewall. Both SyGate (_www.sygate.com) and ZoneAlarm www.zonelabs.com offer free versions.

More »

A Guide on Fixing Errors related to Corrupt RAR archives

if you download from AOW or and other and you get a bad rar file please use this before re downloading so you dont use all your bandwidth one 1 film ect all credits got to the maker of the tut kissme1

More »

Is your wireless router Secured ?

When you buy a wireless router it is not secure and its default configuration will allow unwanted users that are in the vicinity of your router to connect to the internet and “steal” your wireless router internet connection. They could also gain access to your PC and steal files and folders of data. Manufacturers leave the configuration “open” so that the user can easily set up the router and get it up and running quickly. However, there is a risk if the router is not secures.

Instructions
Step 1 :
Accessing Your Wireless Router’s Configuration.
To gain access to your wireless router settings and configuration menu then connect to the router either wirelessly or via a Ethernet cable. Open a web browser and type either:

http://192.168.1.1

http://192.168.2.1

http://192.168.0.1

Step 2 :
Change the Admin password.
Most wireless routers ship with a blank password. It is essential that this is changed else a potential hacker could get into your router configuration and lock you out of your own hardware.

More »

How To Hide Your Drives In Windows

How to Hide the drives(c:,d:,e:,a:…etc)
How to Hide the drives(c:,d:,e:,a:…etc)
This is a great trick you can play on your friends. To disable the display of local or networked drives when you click My Computer.

1.Go to start->run.Type regedit.Now go to:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explorer

Now in the right pane create a new DWORD item and name it NoDrives(it is case sensitive). Now modify it’s value and set it to 3FFFFFF (Hexadecimal) .Now restart your computer. So, now when you click on My Computer, no drives will be shown(all gone…). To enable display of drives in My Computer, simply delete this DWORD item that you created.Again restart your computer.You can now see all the drives again.

Questions to ask a web hosting company

Before you sign any contract or pay for hosting, better ask some of this questions. You will have more information about your host, plus the chances for being scammed are minimal.

More »

Tags: , ,

Simple login system with php

Today I will be creating my first post for WarezTeacher and to help you create a simple login system for your admin… 

Firslty we need to create a file that will hold your password and security check!

Step 1 (Create Auth File).

Create a new file and name it anything you want but for this example we’ll use auth.php.

  1. <?php
  2. session_start();//this will be used to hold your admin session
  3. $MyPassword = "Admin"; //this will be your login password
  4. $Form = '<form action="" method="post" name="loginForm">
  5. <input name="password" type="password" />
  6. <input type="submit" value="Submit" />';
  7.  
  8. if(!$_SESSION['AdminAuth']){//check if allready logged in
  9. if(!$_POST['password']){
  10. die($Form);
  11. }else{
  12. if($_POST['password'] != $MyPassword ){
  13. die('PASSWORD FAIL!');
  14. }else{
  15. $_SESSION['AdminAuth'] = TRUE;
  16. }
  17. }
  18. }
  19. ?>

Now what ever pages you want to secure you should just include the file with the include command at the very top of your sucure page.

Hope you like this tutorial and please stay tuned at WarezTeacher for more!!!

Tags: , ,

Firefox Start Page Trick

Firefox has a great feature where you can set multiple home pages to open in individual tabs. This way you can open your browser. Look at this site and let your mail inbox load in the back-ground so that it can be used later on…

More »

Tags: ,

Resetting your IP

In this tutorial I will explain the basic steps to change the IP of the computer tou are using to browse the internet. This can have many advantages (eg: Download more files on file hosting sites that only allow 1 IP to download an x number of MB per hour; like Rapidshare). This will only work if you have got a dynamic IP. Most of the people who have got a wirelless connection using a router are able to do this. This tutorial can be used on all operating systems. I’m going to explain it in particulair for Windows XP and Vista.

More »

Tags: , ,