Skip to main content

Posts

How to Install SQLite3 from Source on Linux (With a Sample Database)

SQLite3 is an extremely lightweight SQL database engine that is self-contained and serverless. There is absolutely no configuration that you need to do to get it working. All you need to do is–install it, and start using it. Since this is serverless, it is used in lot of the famous software that you are using, and you probably didn’t even know those software were using it. View  this list  to see all the big name companies who are using SQLite. PHP programming language has SQLite database built in. If you’ve never used SQLite, follow the steps mentioned in this article to install it on Linux, and create a sample database. Download SQLite3 Source Go to the  SQLite Download page , and click on “sqlite-autoconf-3070603.tar.gz” (Under Source Code section), and download it to your system. Or, use the wget to directly download it to your server as shown below. wget http://www.sqlite.org/sqlite-autoconf-3070603.tar.gz Install SQLite3 from Source Uncompress the ...

Open source software requirement and user documentation tool - MediaWiki

You probably know Wikipedia , the free encyclopedia, and may possibly be a little bit confused by similar, but different, words such as Wiki, Wikimedia or MediaWiki . To avoid a possible confusion between the words you may first want to read the article about the names where the differences are explained. MediaWiki is free server-based software which is licensed under the GNU General Public License (GPL). It's designed to be run on a large server farm for a website that gets millions of hits per day. MediaWiki is an extremely powerful, scalable software and a feature-rich wiki implementation, that uses PHP to process and display data stored in a database, such as MySQL . Pages use MediaWiki's wikitext format , so that users without knowledge of XHTML or CSS can edit them easily. When a user submits an edit to a page, MediaWiki writes it to the database, but without deleting the previous versions of the page, thus allowing easy reverts in case of vandalism or...

Building Applications on the Zend Developer Cloud

Zend Studio and the Zend Developer Cloud support an integration platform with GitHub projects. This allows you to use the features of GitHub, Zend Studio, and the Zend Developer Cloud for the same application. You can now use the cloud to deploy, debug and modify your GitHub project from Zend Studio. In this Tutorial you will Learn To create GitHub and Zend Developer Cloud accounts. You will need these accounts to maintain a project in GitHub and deploy on Zend's cloud platform. To create a new container in the Zend Developer Cloud. The container holds your application in the cloud. To create a new project from GitHub. You will be using an existing GitHub project to create a new project in Zend Studio. To launch the application on the Zend Developer Cloud and debugging it in Zend Studio. Prerequisites An installed Zend Studio 9.0 or above. To install Zend Studio go to  http://www.zend.com/en/products/studio/downloads . Step 1: Creating an Account for Git...

PHP Development Gives Great Career Opportunities to Budding Web Developer

PHP is known for developing dynamic web pages and is a very popular server side scripting language in developing web sites and web applications. It is interesting to note that hugely popular domains like Facebook, Wikipedia, Wordpress, and Drupal use this language. What makes it most preferable language at this moment is that it is similar to C and the codes written in PHP is very easy to understand for programmers using any different language. As we know, the quick paced growth of internet has certainly demands a lot in the field of web development and there is a huge demand for the web developers ever since the internet has dominated our lives. As we all know, when we decide to go on line, we require a website that is professional looking and user friendly. On top of that, we look ahead to have security and safety. The next is certainly the visibility in the search engine. It is very crucial for a web business to have better ranking in search results. Needless to say, all thes...

Best Practices for Speeding Up Your Web Site

The Exceptional Performance team has identified a number of best practices for making web pages fast. The list includes 35 best practices divided into 7 categories. Filter by category: Content Server Cookie CSS JavaScript Images Mobile All Minimize HTTP Requests tag: content 80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages. One way to reduce the number of components in the page is to simplify the page's design. But is there a way to build pages with richer content while also achieving fast response times? Here are some techniques for reducing the number of HTTP requests, while still supporting rich page designs. Combined files are a way to reduce the number of HTTP reques...