Wednesday, April 30, 2014
Saturday, August 3, 2013
Jmeter
http://biscminds.blogspot.in/2011/12/quick-jmeter-setup-on-mac.html
Open ApacheJMeter.jar to launch Jmeter
Open ApacheJMeter.jar to launch Jmeter
Tuesday, July 16, 2013
Wednesday, July 10, 2013
Thursday, May 2, 2013
Wednesday, May 1, 2013
Search symbolic link in a folder
find /folder -type l -exec ls -lad {} \;
Friday, March 15, 2013
Useful basic liux Command
Some basic UNIX command which helps in managing server
- copy a directory
cp -r dir1 /path/to/destination/dir - Extract tar.gz file
tar xvfz archive_name.tar.gz - create a tar.gz file
tar cvfz archive_name.tar.gz dirname/ - Search file with file name
find . -type f -name '*.php'
Thursday, March 14, 2013
Linux command to see disk spaces
Tuesday, March 12, 2013
Linux folder size from command prompt
Best way to check folder size. du -hs /var/www/7.8GIf want to exclude any(upload here) folder thendu -hs --exclude=upload*2G Tuesday, February 19, 2013
Drupal Commerce | Change the default country
1. Go to admin/commerce/customer-profiles/types
2. Select Manage fields on the appropriate profile type
3. Select Edit for the Address field
4. Set the Available countries and the default country
2. Select Manage fields on the appropriate profile type
3. Select Edit for the Address field
4. Set the Available countries and the default country
Tuesday, January 29, 2013
Website monitoring
So, you want a tool, which will send you some kind of alert when your site is down.
And you don't want to install complicated software on your sever or client.
then here is the solution
http://www.monitor.us/about-monitor-us/monitis-premium-product
And you don't want to install complicated software on your sever or client.
then here is the solution
http://www.monitor.us/about-monitor-us/monitis-premium-product
Thursday, December 20, 2012
Wednesday, December 19, 2012
Monday, December 17, 2012
Tuesday, November 20, 2012
Tuesday, November 6, 2012
Thursday, October 18, 2012
Wednesday, October 3, 2012
Thursday, September 27, 2012
Wednesday, September 12, 2012
CodeIgniter time ago format achieved
http://tutorialsbay.com/codeigniter-time-ago/
I wrote one custom function to achieve this
function display_time($timestamp) {
$date_array = explode(',', timespan($timestamp, time()));
$date = $date_array[0] . ' AGO, ';
return($date);
}
I wrote one custom function to achieve this
function display_time($timestamp) {
$date_array = explode(',', timespan($timestamp, time()));
$date = $date_array[0] . ' AGO, ';
return($date);
}
Subscribe to:
Posts (Atom)
