Linux Mail Servers

Manual Settings ~~~~~~~~~~~~ Mail Server Username: no-reply+domain.com Incoming Mail Server: mail.domain.com Incoming Mail Server: (SSL) host200.hostmonster.com Outgoing Mail Server: mail.domain.com (server requires authentication) port 26 Outgoing Mail Server: (SSL) host200.hostmonster.com (server requires authentication) port 465 Supported Incoming Mail Protocols: POP3, POP3S (SSL/TLS), IMAP, IMAPS (SSL/TLS) Supported Outgoing Mail Protocols: SMTP, SMTPS (SSL/TLS) Warning: Changing MX … Read more

Amazon EBS

Amazon Elastic Block Storage (EBS) We can use Amazon EBS just like as the CD/DVD/Pen Drives on our PC/Laptops Servers for backup or data transfer… EBS can attach to an EC2 instance, we can use EBS to save work files in it.. for it we have to mount it in the instance after backup we … Read more

Crontab Command Line

Crontab Command Line 1. dump the content of the existing crontab to a file # crontab > /tmp/dump 2. echo “your lines” >> to the corntab file # echo ” 00 1 * * * /monitor_file_system 2>/dev/null” >> /tmp/dump 3. import the new crontab # crontab /tmp/dump other option…. # crontab -e It will open … Read more

Couldn’t find video filter ‘x264’

x264 is a free software library for encoding video streams into the H.264/MPEG-4 AVC format. It is released under the terms of the GNU General Public License. x264 itself provides a command line interface as well as a library-level interface. x264 is used to encode video files in mp4, m4v, h.264 (HD) output format. Install … Read more

sh: /mencoder: No such file or directory

This is the problem caused due to PHP safe_mode restrictions to execute linux commands. If safe mode is on we can not run linux commands by exec() PHP function. Try safe mode Off when you want to execute linux tools with PHP…. Disable dangerous function from executing to exec().. that will cause application non functional … Read more

Better Solution for Filtering Bad Words in PHP

I was searching for filtering Bad Words from my site…… I have visited so many links on google but…. 🙁 Here is my simple logic for filtering Bad Words from site or any search engine First you have to make a txt file “badwords.txt” or you can search from google Google Keyword: badwords + filetype:txt … Read more

Oscommerce – Features

* Multi language * Content Management ~ WYSIWYG editor integrated into the shop admin to allow easy entering    of    HTML and uploading of images ~ Add text to your category pages – great for SEO and providing information ~ Content Management System – no more FTP and working with PHP files – amend text for … Read more

Get Mobile Information Header

The User Agent Profile (UAProf) is used for capturing capability and preference information for wireless devices. This information can be used to detect various types of HTTP headers and other properties for visitor’s mobile device. Apache provide some useful HTTP X Header information for WAP… which detect user-agent and other hardware/software information. Source: http://en.wikipedia.org/wiki/UAProf http://code.google.com/p/mobiledevicedetector/ … Read more