Removing Dell Wallpaper on a Windows 2003 R2 Server

May 12th, 2008

>компютри втора употребаe working on a client site recently with a brand new Dell Poweredge 2950 Server with Windows Server 2003 R2 pre-installed by Dell we came across an annoying setting that comes with the pre-installation and interferes with the ease of connecting via RDP (Remote Desktop Protocol).

 This setting causes the a picture of the Dell server to be displayed prior to the login prompt; the problem is that the file size is almost 2Mb and very graphic intensive, so it slows down the speed that the log in prompt loads.

To remove this setting:Uno de los jugadores en el juego de jugar poker en linea es la banca y se enfrenta al resto de jugadores, que también se llaman puntos.

How to restart a Windows XP machine on RDP

October 1st, 2007

At Techita we are frequently involved in projects with small and medium sized organisations.

Due to the size of these organisations often the network infrastructure available is limited as a result of smaller budgets than their larger competitors. One side effect of this reduced budget is that our clients sometimes need hardware and software to function in ways it is not exactly designed for.

One example of this is not being able to afford the licence fee for Windows Server and instead to use Windows XP Professional or even Windows XP Home to run a central file , print or database server. Clearly this approach would not work for a Microsoft Active Directory Domain Controller but can be used for many other types of server.

There are two usability downsides to be aware of for remote administration when taking the decision to use Microsoft Windows XP instead of Windows Server.

The first is that Windows XP Professional when accessed through Remote Desktop Protocol (RDP)  connections does not display a log off button or a reset option on the shutdown - the only option is to shut down the server which is not ideal and will mean that it won’t restart afterwards; this can be solved.

Read the rest of this entry »

Compaq Evo N610C, N600C, N600: a disk read error occurred when installing a new hard drive

July 19th, 2007

We recently came across an issue when attempting to install a non HP/Compaq issue hard drive on a Compaq N600c Laptop, there seems to be little in the way of advice for this problem so here is our solution.

The Problem

After installing a new hard drive into the laptop and inserting the Windows XP SP2 CD to install windows we were presented with the following problems

  1. We could not format the drive using the windows CD
  2. After connecting the drive to an external enclosure and formatting it with NTFS file system we were then able to get through the first stages of installing Windows XP, however after the first reboot we were presented with the error below:

“A disk read error occurred. Press Ctrl+Alt+Del to restart”

After quite a bit of experimenting with drive jumpers, unplugging CMOS batteries, resetting the BIOS and attempts to build the drive on other machines we surmised the drive was not the problem - it was something Compaq related.

Read the rest of this entry »

How to add a Skype me status button to your website

June 26th, 2007

The tool below is available from Skype free of charge - we list a set of how to steps to help simplify this process for you.

Skype is a VoIP (Voice over IP) service to allows users to make free voice calls to each other and reduced rate calls to landlines and mobiles in many countries.

They now also have SkypeIn which allows you to register a landline phone number in many countries and calls received on that number are routed to the Skype software installed on your computer - you can answer them using a headset, or microphone and speakers connected to your desktop PC or laptop. If you are interested in any of this kind of hardware a good place to start is the Skype Store Europe.

For most Small to Medium sized Enterprises (SMEs) or Non-Governmental Organisations (NGOs) this could mean that you can drastically reduce telecommunications providers bills and costs - especially if you can get all staff to use Skype between your own offices. Skype do recommend a slightly more expensive version than the standard one for businesses, details of this are available at Skype for Business, this allows you to keep track of multiple Skype accounts and how much each is costing among other things.

At Techita we use Skype actively and as such want to give our customers (many of whom are Skype users already) the ability to call us free of charge from their computers.

The solution to this is to add a “Skype Me” link on our website. Our example of this on Techita’s contact us page - the button is below our email address.

Read the rest of this entry »

PHP Redirect - How to send someone to another URL with PHP

May 3rd, 2007

When designing a web site, it is occasionally necessary to redirect a user to another URL to the one they have tried to access.

This can normally be accomplished using HTTP redirect, however sometimes they just arent applicable or you would prefer to do it with PHP, for example:

  • If a page is undergoing some maintenance and you wish to redirect users to an error page.
  • As part of a PHP conditional IF statement you want to redirect to another page, perhaps you want to check if a user is logged in yet and if not redirect to the login prompt.

I am sure the are many other reasons that escape me at the time of writing for why you may wish to do this.

Fortunately PHP does provide a means to allow web designers to take this control. This task is accomplished by manipulating the header of a web page before it has been served. In order to redirect a page to an alternative URL replace the contents of the file with:

Note that if any output has been written to the browser (including HTML tags) this approach will not work, it must be either the only or the first output in the file. Therefore if you want to use it as part of a conditional logic test put that at the start of the file, for example:

<?PHP 

IF(loggedIn == TRUE){  ?>
…HTML output can go here

<?PHP

}ELSE{
header( ‘Location: http://www.yourURL.com’ ) ;
}
?>

This technique is an easy way to control the flow of control in a browser based PHP application. Generally if you wish to always redirect one URL to another you should use a HTTP redirect, but a PHP redirect is also an option.

This tip was brought to you by the Web Design Team at Techita.