Categories
Software

Enabling “Unofficial Overclocking” in MSI Afterburner 2.1

I was looking for the proper way to enable overclocking in MSI Afterburner 2.1, and found a guide for an old version, but figured out how to do it in 2.1.

go to where your MSI Afterburner is installed, for me/default it’s :

C:\Program Files (x86)\MSI Afterburner
open MSIAfterburner.cfg with wordpad or notepad
There are 2 lines we need to add to :

under the line [ATIADLHAL]
We need to replace UnofficialOverclockingEULA = and UnofficialOverclockingMode = 0 with :

UnofficialOverclockingEULA = I confirm that I am aware of unofficial overclocking limitations and fully understand that MSI will not provide me any support on it
UnofficialOverclockingMode = 1

Save it, and you are good to go!

This is what it looks like afterwards … OC options open right up.

[zp src=”msi.jpg” album=”blog/etc” width=”500″]

Categories
Linux

Installing ImageMagick/Imagick on a cPanel Server

I was having issues with my Zen install not being able to handle large images, so I read around and decided to move image cache’ing over to ImageMagick, instead of the GD library. This is what you need to do to install/enble ImageMagick on your cPanel server :

You’ll need to be logged in as root on your VPS/Server :

1. Log into your server as root
2. Create a new directory as below :
mkdir /home/cpimins
3. cd /home/cpimins
4. wget http://layer1.cpanel.net/magick.tar.gz
5. tar zxvf magick.tar.gz
6. cd magick
7. /scripts/installrpm ImageMagick
8. /scripts/installrpm ImageMagick-devel
9. sh ./install

Now we need to get the module for PHP installed :

Log into WHM >> Software >> Module Installers >> PHP Pecl and install imagick to get it binding to PHP properly.

After you do that, restart HTTPD/Apache service and you’re golden!

known issue with transferred domains :

If you do not see this in your php.ini file, or it not functioning properly, then you should go to the directory of the issue’d domain example : /home/domainuser/ and rename php.ini to php.ini.bak

Enjoy!

Categories
Operating Systems Printers

0x00000006 error (cannot connect to server) when trying to add printers

Scenario :

Dell E6410 with windows 7 PRO trying to add printer(s) – HP, from server xyz, returns error : Cannot Connect To Printer, when you expand you receive this code : 0x00000006

[zp src=”printerror.jpg” album=”blog/etc” width=”500″]

What I tried :

Removing everything related to the printer in registry (F3 is your friend)
Adding other printers from other print server (this worked)
Re-adding computer to domain (was listed, but thought i’d try)

Rebooted after each attempt as well.

What finally worked :

Going to :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Providers\Client Side Rendering Print Provider\Servers
and removing anything related to the xyz server, and it worked, did not even have to reboot. Connected, and started downloading drivers as it is supposed to.

Hopefully this helps!