 
    
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AMPPS Archives - Complete, Concrete, Concise</title>
	<atom:link href="https://complete-concrete-concise.com/tag/ampps/feed/" rel="self" type="application/rss+xml" />
	<link>https://complete-concrete-concise.com/tag/ampps/</link>
	<description>Practical Information Without The Bloat</description>
	<lastBuildDate>Thu, 13 Oct 2011 09:43:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>Creating a MySQL Database Using AMPPS</title>
		<link>https://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps/</link>
					<comments>https://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps/#comments</comments>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Thu, 13 Oct 2011 09:43:19 +0000</pubDate>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[add user]]></category>
		<category><![CDATA[AMPPS]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps</guid>

					<description><![CDATA[<p>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 [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps/">Creating a MySQL Database Using AMPPS</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>This tutorial assumes that you have AMPSS 1.2 installed.</p>
<p> The procedure should be the same for other versions of AMPPS.</p>
<p>An AMPPS installation procedure for Windows XP can be found <a href="//complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts">here</a>.</p>
</div>
<div class="c2">
<p>Normally, you would not need to create a database in AMPPS because the setup script will automatically do that for you.</p>
<p>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.</p>
<p>As well, if you are writing your own application and require a database, then you will also need to manually create one.</p>
</div>
<h1>Creating a Database</h1>
<p><strong>1) Open</strong> your browser and enter http://localhost/phpmyadmin. This will bring you to the MySQL setup page:
</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-1.png" alt="" border="0" class="centered"/></p>
<p><strong>2) Click on</strong> the <u>Databases</u> tab:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-2.png" alt="" border="0" class="centered"/></p>
<p><strong>3) Enter</strong> a name for the database, then click on the Create button. The name must be 64 characters or less and composed of letters, numbers and underscores. Avoid using numbers at the start of the name. A good name should indicate the purpose of the database. For example: joomla_database or database_for_drupal. There should be no need to change the other settings:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-3.png" alt="" border="0" class="centered"/></p>
<p><strong>4) Confirm</strong> the database was successfully created (this is a popup that only lasts a few seconds):</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-4.png" alt="" border="0" class="centered" /></p>
<div class="c1">
<p>While the database has been created, it is only accessible by user <em>root</em>. Since AMPPS does not give us <em>root</em> privileges for the database, we need to create a user for the database.</p>
</div>
<h1>Creating a User for the Database</h1>
<p><strong>5) Click on</strong> the <u>Databases</u> tab:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-2.png" alt="" border="0" class="centered"/></p>
<p><strong>6) Click on</strong> <u>Check Privileges</u>:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-5.png" alt="" border="0" class="centered"/></p>
<p><strong>7) Click on</strong> <u>Add a new user</u>:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-6.png" alt="" border="0" class="centered"/></p>
<p><strong>8) Fill in</strong> the user information:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/ampps-creating-mysql-7.png" alt="" border="0" class="centered"/></p>
<p><strong>User Name:</strong> Leave the dropdown selection as <u>Use text field</u> and enter a user name in the edit box on the right side. A user name may be a maximum of 16 characters in length. The MySQL documentation recommends using only ASCII characters in the name. It would probably be safest to restrict yourself to lowercase letters, uppercase letters, and / or digits.</p>
<p><strong>Host:</strong> since this is for AMPPS, select <u>Local </u>from the dropdown box.</p>
<p><strong>Password:</strong> if you want the user to have a password, then leave the selection in the dropdown box as <u>Use text field</u> and enter a password (up to 16 characters, composed of letters and / or digits) into the edit box on the right. </p>
<p>If you don&#8217;t want the user to have a password (for the password to be blank) then select <u>No Password</u> from the dropdown box. Alternatively, you can allow the system to generate a password for you (remember it or write it down, since you will need to pass that password on to applications that need it).</p>
<p><strong>9) Ensure</strong> <u>Grant all privileges on database</u> is selected.</p>
<p><strong>10) Leave</strong> the <u>Global Privileges</u> as they are.</p>
<div class="c1">
<p>This database can now be used by any application that requires a MySQL database.</p>
<p>The user name and password for this database is whatever name and password you entered in Step 8.</p>
</div>

