Monthly Archives: December 2015

Go from WordPress Beginner to Pro!

WordPress is the most popular website content management system and blogging software available today. It now powers 25% of all websites on the internet! WPMU DEV is a resource where you can get tools and support to make great WordPress websites. The team at Eclarian found that staying instep with WPMU DEV helps us solve pretty much any WordPress [...]

Go from WordPress Beginner to Pro!2015-12-10T16:07:25-05:00

Batch Resize Images from Command Line

Quick tip if you need to batch resize a number of photos from the command line: Step #1: Install ImageMagick Step #2: Run the following script, replacing the brackets with the actual paths. This will resize to 1024px wide and auto-resize the height in ratio. mogrify -resize 1024 -quality 100 -path [full path to new file folder] [...]

Batch Resize Images from Command Line2015-12-08T16:40:29-05:00

Change File and Folder Permissions for WordPress

Sometimes copying files produces the wrong file permissions on the server. These two commands will get the majority of your files and folders back to where they need to be. You’ll also need to update the .htaccess and probably the updates folder with more restrictive permissions. cd ~/public_html chmod -R 0755 * chmod 0644 $(find . ! [...]

Change File and Folder Permissions for WordPress2015-12-08T16:39:57-05:00