Articles Comments

Complete, Concrete, Concise » Entries tagged with "AMPPS"

Creating a MySQL Database Using AMPPS

This tutorial assumes that you have AMPSS 1.2 installed. The procedure should be the same for other versions of AMPPS. An AMPPS installation procedure for Windows XP can be found here. Normally, you would not need to create a database in AMPPS because the setup script will automatically do that for you. However, if you are installing an application that does not have a setup script provided by AMPPS (and it requires a MySQL database), then you will need to manually create a database. As well, if you are writing your own application and require a database, then you will also need to manually create one. Creating a Database 1) Open your browser and enter http://localhost/phpmyadmin. This will bring you to the MySQL setup page: 2) Click on the Databases tab: 3) Enter a name for the database, … Read entire article »

Filed under: Web Tools

Troubleshooting the Apache Server Not Starting

This tutorial assumes XAMPP or AMPPS installed on a Windows XP machine with Service Pack 3. The instructions should work for other versions of Windows, but no guarantee is made. For non-Windows systems, the general causes and procedures should be the same, but adapted for whatever OS you are running. It is frustrating to install the Apache Server (whether through a package like XAMPP or AMPPS or separately installed) and not have it work. The most common reason is that some other application is using the ports needed by the Apache Server. These are port 80 (http) and port 443 (https). To check this, we need to see what applications are using which ports. Some images may be clicked for full sized versions. Download a TCP Port Monitoring Application 1) Download CurrPorts from NirSoft. The download link is … Read entire article »

Filed under: Web Tools

Installing AMPPS – Apache Server, MySql, PHP, Perl with Installation Scripts

These instructions are for installing AMPPS 1.2 on Windows XP with Service Pack 3. It should work for other configurations as well. Some images may be clicked for full sized versions. AMPPS is an extremely easy to install and use Apache Server which comes bundled with MySQL (a database), PHP (server side scripting language), Perl (another server side scripting language), Python (yet another scripting language) and auto-installation scripts for 225 different web applications. Why would I want to install it? To allow development and testing on your local machine instead of on a remote (and probably live) server. I use it to test out changes to my website before uploading and committing changes to the real site. Compared to XAMPP, AMPPS is easier and friendlier to use because of its auto-installation scripts. This allows you … Read entire article »

Filed under: Web Tools