Thursday, 30 April 2015

Bugzilla Error

comment line 451 to 471 and paste with this
tr_quicksearch.cgi

my $product = Bugzilla::Extension::Testopia::Product->new($product_id);
       
        my @comps;
        foreach my $c (@{$product->components}) {
            if (!$cgi->param('query') || $c->name =~ m/$q/i) {
                 push @comps, {
                     'id' => $c->id,
                     'name' => $c->name,
'qa_contact' => $c->default_qa_contact ? $c->default_qa_contact->login : '',
'product' => $c->product->name,
                };
            }
        }



221
tr_process_case.cgi use bracket
foreach my $field (qw(action effect) ) {

Thursday, 9 April 2015

How Install wamp Server and IIS

WAMPSERVER

Download the wampserver to click the under link

Install the wampserver and File if any issue to start the wamp services.

IIS
Open the control Pannel -> Add Remove -> add Fetures.

Check the IIS

How to Create Own Drop Box

How to Create OWNCLOUD

Step-1 Install Wampserver

Step-2 download the Own cloud File from the under Link



Step-3 Now Unzip and copy the Own Cloud Folder under www of wamp

Step-4 Now give username and password of you wish

DONE :-)

Wednesday, 8 April 2015

How to Delete Default Profile In Outlook

Run -> regedit


Outlook 2013

HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Profiles\

Outlook 2010
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\Current Version\Windows Messaging SubSystem\Profile\profile-name


Note - delete the profile or delete the whole
under Profile if you want Default Setting

How to check RAM Details and Slot

To check the CPU Details and RAM Slot Download the below URL and check the slot and ram Frequency 

Download the Setup and check your Details on One GO.

https://drive.google.com/folderview?id=0B3qUUSbGTcTWfk5wZnU1VkZfM3MwYVlBOGFMdXB3WHdxVGRMbjJDSGRlSXdoMGllNEI4YWc&usp=sharing


Thanks
Harish Chander

Monday, 6 April 2015

Move App to SD card

URL - https://drive.google.com/folderview?id=0B3qUUSbGTcTWfnRNTmhFZ21nbGV3T3d3QVpGbjJ5dUxEdVl0UzdDSDhvR0dXZUhPem1vaDA&usp=sharing

Download the LG Driver and Move 2 SD folder from the above folder

Install the Driver and unzip the move 2 SD folder

Step - LIke you unzip the folder of move to SD card.

Step 1 - Open CMD with run as administrator and go to folder where you place unzipped folder of Move 2 SD ( I place it on D drive )

Step 2 - 
d:\>adb devices
d:\>adb shell pm get-install-location
0[auto]
d:\>adb shell pm set-install-location 2
2[external]

Step 3 - 
adb devices
Probes Android devices connected to the PC. Do this first to assure that the phone is being detected.
adb shell pm getInstallLocation (Android <4.0)
adb shell pm get-install-location (Android 4.x)
This results in a numerical value to state where the default install location is (0: phone, 2: external).
adb shell pm setInstallLocation 2 (Android <4.0)
adb shell pm set-install-location 2 (Android 4.x)
This sets the default install location to the external storage.


DONE

How to root LG

Download the below File

https://drive.google.com/folderview?id=0B3qUUSbGTcTWfnRNTmhFZ21nbGV3T3d3QVpGbjJ5dUxEdVl0UzdDSDhvR0dXZUhPem1vaDA&usp=sharing

Step 1 - Download Root Device Folder/

Step 2 - USB Debugging on - Setting -> USB Debugging

Step 3 - Extract Folders and install driver and open purpledark_windows.

Step 4 - Press Enter to temproot and Preroot.

pdf converter

Online password set on pdf
https://www.pdfprotect.net/


Online Password Remover
http://smallpdf.com/unlock-pdf

Thursday, 2 April 2015

How to give permission to for Apache to specific user

install subnical
open cmd and follow step

cd "Program Files <x86>\Windows Resource Kits\Tools"
subinacl.exe /service wampapache64 /grant=Domainname\hchander
subinacl.exe /service wampmysqld64 /grant=Domainname\hchander


Note - check the service name in service.msc

Wednesday, 1 April 2015

Batch file to ping and trace rt and save in file

Step - 1 Create folder in D Drive with folder name Batch

Step - 2 Copy below code in txt file and save with extension bat

@echo off
ping 192.168.1.10 -n 1000 > d:\Batch\"14.141.112.57 Ping %date:/=-% %time::=-%.txt"

tracert 192.168.1.10 > d:\Batch\"14.141.112.57 Trace %date:/=-% %time::=-%.txt"

Script for copy one server to another then sleep for 1 min

#!/bin/bash
echo "test"
i=0
unit=100

for file in /home/harish/a/*;
do
  cp  "$file" /home/harish/c
  if [[ "$i" -ge "$unit" ]];
then
    sleep 1M
   i=0
  fi
 ((i++))
done