Skip to main content

Posts

iPhone theme for Nokia 6300 by Aerion

Click here to download: iPhone.rar (432 KB) iPhone theme for Nokia 6300. Posted via email from What I See

CATS 0.8.0

Click here to download: cats-0.8.0.tar.gz (1999 KB) Cats 0.8.0 just in case if I need it :) .. Here are the installation instructions: 1) Unpack the tarball into the web directory (/var/www/html, /usr/local/apache2/htdocs, or similar). Make a symlink to cats-0.8.0/ or rename the cats-0.8.0/ directory to cats/. 2) Start MySQL as the root user and create a new database and username. mysql> CREATE DATABASE cats; mysql> GRANT ALL PRIVILEGES ON `cats`.* TO ‘cats’@'localhost’ IDENTIFIED BY ‘password’; 3) Make sure that the web server has permission to write to the attachments directory. # chown apache:apache cats # chown -R apache:apache cats-x.x.x/ # chmod 770 cats/attachments 4) Visit installwizard.php from a browser to invoke the installer. * 5) Follow the on-screen instructions. * Tip: If the installer does not load, check to see if there is a file called ‘INSTALL_BLOCK’ in the CATS directory. Delete it to allow the inst...

Mac on VAIO

Installation Process (Working) <To be Edited> Download the Latest iAtkos Download http://osx86.net/f36/iatkos-v7-t3199/ Burn DVD. Insert and boot from the DVD. Create the partition and Erase it. Continue with installation Select the partition to install. Agree the terms and Condition. Select Customize. Select the Default setting Select Apple PS2 Driver in the Drivers.(This is for the Mouse and Keyboard) Read NOTE Below Then click DONE. Skip the Disk TEST if required. Installation completed and Restart. (Remove the DVD before it starts booting) And thats it - boot into the Mac OS X. and Enjoy :) NOTE: For Nvidia Driver after the installation is completed and all the settings and post installation setup is completed.  Enter the DVD again and install only " Nvidia -> NVdarwin and NVInjectGo" unselect everything else. This will bring up the NVidia Driver accelerator working at 1024x768 Ethernet Enable How TO (Working) Edit the f...

Dress for the Job

Posted via email from What I See

Registering dll to GAC in windows 7 32bit

Registering dll in winXP is simple just drag and drop in the assembly folder. But when you try to do it in windows 7 it would say somethnig like " Access is Denied ". To get around this use - gacutil.exe utility. I had this on my system in the following path. "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin" use the below command to register user or third-party dll. C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin> gacutil.exe /i "<DLL_PATH_HERE>" Posted via email from What I See