<p>The post <a href="https://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps/">Creating a MySQL Database Using AMPPS</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/web-tools/creating-a-mysql-database-using-ampps/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Troubleshooting the Apache Server Not Starting</title>
		<link>https://complete-concrete-concise.com/web-tools/troubleshooting-the-apache-server-not-starting/</link>
					<comments>https://complete-concrete-concise.com/web-tools/troubleshooting-the-apache-server-not-starting/#comments</comments>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 21:52:22 +0000</pubDate>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[AMPPS]]></category>
		<category><![CDATA[Apache Server]]></category>
		<category><![CDATA[Apacher]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[won't start]]></category>
		<category><![CDATA[XAMPP]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=1100</guid>

					<description><![CDATA[<p>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 [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/web-tools/troubleshooting-the-apache-server-not-starting/">Troubleshooting the Apache Server Not Starting</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>This tutorial assumes XAMPP or AMPPS installed on a Windows XP machine with Service Pack 3.</p>
<p>The instructions should work for other versions of Windows, but no guarantee is made.</p>
<p>For non-Windows systems, the general causes and procedures should be the same, but adapted for whatever OS you are running.</p>
</div>
<p>It is frustrating to install the Apache Server (whether through a package like XAMPP or AMPPS or separately installed) and not have it work.</p>
<p>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).</p>
<p>To check this, we need to see what applications are using which ports.</p>
<div class="c2">
<p>Some images may be clicked for full sized versions.</p>
</div>
<h1>Download a TCP Port Monitoring Application</h1>
<p><strong>1) Download</strong> <a href="http://www.nirsoft.net/utils/cports.html">CurrPorts from NirSoft</a>. The download link is located near the bottom of the page (just above all the various language packs available for it):</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-1.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-1-thumb.png" alt="" border="0" class="centered"/></a></p>
<p><strong>2) You will be prompted</strong> to <u>Open</u> or <u>Save</u> the application. Saving is probably the better option. Remember where you saved it:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-2.png" alt="" border="0" class="centered"/></p>
<p><strong>3) Open</strong> the download:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-3.png" alt="" border="0" class="centered"/></p>
<div class="c2">
<p>The next step assumes Windows is providing archiving functionality for you. If you are using some other application (like WinZip or IZarc) then the instructions will be different.</p>
</div>
<p><strong>4) Click</strong> on <u>File</u> and <strong>select</strong> <u>Extract all</u>:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-4.png" alt="" border="0" class="centered"/></p>
<p><strong>5) Click</strong> on <u>Next</u>:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-5.png" alt="" border="0" class="centered"/></p>
<p><strong>6) Click</strong> on <u>Next</u> if you accept the location the files will be extracted to, otherwise, <strong>enter</strong> a different location to extract the files to:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-6.png" alt="" border="0" class="centered"/></p>
<p><strong>7) Ensure</strong> the <u>Show extracted files</u> checkbox is checked and <strong>click</strong> on <u>Finish</u>:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-7.png" alt="" border="0" class="centered"/></p>
<p><strong>8) Double-click</strong> on the <u>CurrPorts</u> application to launch it:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-8.png" alt="" border="0" class="centered"/></p>
<p><strong>9) Windows</strong> may popup a warning dialog. <strong>Click</strong> <u>Run</u>. You may also <strong>click</strong> on the <u>Always ask before opening this file</u> checkbox to prevent this warning form appearing in future:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-9.png" alt="" border="0" class="centered"/></p>
<div class="c2">
<p>In future, you can simply go to the directory that the CurrPorts application is located and double-click on the icon to start it. You can also create a shortcut to it, if you like, or add it to your Start Menu.</p>
</div>
<h1>Checking which Ports are in Use</h1>
<p><strong>CurrPorts </strong>shows a lot of information about which applications are using which port:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-10.png" alt="" border="0" class="centered"/></p>
<p><strong>10) Locate</strong> the tab <u>Local Ports</u> and <strong>click</strong> on it to sort the ports in ascending order:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/apache-not-starting-11.png" alt="" border="0" class="centered"/></p>
<h1>Locating Port Conflicts</h1>
<p>With the ports sorted, you can now check to see which applications (if any) are using the following ports:</p>
<p><strong>Port 80 (http)</strong>: the Apache Server, in both XAMPP and AMPPS, uses this port to serve up web pages using the <strong>H</strong>yper <strong>T</strong>ext <strong>T</strong>ransfer <strong>P</strong>rotocol. The most common application using this port (aside from Apache Server) is the Microsoft <strong>I</strong>nternet <strong>I</strong>nformation <strong>S</strong>erver (IIS).  In order for Apache Server to work correctly, you need to disable any application using this port, or configure it to use some other port.</p>
<p><strong>Port 443 (https)</strong>: the Apache Server, in XAMPP, uses this port to serve up web pages using the <strong>H</strong>yper <strong>T</strong>ext <strong>T</strong>ransfer <strong>P</strong>rotocol <strong>S</strong>ecure. The most common application using this port (aside from Apache Server) is the Microsoft <strong>I</strong>nternet <strong>I</strong>nformation <strong>S</strong>erver (IIS).  In order for Apache Server to work correctly, you need to disable any application using this port, or configure it to use some other port. The Apache Server in AMPPS does not use this port or protocol.</p>
<p><strong>Port 3306</strong>: this port is used by the MySQL database. If some other application is using this port, then your MySQL database will not work. In order for MySQL database to work correctly, you need to disable any other application using this port or configure it to use some other port.</p>
<div class="c1">
<p>Instructions for disabling the IIS can be found <a href="//complete-concrete-concise.com/web-tools/disabling-the-microsoft-internet-information-server-iis">here</a>.</div>

