osx capitan installation problems

Hi,

I'm trying to setup a developer environment for OSX Capitan following this guide and I ran into some trouble with the installation of Sugar 7.6.

I managed to go through the setup wizard, so the system passed all the checks for php version, database, permissions, ...

This is what I it looks like now:

1. On the browser I get a bunch of Strict Standard errors and the Loading... message (see Screenshot1)

2. I get some errors in the JavaScript console (see Screenshot2)

3. I also attached the output of php --info

4. Here is my .htaccess:

# BEGIN SUGARCRM RESTRICTIONS

RedirectMatch 403 (?i).*\.log$

RedirectMatch 403 (?i)/+not_imported_.*\.txt

RedirectMatch 403 (?i)/+(soap|cache|xtemplate|data|examples|include|log4php|metadata|modules)/+.*\.(php|tpl)

RedirectMatch 403 (?i)/+emailmandelivery\.php

RedirectMatch 403 (?i)/+upload/

RedirectMatch 403 (?i)/+custom/+blowfish

RedirectMatch 403 (?i)/+cache/+diagnostic

RedirectMatch 403 (?i)/+files\.md5$

RedirectMatch 403 (?i)/+composer\.(json|lock)

RedirectMatch 403 (?i)/+vendor/composer/

RedirectMatch 403 (?i).*/\.git

 

# Fix mimetype for logo.svg (SP-1395)

AddType     image/svg+xml     .svg

AddType     application/json  .json

AddType     application/javascript  .js

 

<IfModule mod_rewrite.c>

    Options +FollowSymLinks

    RewriteEngine On

    RewriteBase /~adrian/sugar

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^rest/(.*)$ api/rest.php?__sugar_url=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^cache/api/metadata/lang_(.._..)_(.*)_public(_ordered)?\.json$ rest/v10/lang/public/$1?platform=$2&ordered=$3 [N,QSA,DPI]

 

    RewriteRule ^cache/api/metadata/lang_(.._..)_([^_]*)(_ordered)?\.json$ rest/v10/lang/$1?platform=$2&ordered=$3 [N,QSA,DPI]

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^cache/Expressions/functions_cache(_debug)?.js$ rest/v10/ExpressionEngine/functions?debug=$1 [N,QSA,DPI]

    RewriteRule ^cache/jsLanguage/(.._..).js$ index.php?entryPoint=jslang&module=app_strings&lang=$1 [L,QSA,DPI]

    RewriteRule ^cache/jsLanguage/(\w*)/(.._..).js$ index.php?entryPoint=jslang&module=$1&lang=$2 [L,QSA,DPI]

    RewriteRule ^portal/(.*)$ portal2/$1 [L,QSA]

    RewriteRule ^portal$ portal/? [R=301,L]

</IfModule>

 

<IfModule mod_mime.c>

    AddType application/x-font-woff .woff

</IfModule>

<FilesMatch "\.(jpg|png|gif|js|css|ico|woff|svg)$">

        <IfModule mod_headers.c>

                Header set ETag ""

                Header set Cache-Control "max-age=2592000"

                Header set Expires "01 Jan 2112 00:00:00 GMT"

        </IfModule>

</FilesMatch>

<IfModule mod_expires.c>

        ExpiresByType text/css "access plus 1 month"

        ExpiresByType text/javascript "access plus 1 month"

        ExpiresByType application/x-javascript "access plus 1 month"

        ExpiresByType image/gif "access plus 1 month"

        ExpiresByType image/jpg "access plus 1 month"

        ExpiresByType image/png "access plus 1 month"

        ExpiresByType application/x-font-woff "access plus 1 month"

        ExpiresByType image/svg "access plus 1 month"

</IfModule>

# END SUGARCRM RESTRICTIONS

 

I'm hoping someone can help me with this, I have no idea how to go from here.

Thanks!

1581._phpinfo.zip