Difference between revisions of "Wordpress"

From mi-linux
Jump to navigationJump to search
Line 35: Line 35:
  
 
== Add themes via FTP ==
 
== Add themes via FTP ==
 +
 +
Let's install a new theme.
 +
 +
# Download a theme from [http://wordpress.org/themes/ http://wordpress.org/themes/]
 +
# Unzip the file using 7-Zip or similar
 +
# Upload the folder to your ''wordpress/wp-content/themes'' folder (on the server)
 +
# Make the folder and all sub-folder writable and executable by all
 +
# Also make sure that you only have one sub-folder, so for example the plugin should be stored in ''wordpress/wp-content/themes/destro'', NOT ''wordpress/wp-content/themes/destro/destro''

Revision as of 14:08, 5 February 2014

Unfortunatly the "upload" setting is switched off at server level for security reasons. This means that uploading media, plugins and themes to Wordpress is not possible via the Dashboard interface. There are ways to achieve this via FTP.

Adding plugins via FTP

Let's install a plugins from the Wordpress Plugin Directory

  1. Choose a plugin, for example Amazon Link
  2. Download the zip file
  3. Unzip the file using 7-Zip or similar
  4. Upload the unzipped folder via FTP to your wordpress/wp-content/plugins folder
  5. Make the folder and all sub-folder writable and executable by all
  6. Also make sure that you only have one sub-folder, so for example the plugin should be stored in wordpress/wp-content/plugins/amazon-link, NOT wordpress/wp-content/plugins/amazon-link/amazon-link
  7. Go to your website's dashboard, plugins section. The plugin should now be listed. Activate it.

Adding media via FTP

Install Add From Server plugin

  1. Download this plugin: http://wordpress.org/plugins/add-from-server/
  2. Install the plugin (see previous section)

Use Add From Server plugin to add media

  1. Create a new temporary folder for your media (on the server), for example wordpress/wp-content/media
  2. Create a new permanent folder for your media (on the server) called wordpress/wp-content/uploads
  3. Make sure that the 2 folders above has read/write/execute rights for everyone
  4. Upload your media (for example an image) via FTP to the media folder (specified in step 1)
  5. Make sure that the file above has read permissions for everyone
  6. Go to your dashboard, plugins section, and click on "Import files" under the "Add From Server" entry.
  7. Select the folder to import media from (created in step 1 - in our case media)
  8. Select the file to be imported into your library (uploaded in step 4).
  9. Press the import button. This will move the file from the temporary folder (step 1) to the permanent folder (step 2) and add it to your media library.

Now when browsing to Dashboard/Media, you should see your image listed.

Add themes via FTP

Let's install a new theme.

  1. Download a theme from http://wordpress.org/themes/
  2. Unzip the file using 7-Zip or similar
  3. Upload the folder to your wordpress/wp-content/themes folder (on the server)
  4. Make the folder and all sub-folder writable and executable by all
  5. Also make sure that you only have one sub-folder, so for example the plugin should be stored in wordpress/wp-content/themes/destro, NOT wordpress/wp-content/themes/destro/destro