<p>The post <a href="https://complete-concrete-concise.com/web-tools/troubleshooting-the-apache-server-not-starting/">Troubleshooting the Apache Server Not Starting</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/web-tools/troubleshooting-the-apache-server-not-starting/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Installing AMPPS &#8211; Apache Server, MySql, PHP, Perl with Installation Scripts</title>
		<link>https://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts/</link>
					<comments>https://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts/#comments</comments>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Mon, 10 Oct 2011 02:16:18 +0000</pubDate>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[AMPPS]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts</guid>

					<description><![CDATA[<p>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 [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts/">Installing AMPPS &#8211; Apache Server, MySql, PHP, Perl with Installation Scripts</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>These instructions are for installing AMPPS 1.2 on Windows XP with Service Pack 3. It should work for other configurations as well.</p>
</div>
<div class="c2">Some images may be clicked for full sized versions.</div>
<p>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.</p>
<h1>Why would I want to install it?</h1>
<p>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.</p>
<p>Compared to XAMPP, AMPPS is easier and friendlier to use because of its auto-installation scripts. This allows you to easily try out various web applications without having to (1) find them yourself, and (2) handle the low level install details (not that it is hard). If an application you want to try out does not have an auto-install script, you can still install it manually (as you would under XAMPP).</p>
<p>Since I am more interested in testing out applications than developing them, I like the convenience of having so many to choose from.</p>
<h1>Why wouldn&#8217;t I want to install it?</h1>
<p>AMPPS does not enable port 443. Secure URLs, which begin with <span class="i1">https</span>, connect to your browser using port 443. Regular URLs, which begin with <span class="i1">http</span>, connect to your browser using port 80.</p>
<p><p>There does not seem to be a simple way to enable it.</p>
<p>For most people, this is not likely to be an issue.</p>
<p>As well, AMPPS does not grant you MySQL root access. Again, for most people this doesn&#8217;t matter because AMPPS scripts handle database creation for you (if the application needs one). If you need to create a new database, you simply have to assign it a user to be able to use it.</p>
<h1>Installation</h1>
<p>Download the self extracting package, run it and, in most cases, accept the default settings.</p>
<h1>Downloading</h1>
<p><strong>1) Go to</strong> the <a href="http://ampps.com/download">AMPPS download page</a> and click on the download icon:</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-1-large.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-1-thumb.png" alt="" border="0" class="centered"/></a></p>
<p><strong>2) Select</strong> to either Save the file or to Run it directly over the Internet. Saving allows you to uninstall and reinstall if necessary:<br />
<img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-2.png" alt="" border="0" class="centered" /></p>
<h1>Installation</h1>
<p><strong>3) Click</strong> <u>Run</u> to begin installation. <span class="i1"><strong>NOTE:</strong> this step may differ depending on (1) whether you chose to <u>Save</u> or <u>Run</u> the file in Step 2, (2) which browser you are using. I used Internet Explorer, FireFox downloads into its own location, (3) you already have the file and are just reinstalling.</span></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-3a.png" alt="" border="0" class="centered"/></p>
<p><strong>4) Windows may issue</strong> a <u>Security Warning</u>. It is safe to click on <u>Run</u>:<br />
<img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-3.png" alt="" border="0" class="centered" /></p>
<div class="c1">
<p>The installation process will present a number of screens (too many in my opinion). In general, it is ok to accept the default settings.</p>
</div>
<p><strong>5) Click </strong> <u>Next</u> on the welcome screen.</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-4.png" alt="" border="0" class="centered" /></p>
<p><strong>6) Read</strong> the <u>License Agreements</u> and, if you agree, <strong>select</strong> <em>&#8220;I accept the agreement&#8221;</em> checkbox and <strong>click</strong> on <u>Next</u> to continue. <strong>Note:</strong> if you do not accept the agreements, then you will not be able to install AMPPS</p>
<p>:<br />
<img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-5.png" alt="" border="0" class="centered" /></p>
<p><strong>7) Click</strong> <u>Next</u> to continue.</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-6.png" alt="" border="0" class="centered" /></p>
<p><strong>8) Choose</strong> where you want to install AMPPS. By default, it will be installed in <span class="i1">C:\Program Files\Ampps</span>. For most installs, the default selection is fine. I chose to install it in <span class="i1">D:\ampps</span>. You can either type the install location yourself, or browse for it:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-7.png" alt="" border="0" class="centered" /></p>
<p><strong>9) Click</strong> <u>Next</u> to create a menu folder called Ampps. If you like, you can change the name of the folder (by typing in a different folder name) or browse and select a folder to install AMPPS into. I accepted the default:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-8.png" alt="" border="0" class="centered" /></p>
<p><strong>10) Click</strong> <u>Next</u> to allow creation of (1) Desktop Icon, (2) Quick Launch Icon, and (3) Start Menu Icon. If you do not want any or all of these icons created, then deselect them by clicking on the appropriate checkbox:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-9.png" alt="" border="0" class="centered" /></p>
<p><strong>11) Review</strong> your installation options and <strong>click</strong> <u>Next</u> to continue installation. If you want to change any installation options, <strong>click</strong> <u>Back</u> to go to a  previous screen. Since there were three different configuration option screens, you might have to click <u>Back</u> up to three times:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-10.png" alt="" border="0" class="centered" /></p>
<p><strong>12) During installation</strong>, a progress screen will be displayed. Just wait:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-11.png" alt="" border="0" class="centered" /></p>
<p><strong>13) After installation, click</strong> <u>Finish</u> to launch AMPPS:<br />
<img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-12.png" alt="" border="0" class="centered" /></p>
<p><strong>14) Windows may issue</strong> a <u>Security Alert</u> about running the <em>Apache HTTP Server</em>. <strong>Click</strong> <u>Unblock</u> to allow the <em>Apache HTTP Server</em> to run. <span class="i1"><strong>NOTE:</strong> the Apache Server needs to run to in order for AMPPS to work:</span></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-13a.png" alt="" border="0" class="centered" /></p>
<p><strong>15) Windows may issue</strong> a <u>Security Alert</u> about running the <em>MySQL Database</em>. <strong>Click</strong> <unblockM.u> to allow the <em>MySQL Database</em> to run. <span class="i1"><strong>NOTE:</strong> the MySQL Database needs to run in order for AMPPS to work:</span></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-13b.png" alt="" border="0" class="centered" /></p>
<h1>The AMPPS Control Panel</h1>
<p>The AMPPS control panel is a little bit unintuitive &#8211; you know that the Apache server and MySQL Database are running because the <strong>Start</strong> icons are greyed out. It would be less confusing (I think) if they provided some sort of <strong>Running</strong> icon.</p>
<p>The <strong>Restart</strong> buttons are a nice touch and work well when restarting the services.</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-14.png" alt="" border="0" class="centered" /></p>
<h1>Running AMPPS</h1>
<p>To run AMPPS, simply enter <span class="i1">localhost/ampps</span> into your browser&#8217;s URL field.</p>
<p>AMPPS presents you with a rich set of options for script installations: PHP, javascript, and Perl (ok, there is only one application under Perl &#8211; Movable Type)</p>
<p>You can choose various applications to install from the left hand side (boxed in RED).</p>
<p>There is a menu bar in the top right (boxed in GREEN).</p>
<p>In the center are presented various options and information (boxed in BLUE).</p>
<p>Near the top left, you can select which script packages you are interested in (boxed in YELLOW).</p>
<p><a href="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-15-large.png" target="_blank"><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2011/10/installing-ampps-1.2-15-thumb.png" alt="" border="0" class="centered"/></a><br />
</p>
<p>The post <a href="https://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts/">Installing AMPPS &#8211; Apache Server, MySql, PHP, Perl with Installation Scripts</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://complete-concrete-concise.com/web-tools/installing-ampps-apache-server-mysql-php-perl-with-installation-scripts/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
