-
Admin Controller and View with CakePHP3 bake
Example Commands bin/cake bake model pages && bin/cake bake controller –prefix admin pages && bin/cake bake template –prefix admin pages bin/cake bake model settings && bin/cake bake controller –prefix admin settings && bin/cake bake template –prefix admin settings bin/cake bake model articles && bin/cake bake controller –prefix admin articles && bin/cake bake template –prefix admin […]
-
Make Zurb 6 work better in IE8
Add the following just before the closing</head> of your page. <!–[if lt IE 9]> <script src=”//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js”></script> <script src=”//s3.amazonaws.com/nwapi/nwmatcher/nwmatcher-1.2.5-min.js”></script> <script src=”//html5base.googlecode.com/svn-history/r38/trunk/js/selectivizr-1.0.3b.js”></script> <script src=”//cdnjs.cloudflare.com/ajax/libs/respond.js/1.1.0/respond.min.js”></script> <link rel=”stylesheet” href=”css/ie8.css” /> <![endif]–> The ie8.css file is optional but there will be some changes you will need to make.
-
Setting up WordPress
Download and install WordPress Go to wordpress.org/download Transfer the WordPress files to your local host Open MAMP and turn on the servers Go to Applications/MAMP/htdocs Create a new folder called ‘My WordPress’ and transfer the downloaded files into this folder Create database In your browser, go to localhost/phpMyAdmin Open the ‘database’ tab and create a […]
-
Setting up a Local Domain
MAMP Before attempting to setup a local domain ensure MAMP has the following setting: Ports Apache 80 Nginx 7888 MySQL 3306 Web Server Server Apache Document Root Applications/MAMP//htdocs (or personal preference) Local Domains Create the local URL you want to use Go to Macintosh HD/private/etc/hosts At the bottom add…. 127.0.0.1 example.ld Save file Ensure Virtual […]
-
Install, Remove, or Repair Spotify on Ubuntu
Install # 1. Add the Spotify repository signing key to be able to verify downloaded packages sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 # 2. Add the Spotify repository echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list # 3. Update list of available packages sudo apt-get update # 4. Install Spotify sudo apt-get install […]
-
Correct WordPress Folder & File Permissions
In terminal, use the following code to set the file and folder permissions: chown www-data:www-data -R * # Let apache be owner find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x find . -type f -exec chmod 644 {} \; # Change file permissions rw-r–r– source: http://stackoverflow.com/questions/18352682/correct-file-permissions-for-wordpress
-
Setting Up email With Rackspace
DNS Settings http://www.rackspace.com/knowledge_center/article/set-up-dns-records-for-cloud-office-email-and-skype-for-business#MX Email Setup Wizard – Perfect for Clients https://emailhelp.rackspace.com/
-
Disable product tags magento
Log into the Magento Admin Panel Go to System->Configuration In the Left side menu pane choose “Advanced” under the “Advanced” heading Find “Mage_Tag” in the list of modules and select Disable Click Save Config
-
Change the Default welcome Message in Magento 1.9.2
Log into the Magento Admin Panel Go to System->Configuration In the Left side menu pane choose “Design” under the “General” heading Select “Header” in the body of the page Find “Welcome Text“, it should say Default welcome msg! Type in the new message or delete the content to remove Click Save Config