root bin

Tuesday, 20 May 2014

Setting up Varnish on Drupal 7 on Debian

›
apt-get install varnish Install and activate  varnish module https://drupal.org/project/varnish nano /etc/default/varnish Repace the ...
Sunday, 27 April 2014

How to merge to videos using ffmpeg

›
ffmpeg -i 1.mp4 -sameq 1.mpg ffmpeg -i 2.mp4 -sameq 2.mpg cat 1.mpg 2.mpg | ffmpeg -f mpeg -i - -sameq -vcodec mpeg4 output.mp4 source
Saturday, 26 April 2014

Delete dupicate entries in mysql table

›
CREATE TABLE wpdb.wp_posts_deduped like wpdb.wp_posts; INSERT wpdb.wp_posts_deduped SELECT * FROM wpdb.wp_posts GROUP BY post_content, post...

Find mysql database and tabe size

›
These queries are very useful to find bloated databases/tables: Show size of all databases (in MB) SELECT s.schema_name,     SUM(t.data_...
Sunday, 16 February 2014

Burn srt to avi in Linux

›
 To split files use avisplit like: avisplit -s 300 -i video.avi  Then to burn subtitle to the video.avi:  mencoder  in.mp4 -sub mysu...
Thursday, 6 February 2014

Install tahoma fonts on Ubuntu

›
wget -c http://hezardastan.sourceforge.net/persianfonts/tahoma.tar.gz wget -c http://hezardastan.sourceforge.net/persianfonts/bfonts.tar.gz ...
Tuesday, 4 February 2014

How to counter botnets?

›
First, what are the indications that you are under attack by botnets? Usually a very high load on web server without much spike in bandwid...
Friday, 24 January 2014

mezzanine notes

›
Error loading MySQLdb module: No module named MySQLdb On Ubuntu 12.04, to be able to use mysql as backend database in mezzanine, do thes...
Wednesday, 22 January 2014

Fix drupal 6 file permissioins

›
If you need to fix permissions repeatedly then the following script will help you, it is based on the guidelines given above and performs...
Tuesday, 21 January 2014

Sample text searches for suspicious PHP code

›
1 grep -Rn "mkdir *(" public_html/ Or 1 grep -RPn "(passthru|shell_exec|system|phpinfo|base64_decode...
‹
›
Home
View web version
Powered by Blogger.