This procedure is tested on Mac OS X 10.10.5 with Developpers tools installed (xCode).
PHP 5.6 installed with Homebrew.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
| MySQL Operations | |
| -------------------------------------- | |
| In this document: | |
| - Export/Import DB | |
| - Export/Import Table from DB | |
| - mysqladmin | |
| - Repair DB | |
| -------------------------------------- | |
| # Optimized my.cnf configuration for MySQL/MariaSQL | |
| # | |
| # by Fotis Evangelou, developer of Engintron (engintron.com) | |
| # | |
| # ~ Updated January 2020 ~ | |
| # | |
| # | |
| # The settings provided below are a starting point for a 2GB - 4GB RAM server with 2-4 CPU cores. | |
| # If you have different resources available you should adjust accordingly to save CPU, RAM & disk I/O usage. | |
| # |
This procedure is tested on Mac OS X 10.10.5 with Developpers tools installed (xCode).
PHP 5.6 installed with Homebrew.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| /* | |
| # Install from the link: | |
| https://userstyles.org/styles/139786/facebook-photo-blur-in-news-feed | |
| */ | |
| @-moz-document domain("www.facebook.com"), domain("web.facebook.com") { | |
| div[id*="feed_stream"] a[target="_blank"] img, | |
| div[id*="feed_stream"] a[href*="photo"] img, |
| <?php | |
| namespace Acme\PeopleSoftBundle\Listener; | |
| use Doctrine\DBAL\Event\ConnectionEventArgs; | |
| use Doctrine\DBAL\Events; | |
| use Doctrine\Common\EventSubscriber; | |
| /** | |
| * Changes Doctrine's default Oracle-specific column type mapping to Doctrine |
This procedure is tested on Mac OS X 10.8 with Developpers tools installed (xCode).
Download the following files from Oracle website (yes, you need to create an account and accept terms):
| # Default backend definition. Set this to point to your content server. | |
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "8080"; | |
| .connect_timeout = 60s; | |
| .first_byte_timeout = 60s; | |
| .between_bytes_timeout = 60s; | |
| .max_connections = 800; | |
| } |