MySQL: 5.6 minimum, a recent version is recommended. Server RAM: The more the merrier. We recommend setting the memory allocation per script (memorylimit) to a minimum of 256M. PrestaShop can also work with Nginx 1.0 or later. How to verify your server meets PrestaShop’s requirements. XAMPP is a free distribution package that makes it easy to install Apache Web Server, PHP, PEAR, and MySQL. Before installing XAMPP, you should turn off any other web servers and instances of MySQL you have running on your Mac. Installing XAMPP on a Mac. Download XAMPP for Mac OSX - Be sure to select the proper version of PHP. XAMPP 1.7.3 is installed in the /xampp folder. It was the first one I installed and I used the default directory, for the other installs, I changed the installation directory. 2) Rename the Start Menu entry after each install. XAMPP 1.7.3 gets a menu entry called XAMPP for Windows, but XAMPP 1.7.4 and 1.7.7 create a Start Menu entry of Apache. Cara Download dan Install XAMPP di Windows - XAMPP adalah salah satu tool untuk membuat Web Server sangat mudah. XAMPP dapat compatible dengan 4 OS lainnya, makanya di sebut XAMP. Apa itu XAMPP? XAMPP adalah singkatan dari X = 4 ( Mendukung 4 Operasi Sistem ), A = Apache, M = MySQL, P=PHP, dan P=Perl.
These instructions are for XAMPP 1.7.3 running on Windows XP.
They should be similar for other configuration combinations, but no guarantee is made.
These instructions should also work for an Apache Server install that is not part of a XAMPP install (specific details regarding file locations and restarting of the Apache Server will differ).
NOTE: XAMPP 1.7.4 and XAMPP 1.7.7 display misleading port information in the XAMPP Control Panel.
Regardless of which port you specify Apache to listen to, the XAMPP Control Panel will always display:
Apache started [Port 80]
This is WRONG!!!! This is a HARDCODED string in XAMPP 1.7.4 and 1.7.7. It does not reflect the actual port Apache is listening to.
Yet another reason why you should not be using XAMPP 1.7.4 or 1.7.7.
By default, Apache Server listens on port 80, but this can be changed.
Why Change the Port?
Perhaps certain ports are blocked by your network admin or ISP (although, I would not recommend running XAMPP as a publicly accessible server).
Perhaps port 80 is already being used by some other application (like IIS) and you don’t want to or are not allowed to shut it down or change it.
Apache Server is not starting and you are using XAMPP 1.7.4 (I recommend XAMPP 1.7.3). XAMPP 1.7.4 removed a useful port debugging tool, so changing the Apache Server port is one way of checking to see if you have a port conflict – change the port and if Apache Server starts working, then you know some other application is using port 80. You should try several ports, just in case you are lucky and manage to pick ports used by other applications. Some ports to try are 2375, 4173, 5107, 9260, 20010 – these ports, among others, are all listed as unassigned (but that doesn’t mean someone else isn’t using them).
How to Change the Port
Masalah Mysql Di Xampp 1.7.3 For Mac Windows 7
Edit the httpd.conf file to change the port Apache listens on.
(1) Locate the file httpd.conf. This file should be found in C:xamppapacheconf (or whichever directory you installed XAMPP in – mine is on my D-drive because that is where I installed XAMPP).
(2) Open the file using a text editor or programmer’s editor (I use notepad++). DO NOT use a word processor (like Word) to open the file, it will badly mess it up.
(3a) Locate the line that says Listen 80
. It is line #47 in the XAMPP 1.7.3 install.
(3b) Change the port number (80) to a different number (for this tutorial, I changed it to 1234).
(3c) Save the file.
(4) Restart the Apache Server to have the change take effect. Do this by clicking on the Stop button on the XAMPP control panel and then clicking on the Start button. (You could also just reboot the computer, but that is overkill).
When you connect to the Apache Server, you will have to append the port number to the URL. Previously where you typed localhost, you will now have to type localhost:1234 (or whatever your new port number is):
Note: in Microsoft Internet Explorer 8 (IE8), it is necessary to prepend the prefix http:// before localhost: localhost:1234 will not work, it must be http://localhost:1234.
Masalah Mysql Di Xampp 1.7.3 For Mac 64-bit
I did not observe this with Firefox 4.0 – entering localhost:1234 worked just fine (the browser was able to resolve the address as http://localhost:1234).
Masalah Mysql Di Xampp 1.7.3 For Mac Os
Second note: this is not a bug in IE8 – as a convenience, browsers automatically try to fixup URLs for you. Technically, you ARE required to type http:// before every URL you type in.