NOTE: I want disclaimer that this work is not complete mine. Most of the work here is comming from: https://dhwaneetbhatt.com/blog/run-docker-without-docker-desktop-on-macos
$ brew doctor
$ brew update
NOTE: I want disclaimer that this work is not complete mine. Most of the work here is comming from: https://dhwaneetbhatt.com/blog/run-docker-without-docker-desktop-on-macos
$ brew doctor
$ brew update
<?php | |
//xdebug_break(); | |
if (!defined('sugarEntry') || !sugarEntry) die ('Not a Valid Entry Point!'); | |
$date= new DateTime(); | |
//chdir('/opt/bitnami/apps/suitecrm/htdocs/'); | |
echo 'School Importer started at '; | |
echo $date->format('r').'<br>'; | |
echo '-------------------------------------------------------------------------------------------------------------------------------------<br>'; |
The following apache and nginx configurations will handle compression and browser caching. A few different WordPress plugins can be used for asset minification.
mod-pagespeed may be available for configuration as an apache or nginx module. If available, there's no need to use the individual apache or nginx configurations. Mod-pagespeed will handle compression and browser caching, making the apache and nginx configurations unnecessary. The WordPress plugins are still needed for asset minification as they ensure assets are loaded in the proper order once minified.
Image optimization should be done using the EWWW Image Optimizer plugin.
Securing WordPress using a combination of configuration changes and plugins.
wp-config.php
<?php | |
/* ====================================================== | |
This script is NOT FULLY TESTED (not tested on Windows Server either) | |
USE AT YOUR OWN RISK - development environment Ubuntu Linux 14.04.3 LTS | |
The purpose of this script is for small websites and blogs | |
to have their existing media to work through Amazon S3 | |
There's a great plugin, WP Offload S3, that we'll be tapping | |
into...it works great for new media, but this is a quick |