Xampp Download For Mac Mojave



Mac is inizialized and it's wait for downloading Mojave SO. I ask for your help. In an attempt to update the S O I was forced to initialize the Mac and give it from the Utility menu, the Reinstall. The Mojave installation mask appears but I can't install it. Start downloading then inexorably freezes at 3%. More than 5 hours for Download. These packages contain Moodle plus all the other software needed to make it run on a Mac: Apache, MySQL and PHP. They are built using MAMP. See the documentation Installation Package for OS X for details. The packages are built and maintained by Ralf Krause. In this tutorial we will learn to install Apache, MySQL, PHP on macOS Mojave 10.14. Apple released the new macOS Mojave 10.14 on 24th September 2018 and it includes Apache and PHP. We will be using the pre-installed Apache and PHP and we will download and setup MySQL database.

Finding your XAMPP Files. After you run the download, you will have a XAMPP folder in your Mac Applications. Click that folder and you will see a application called manager-osx, the logo is a gear in a bubble, open it. 17 Best Alternatives of Xampp Server:- Xampp is an open source application that is primarily used for testing. Programmers can develop a local web server using Xampp. Xampp is equally compatible with operating systems like Linux, Microsoft Windows and Mac as well.

Requirements

  • PHP >= 7.0.0
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

Laravel 5.7 requires PHP version 7.1.3 or more, and some other extensions. Since we are doing setup on XAMPP. Make sure to Install the XAMPP with version >= 7.2.0 .

Install XAMPP

First of all we need to download and install XAMPP. Download it from the apache friends official website. Download the XAMPP version > 7.2.0. Download the version for OSX (Mac).

Follow the steps to install the XAMPP. If you are on MAC, the install location for XAMPP will be /Applications/XAMPP.

Once the XAMPP is Installed, you should be able to access the XAMPP Console from where you can start or stop the necessary services.

If you XAMPP is installed correctly and if you have the apache service running under it, you should see the following page when you access localhost on your browser.

Composer

After you have downloaded XAMPP, We need to install Composer.

Xampp For Mac Os X

Composer is a dependency management or package management tool which is integrated with Laravel Framework. Check by running composer command in your terminal if your system has composer already installed in it. If not you can install it by following the steps for OSX (Installing Composer on OSX )

Install Laravel Framework

The default directory of XAMPP for installing or keeping PHP project is htdocs. Navigate to following directory in your terminal /Applications/XAMPP/htdocs and run following composer command to create a fresh Laravel 5.5 version

composer create-project laravel/laravel myProject '5.5.*'

After running this command composer should start downloading dependencies that are required to create the Laravel project.

–More downloading–

When it finishes it will create a Laravel 5.5 project with following data structure.

Xampp Download For Mac Mojave

Modify Directory Permissions

In the newly created Laravel Project we need to modify the directory permissions of certain directory otherwise we will get following error on accessing the project

The stream or file “laravel.log” could not be opened: failed to open stream: Permission denied.

  • cd into your Laravel project.
  • sudo chmod -R 777 storage
  • sudo chmod -R 777 bootstrap/cache

XAMPP Virtual Host

Download Mac Os Mojave App

We need to configure XAMPP Virtual Host to set the document root to correct directory of laravel project and to also assign a name to the project by which we will be accessing it in browser.

Navigate and open file /Applications/XAMPP/etc/httpd.conf file and uncomment the line that includes the virtual host file.

Xampp for mac


# Virtual hosts
Include etc/extra/httpd-vhosts.conf

Navigate and open file /Applications/XAMPP/etc/extra/httpd-vhosts.conf and include following Virtual host entry in this file.

With this entry our apache is listening to laravel.local, but we also have to edit our hosts file to include an entry for the new domain.

Edit file /etc/hosts and add following entry to that file. Chrome for mac 10.6 8 free download.

127.0.0.1 laravel.local

Restart your apache and access laravel.local on your browser you should be able to see this screen.

Success !

Xampp

Related Articles