CRM Installation macOS Sequoia

Hi All,

Can anyone advise me how to download CRM in macOS Sequoia? I tried for a few days now, but it does not work. I checked the installation guide and download the requirements. However, I always ended up getting errors and warnings. I remove everything now from my laptop and hope to start from afresh. Can you anyone provide step by step guide? Thanks you so much!

Tell me what steps you followed. Did you install apache. php. php packages, mysql, and composer on your MacOS?


Install Homebrew

/bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)”

brew update

Install Apache Web Server

brew install httpd

Start the Apache service

sudo apachectl start

Check if Apache is running by visiting http://localhost in your browser

SuiteCRM 8.8 requires PHP 8.1 or higher

Install PHP

brew install php

Installed required PHP packages and restart apache.

Install MySQL

brew install mysql

Start MySQL

brew services start mysql

Secure the MySQL installation

mysql_secure_installation

Log in to MySQL to check that it is working

mysql -u root -p

Install Composer

brew install composer

Download SuiteCRM 8.8

Set Up the SuiteCRM Directory

sudo mv suitecrm /usr/local/var/www/suitecrm

sudo chown -R $(whoami):staff /usr/local/var/www/suitecrm

Update Apche

sudo nano /etc/apache2/httpd.conf

Ensure that these lines are uncommented

LoadModule php_module libexec/apache2/libphp.so
Include /private/etc/apache2/extra/httpd-vhosts.conf

set up a virtual host

sudo nano /etc/apache2/extra/httpd-vhosts.conf

Add this to the file

<VirtualHost *:80>
    DocumentRoot "/usr/local/var/www/suitecrm"
    ServerName suitecrm.local
    <Directory "/usr/local/var/www/suitecrm">
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

Add the following line to your /etc/hosts file to point suitecrm.local to localhost

sudo nano /etc/hosts

Add this line:
127.0.0.1 suitecrm.local

Apache restart

sudo apachectl restart

you should be able to access SuiteCRM from your browser

http://suitecrm.local

I hope this will work. :hand_with_index_finger_and_thumb_crossed: