a2zVideoAPI WordPress Plugin

a2zVideoAPI WordPress Plugin: https://www.svnlabs.com/blogs/a2zVideoAPI.zip http://wordpress.org/extend/plugins/a2zvideoapi/ Plugin Name: a2zVideoAPI widget Plugin URI: http://svnlabs.com/a2zvideoapi/ Description: a2zVideoAPI allows you to add a sidebar widget to show video from various sites including youtube, dailymotion, google, vimeo, metacafe, blip.tv, hulu, 5min, myspace, ehow, break, flickr etc. Author: Sandeep Verma Version: 0.7 Author URI: https://www.svnlabs.com/blogs Other: Curl must be on your … Read more

Image2text

Image to Text Or Optical Character Recognition (OCR) is used for extracting text from PDF and images (JPG, BMP, TIFF, GIF) and convert into editable Word, Excel and Text output formats. What is OCR? Optical Character Recognition (OCR) is process of converting scanned images of handwritten, typed, or printed text into machine-encoded text. It is … Read more

Framework vs CMS

Framework: A web application framework is a software framework that is designed to support the development of dynamic websites, Web applications and Web services. 1. CodeIgniter 2. CakePHP 3. Zend 4. Symfony CMS: A content management system (CMS) is the collection of procedures used to manage work flow in a collaborative environment. These procedures can … Read more

LAMP Developer Skills

Here are some basic skills an ideal developer have for growing business…. Technical Skills: Should have relevant experience on developing and programming interactive applications and websites. * Should have Customized & developed modules for Oscommerce and Joomla. * Should have Integrated Custom shipping and Payment Modules. * Design database and coordinate the UI design. * … Read more

RESTClient – Web Service Consumer

RESTClient is an application use to visit and test RESTful services. REST (Representational State Transfer) is the model of the Web to consume web resources. The browser makes a request to a URL and receives a response.  The request may be a GET or POST (or a PUT, DELETE, or HEAD) and the response may … Read more

Create FTP user from SSH

Wow! amazing …… Do you want to create FTP user from linux command line SSH? First you have to install FTP daemon like vsftpd: http://www.cyberciti.biz/tips/linux-creating-ftp-account-with-vsftpds.html proftpd: http://www.cyberciti.biz/tips/linux-installing-configuring-proftpd-ftp-server.html Use below commands to create FTP user in Web accessible location # useradd -c ‘FTP USER svnlabs’ -m svnlabs -d /var/www/html/svnlabs # chmod -R 775 /var/www/html/svnlabs

Upload Large Database Table to Server

Hello Friends, Sometime we want to upload large database table to server but phpMyAdmin have limit to upload SQL large *.sql files.. When we create database table “svnlabs” from mysql admin server make 3 files “svnlabs.frm”, “svnlabs.MYD” and “svnlabs.MYI” These files are located at “/var/lib/mysql/svnlabs”.. we can check this location by phpinfo.php We can upload … Read more

a2zVideo API

Welcome to the a2zVideoAPI wiki! This API supports video links to get video information like Embed Code, Video Thumb, Video Title, Video Description etc. How to use a2zVideoAPI: 1. Download “api.php” from http://github.com/svnlabs/a2zVideoAPI 2. API require PHP with CURL extension.. Setup / Upload “api.php” to your web server 3. Modify “api.php” for API Video server … Read more

PHP Debug Log – Trace Errors

Hello Friends, I read some where “Quality is not a product.. it is a process 😉 ” I think process is hard-work we do and product is final result we get. But how we make our process to get a good product, as a LAMP developer I think track processes “Debug Log” is good sort … Read more

Download youtube videos using PEAR

PEAR have rich library to access web based resources easily… <?php $sv = new SVTube(); $sv->download(“D7cm-yu-CP0”, “svnlabs.flv”) ?> Class: SVTube.php —————————— <?php require_once ‘HTTP/Client.php’; require_once ‘HTTP/Request.php’; class SVTube { var $req; var $debug = false; var $auth = false; function download ($video_id, $video_filename) { $url = “https://www.youtube.com/watch?v=”.$video_id; $this->req =& new HTTP_Request($url); $response = $this->req->sendRequest(); if … Read more