PlutoEdit Documentation

It's not even a planet anymore

Current version: 0.7b
Homepage: http://raven-seo-tools.com/pluto-edit/

Requirements

Installation

  1. Copy all files to your server (including the hidden .htaccess file)
  2. Open config.php and set PE_PATH to the PlutoEdit directory
    e.g. If you installed PlutoEdit to a directory accessible at http://www.example.com/blog/plutoedit/, then the line in config.php should read:
    define('PE_PATH', '/blog/plutoedit/');
    Note the leading and trailing slashes
  3. Open .htaccess and set the RewriteBase to be the same as PE_PATH from above.
    e.g. RewriteBase /blog/plutoedit/
  4. Make the temp folder writeable by your web server (used as temporary storage for file uploads)
    chmod 777 temp

Blog Configuration

Adding your blogs to the config.php file requires setting the following parameters for each blog:

Configuring multiple blogs

Uncomment the block of text in config.php for the second blog and set the parameters. Duplicate this block (including the $i++ line) to add additional blogs

Each blog should have its entry similar to the following code:

$i++;
$Blogs[$i]['server'] = "example.com";
$Blogs[$i]['endpoint'] = "/blog/xmlrpc.php";
$Blogs[$i]['username'] = "username";
$Blogs[$i]['password'] = "password";
$Blogs[$i]['name'] = "Title of my blog";
$Blogs[$i]['wysiwyg'] = true;

Need Help?

Use the auto-config wizard included in the distribution.

That's it!

You should be all set. Navigate your web browser to the directory where you installed PlutoEdit.

Login with the credentials from the first blog listed in your config.php file.