Plugin Directory

Changeset 701992

Timestamp:
04/23/2013 06:15:53 AM (11 years ago)
Author:
mbijon
Message:

Update for tag to v0.7.1

Location:
hosting-monitor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • hosting-monitor/trunk/hosting-monitor.php

    r469734 r701992  
    33Plugin Name: Hosting Monitor
    44Plugin URI: http://wordpress.org/extend/plugins/hosting-monitor/
    5 Description: Displays server resources used by WordPress in a metabox on the WordPress Dashboard.
    6 Author: Alive Media Web Development
    7 Version: 0.6.1
    8 Author URI: http://www.alivemediadev.com
    9 License: GPLv2 or later
    10 
    11 */
    12 
    13 /*
     5Description: Displays server storage used by WordPress on the WP-Admin Dashboard
     6Author: Alive Media Web Development and Mike Bijon
     7Version: 0.7.1
     8Author URI: http://www.mbijon.com
     9License: GPLv2 or later
     10
     11
    1412Copyright 2011 by Mike Bijon (email: mike@etchsoftware.com) and Ryan Dawson (email: ryan@alivemediadev.com), sharing equal-rights
    1513
    16 This is Version 0.6.1 as of 11/30/2011
    17 
    18     'Hosting Monitor' plugin for WordPress is free software; you can
     14This is Version 0.
     15
     16    'Hosting Monitor' plugin for WordPress is free software; you can
    1917    redistribute it and/or modify it under the terms of the GNU General
    2018    Public License, version 2, as published by the Free Software Foundation.
     
    3533  Disk Space Pie Chart is Copyright 2009-2010 by Jay Versluis
    3634  (email : versluis2000@yahoo.com) http://wpguru.co.uk
    37  
    38   Wherever third party code has been used, credit has been given in the code's
    39   comments (indicated by %%).
    40  
     35  No license file included - implied GPLv2 from inclusion in Wordpress.org Plugin repository
     36
    4137*/
    4238
    4339/*
    4440 * Hook for adding Dashboard menu
    45  *
    46  * %%Entire method from Disk Space Pie Chart (DSPC)
    4741 *
    4842 */
    49 add_action('admin_menu', 'hostm_pages');
     43add_action( 'admin_menu', 'hostm_pages' );
     44
    5045
    5146// Add our submenu under Dashboard item in WP-Admin
    5247function hostm_pages() {
    5348    global $hostm_admin_page;
    54     $hostm_admin_page = add_management_page('Hosting Monitor', 'Hosting Monitor', 'manage_options', 'hosting-monitor-admin', 'hosting_monitor');
     49   
     50    $hostm_admin_page = add_management_page(
     51                'Hosting Monitor',
     52                'Hosting Monitor',
     53                'manage_options',
     54                'hosting-monitor-admin',
     55                'hosting_monitor'
     56                );
    5557   
    5658    // Add contextual help menu in wp-admin
    57     add_action("load-$hostm_admin_page", 'hostm_add_help_menu');
     59    add_action();
    5860}
    5961
     
    6365 * Set to GB for first-time user
    6466 * @since 0.4
    65  *
    66  * %%Entire method from Disk Space Pie Chart (DSPC)
    6767 *
    6868 */
    69 if ( !get_option('guru_unit') ) {
    70     update_option ('guru_unit', 'GB');
     69if ( !) ) {
     70    update_option);
    7171}
    7272
     
    7575 * Save options from update action
    7676 * This is called by hosting_monitor() after successful nonce-check
    77  *
    78  * %%Mixed code, new & from Disk Space Pie Chart (DSPC)
    7977 *
    8078 */
     
    9290   
    9391    // Read & sanitize(!) user-posted values
    94     $opt_val = intval($_POST[ $data_field_name ]);
    95     $opt_val_db = intval($_POST[ $data_field_name_db ]);
    96     $opt_val2 = sanitize_text_field($_POST[ $data_field_name2 ]);
    97     $opt_val_db2 = sanitize_text_field($_POST[ $data_field_name_db2 ]);
     92    $opt_val = intval();
     93    $opt_val_db = intval();
     94    $opt_val2 = sanitize_text_field();
     95    $opt_val_db2 = sanitize_text_field();
    9896
    9997    // Save the posted values
     
    121119   
    122120    // Check that the user has the required capability
    123     if ( !current_user_can('manage_options') ) {
    124         wp_die( __('You do not have sufficient permissions to access this page.', 'hostm_plugin') );
     121    if ( !) ) {
     122        wp_die( __() );
    125123    }
    126124   
    127125    // Check WP nonce to prevent external use
    128126    $update_confirm = NULL;
    129     if ( !empty($_POST) && check_admin_referer('hosting_monitor_admin_options', 'hosting_monitor_nonce') ) {
     127    if ( !) ) {
    130128        $update_confirm = update_hosting_monitor_options();
    131     } elseif ( !empty($_POST) ) {
    132         wp_die( __('Invalid action performed. Please check your login and try again.', 'hostm_plugin') );
     129    } elseif ( !) ) {
     130        wp_die( __() );
    133131    }
    134132   
     
    143141    $data_field_name_db2 = 'hm_db_unit';
    144142   
    145     // Read in existing option values from database
     143    // R existing option values from database
    146144    $opt_val = get_option( $opt_name, false ); // Explicitly set false
    147     // %%DSPC end
     145   
    148146    // Set default space textbox to "0", so can tell if user is new or has Unlimited
    149147    $opt_val = ( $opt_val === false ? "0" : $opt_val );
    150148   
    151149    $opt_val_db = get_option( $opt_name_db, false ); // Explicitly set false
     150
    152151    // Set default space textbox to "0", so can tell if user is new or has Unlimited
    153152    $opt_val_db = ( $opt_val_db === false ? "0" : $opt_val_db );
    154     // %%DSPC old begin
     153    //
    155154   
    156155    // Units: TB, GB, or MB
     
    161160    switch ( $opt_val2 ) { // DISK
    162161        case 'TB':
    163             $spacecalc = 1024 * 1024 * 1024;
     162            $spacecalc = ;
    164163            break;
    165164        case 'GB':
    166             $spacecalc = 1024 * 1024;
     165            $spacecalc = ;
    167166            break;
    168167        default:
     
    172171    switch ( $opt_val_db2 ) { // DB
    173172        case 'TB':
    174             $spacecalc_db = 1024 * 1024 * 1024;
     173            $spacecalc_db = ;
    175174            break;
    176175        case 'GB':
    177             $spacecalc_db = 1024 * 1024;
     176            $spacecalc_db = ;
    178177            break;
    179178        default:
     
    183182    // Report status of options update
    184183    if ( $update_confirm === true ) {
    185         // Success message
    186         _e('<div class="updated"><p><strong>Your settings have been saved.</strong></p></div>', 'hostm_plugin');
     184        _e( '<div class="updated"><p><strong>Your settings have been saved.</strong></p></div>', 'hostm_plugin' ); // Success
    187185    }
    188186   
     
    193191    echo "<h2>" . __( 'Hosting Monitor', 'hostm_plugin' ) . "</h2>";
    194192   
    195     // Render Settings form
     193    // Render Settings form
    196194    ?>
    197195   
    198196    <form name="hosting_monitor_form" method="post" action="">
    199197        <p>
    200             <?php _e("Disk space:", 'hostm_plugin' ); ?>
     198            <?php _e(, 'hostm_plugin' ); ?>
    201199            <input type="text" name="<?php echo $data_field_name; ?>" value="<?php echo $opt_val; ?>" size="5">
    202200            &nbsp;
     
    210208        </p>
    211209        <p>
    212             <?php _e("Database space:", 'hostm_plugin' ); ?>
     210            <?php _e(, 'hostm_plugin' ); ?>
    213211            <input type="text" name="<?php echo $data_field_name_db; ?>" value="<?php echo $opt_val_db; ?>" size="5">
    214212            &nbsp;
     
    219217            </select>
    220218        </p>
     219
     220
     221
     222
     223
     224
     225
     226
    221227        <p class="submit">
    222         <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
     228        <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e() ?>" />
    223229        </p>
    224230        <?php
     
    233239   
    234240    <?php
    235     //-END- Settings form
     241    // Settings form
    236242   
    237243    /*
     
    241247     *
    242248     */
    243     function file_size_info($filesize) {
    244         $bytes = array('KB', 'KB', 'MB', 'GB', 'TB');
     249    function file_size_info() {
     250        $bytes = array();
    245251   
    246252        # values are always displayed
     
    250256        for ( $i = 0; $filesize > 1024; $i++ ) $filesize /= 1024;
    251257   
    252         $file_size_info['size'] = round($filesize,3);
     258        $file_size_info['size'] = round();
    253259        $file_size_info['type'] = $bytes[$i];
    254260   
     
    260266     * Calculate actual DB size
    261267     * Echoes DB size to screen, positioned using CSS
    262      *
    263      * %%Method from Disk Space Pie Chart (DSPC), updated w/ inputs
    264      *
    265268     *
    266269     * Default values translate to: 10 MB
     
    268271     */
    269272    function db_size( $opt_val_db = 10, $spacecalc_db = 1024 ) {
    270         $rows = mysql_query("SHOW table STATUS");
     273        $rows = mysql_query();
    271274        $dbsize = 0;
    272275       
    273         while ( $row = mysql_fetch_array($rows) ) {
     276        while ( $row = mysql_fetch_array() ) {
    274277            $dbsize += $row['Data_length'] + $row['Index_length'];
    275278        }
     
    282285            }
    283286       
    284         $dbsize = file_size_info($dbsize);
     287        $dbsize = file_size_info();
    285288       
    286289        return "{$dbsize ['size']} {$dbsize['type']}";
     
    289292    // Get local working directory (PWD)
    290293    // ### TODO msb 10-22-2011: Bad for Windows (use WP built-in folder vars)
    291     $output = substr(shell_exec('pwd'), 0, -9);
     294    $output = substr();
    292295    // Calculate actual disk space usage
    293     $usedspace = substr(shell_exec('du -s ' . $output),0,-(strlen($output)+1));
     296    $usedspace = substr();
    294297   
    295298    // Get storage space set by user
    296     $totalspace = ($opt_val * $spacecalc);
    297     $freespace = ($opt_val * $spacecalc) - $usedspace;
     299    $totalspace = ( $opt_val * $spacecalc );
     300    $freespace = ( $totalspace ) - $usedspace;
     301    $usedspace_percent = ( $totalspace != 0 ? round( ($usedspace / ( $totalspace / 100 ) ), 1 ) : 0 );
    298302   
    299303    // Calculate used space in chosen units
    300     $usedspace_units = ($usedspace / $spacecalc);
    301    
    302     if ( $usedspace_units < 1 ) $usedspace_units = round(($usedspace / $spacecalc), 3);
    303     else $usedspace_units = round(($usedspace / $spacecalc), 2);
     304    $usedspace_units = ();
     305   
     306    if ( $usedspace_units < 1 ) $usedspace_units = round();
     307    else $usedspace_units = round();
    304308   
    305309    ?>
     
    307311        <tr>
    308312            <td>
    309                 <img src="<?php echo plugins_url('includes/piechart.php?data=', __FILE__);
    310                 echo round( ($usedspace / ($totalspace / 100)), 1 ) . '*' . (100 - (round( ($usedspace / ($totalspace / 100)), 1 ))); ?>&label=Used Space*Free Space" />
     313                <img src="<?php echo plugins_url();
     314                echo ); ?>&label=Used Space*Free Space" />
    311315            </td>
    312316            <td>
     
    324328                // Disk space free
    325329                // ###TODO msb 10-25-2011: Handle negative values: 1) bigger alert, 2) change formatting on "- 23MB" text
    326                 echo round( ($freespace / $spacecalc), 2 ) . ' ' . $opt_val2; ?><br />
     330                if ( $usedspace_percent == 0 )
     331                    echo 'No free space (* Or not configured)';
     332                else
     333                    echo round( ( $freespace / $spacecalc ), 2 ) . ' ' . $opt_val2; ?><br />
    327334                <hr>
    328335                <?php echo db_size( $opt_val_db, $spacecalc_db ); ?><br />
     
    337344    <p>&nbsp;</p>
    338345   
    339     <!-- Begin old %%DSPC code -->
    340     <p>
    341         This plugin produced by: <a href="http://www.alivemediadev.com/">Alive Media Web Development</a> and <a href="http://www.etchsoftware.com/">Mike Bijon</a>
    342     </p>
    343     <p>
    344         Credits for included code:<br />
    345             <a href="http://wpguru.co.uk/2010/12/disk-space-pie-chart-plugin/" target="_blank">Disk Space by Jay Versluis</a> |
    346             <a href="http://www.peters1.dk/webtools/php/lagkage.php?sprog=en" target="_blank">Pie Chart Script by Rasmus Peters</a>
    347     </p>
     346    <div class="hosting-monitor-footer" style="background-color: #ccc;
     347                        position: relative;
     348                        bottom: 0;">
     349        <p>
     350            This plugin produced by: <a href="http://www.alivemediadev.com/">Alive Media Web Development</a>,
     351            &nbsp;and developed by: <a href="http://www.etchsoftware.com/">Mike Bijon</a>
     352        </p>
     353        <p>
     354            Credits for included code:<br />
     355                <a href="http://wpguru.co.uk/2010/12/disk-space-pie-chart-plugin/" target="_blank">Disk Space by Jay Versluis</a> |
     356                <a href="http://www.peters1.dk/webtools/php/lagkage.php?sprog=en" target="_blank">Pie Chart Script by Rasmus Peters</a>
     357        </p>
     358    </div>
    348359   
    349360    <?php
     
    352363/*
    353364 * Check server memory use
    354  *
    355  * %%Mixed code in class, both new & from Disk Space Pie Chart (DSPC)
    356  *   [[Noted in DSPC "original code from Memory Usage plugin"]]
    357365 *
    358366 */
     
    376384       
    377385        function check_limit() {
    378             $this->memory['limit'] = (int) ini_get('memory_limit') ;
     386            $this->memory['limit'] = (int) ini_get() ;
    379387        }
    380388       
     
    386394        function check_memory_usage() {
    387395           
    388             $this->memory['usage'] = function_exists('memory_get_usage') ? round(memory_get_usage() / 1024 / 1024, 2) : 0;
    389            
    390             if ( !empty($this->memory['usage']) && !empty($this->memory['limit']) ) {
    391                 $this->memory['percent'] = round ($this->memory['usage'] / $this->memory['limit'] * 100, 0);
     396            $this->memory['usage'] = function_exists() : 0;
     397           
     398            if ( !) ) {
     399                $this->memory['percent'] = round ();
    392400                $this->memory['color'] = '#21759B';
    393                 if ($this->memory['percent'] > 80) $this->memory['color'] = '#E66F00';
    394                 if ($this->memory['percent'] > 95) $this->memory['color'] = 'red';
     401                if () $this->memory['color'] = '#E66F00';
     402                if () $this->memory['color'] = 'red';
    395403            }       
    396404        }
     
    398406        /*
    399407         * Calculate DB size units
    400          *
    401          * %%Entire method from Disk Space Pie Chart (DSPC)
    402408         *
    403409         * ###TODO msb 10-24-2011 - De-duplicate!!! Copied from main plugin method hosting_monitor()
    404410         *
    405411         */
    406         function get_file_size_info($filesize) {
    407             $bytes = array('KB', 'KB', 'MB', 'GB', 'TB');
     412        function get_file_size_info() {
     413            $bytes = array();
    408414       
    409415            # values are always displayed
     
    413419            for ( $i = 0; $filesize > 1024; $i++ ) $filesize /= 1024;
    414420       
    415             $file_size_info['size'] = round($filesize,3);
     421            $file_size_info['size'] = round();
    416422            $file_size_info['type'] = $bytes[$i];
    417423       
     
    423429         * Calculate actual DB size
    424430         * Echoes DB size to screen, positioned using CSS
    425          *
    426          * %%Method from Disk Space Pie Chart (DSPC), updated w/ inputs
    427          *
    428431         *
    429432         * Default values translate to: 10 MB
     
    434437         */
    435438        function check_db_size( $opt_val_db = 10, $spacecalc_db = 1024 ) {
    436              $rows = mysql_query("SHOW table STATUS");
     439             $rows = mysql_query();
    437440             $dbsize = 0;
    438441             
    439              while ( $row = mysql_fetch_array($rows) ) {
     442             while ( $row = mysql_fetch_array() ) {
    440443                 $dbsize += $row['Data_length'] + $row['Index_length'];
    441444             }
     
    447450             }
    448451             
    449              $dbsize = $this->get_file_size_info($dbsize);
     452             $dbsize = $this->get_file_size_info();
    450453             
    451454             return "{$dbsize ['size']} {$dbsize['type']}";
     
    455458        /*
    456459         * Build & output the Dashboard metabox
    457          *
    458          * %%Mixed code, new & from Disk Space Pie Chart (DSPC)
    459460         *
    460461         */
    461462        function dashboard_output() {
    462463            $this->check_memory_usage();
    463             $this->memory['limit'] = empty($this->memory['limit']) ? __('N/A') : $this->memory['limit'] . __(' MByte');
    464             $this->memory['usage'] = empty($this->memory['usage']) ? __('N/A') : $this->memory['usage'] . __(' MByte');
     464            $this->memory['limit'] = empty() ? __('N/A') : $this->memory['limit'] . __(' MByte');
     465            $this->memory['usage'] = empty() ? __('N/A') : $this->memory['usage'] . __(' MByte');
    465466           
    466467            // check disk usage and pop into a variable
    467             $output = substr(shell_exec('pwd'), 0, -9);
    468             $usedspace = substr(shell_exec('du -s ' . $output), 0, -(strlen($output)+1));
     468            $output = substr();
     469            $usedspace = substr();
    469470           
    470471            // Get user settings
    471             $opt_val = get_option('guru_space', false); // Explicitly set false
    472             $opt_val_db = get_option('hm_db_space', false); // Explicitly set false
    473             $opt_val2 = get_option('guru_unit');
    474             $opt_val_db2 = get_option('hm_db_unit');
     472            $opt_val = get_option(); // Explicitly set false
     473            $opt_val_db = get_option(); // Explicitly set false
     474            $opt_val2 = get_option();
     475            $opt_val_db2 = get_option();
    475476           
    476477            // Decide which units to use for graph
    477478            switch ( $opt_val2 ) { // DISK
    478479                case 'TB':
    479                     $spacecalc = 1024 * 1024 * 1024;
     480                    $spacecalc = ;
    480481                    break;
    481482                case 'GB':
    482                     $spacecalc = 1024 * 1024;
     483                    $spacecalc = ;
    483484                    break;
    484485                default:
     
    487488            switch ( $opt_val_db2 ) { // DB
    488489                case 'TB':
    489                     $spacecalc_db = 1024 * 1024 * 1024;
     490                    $spacecalc_db = ;
    490491                    break;
    491492                case 'GB':
    492                     $spacecalc_db = 1024 * 1024;
     493                    $spacecalc_db = ;
    493494                    break;
    494495                default:
     
    497498           
    498499            // Calculate used space in chosen units
    499             $usedspace_units = ($usedspace / $spacecalc);
    500            
    501             if ( $usedspace_units < 1 ) $usedspace_units = round( ($usedspace / $spacecalc), 3 );
    502             else $usedspace_units = round( ($usedspace / $spacecalc), 2 );
     500            $usedspace_units = ();
     501           
     502            if ( $usedspace_units < 1 ) $usedspace_units = round( , 3 );
     503            else $usedspace_units = round( , 2 );
    503504           
    504505            // Get storage space set by user
     
    511512            }
    512513           
    513             // End %%DSPC
    514514            if ( $opt_val === false ) {
    515515                // Means user has not saved a config, prompt them if admin
    516                 if ( $hm_user_admin === true) {
     516                if ( $hm_user_admin === true) {
    517517                    $free_space_message = 'Setup not completed. Please <a href="tools.php?page=hosting-monitor-admin">Configure <em>Hosting Monitor</em></a> now';
    518518                }
     
    520520                // Zero is our save-default, assume unlimited space
    521521                $free_space_message  = "UNLIMITED";
    522                 if ( $hm_user_admin === true) $free_space_message .= $config_link;
     522                if ( $hm_user_admin === true) $free_space_message .= $config_link;
    523523            } else {
    524                 $free_space_message  = round(($freespace / $spacecalc), 2) . " " . $opt_val2;
    525                 if ( $hm_user_admin === true) $free_space_message .= $config_link;
     524                $free_space_message  = round() . " " . $opt_val2;
     525                if ( $hm_user_admin === true) $free_space_message .= $config_link;
    526526            }
    527             // Start old %%DSPC
    528527           
    529528           
     
    532531            <ul>   
    533532                <li>
    534                     <strong><?php _e('Disk Space Used'); ?></strong>: <span><?php echo $usedspace_units . " " . $opt_val2; ?> </span>
     533                    <strong><?php _e( 'Disk Space Used' ); ?></strong>: <span><?php
     534                        echo $usedspace_units . " " . $opt_val2; ?> </span>
    535535                    &nbsp;&nbsp;|&nbsp;&nbsp;
    536                     <strong><?php _e('Disk Space Free'); ?></strong>: <span><?php
    537                
    538                     // End %%DSPC
    539                     echo $free_space_message;
    540                     // Start old %%DSPC
    541                     ?></span>
     536                    <strong><?php _e( 'Disk Space Free' ); ?></strong>: <span><?php
     537                        echo $free_space_message; ?></span>
    542538                </li>
    543539            </ul>
     
    545541            <?php
    546542            // Display bar graph for storage-use %
    547             if (!empty($this->memory['percent'])) : ?>
     543            if () : ?>
    548544                <div class="progressbar">
    549545                <?php
    550                 // End %%DSPC code
    551                    
    552546                    ###TODO msb 10-22-2011: Remove inline styles
    553547                   
    554548                    // Calculate space usage % for later
    555549                    $space_usage = ($totalspace == 0) ? 0 : ($usedspace / ($totalspace / 100));
    556                    
    557                 // Start old %%DSPC code
    558550                ?>
    559551                    <div class="" style="height:2em;
     
    576568           
    577569            // Display DB space-used text, if admin
    578             if ( $hm_user_admin === true) {
     570            if ( $hm_user_admin === true) {
    579571                ?>
    580572                <ul>   
    581                     <li><strong><?php _e('Database Size'); ?></strong>: <span><?php
     573                    <li><strong><?php _e(); ?></strong>: <span><?php
    582574                        echo $this->check_db_size( $opt_val_db, $spacecalc_db ); ?></span></li>
    583575                </ul>
     
    589581         * Render Dashboard widget
    590582         *
    591          * %%Entire method from Disk Space Pie Chart (DSPC)
    592          *
    593583         */
    594584        function add_dashboard() {
    595             wp_add_dashboard_widget( 'wp_memory_dashboard', 'Hosting Monitor', array (&$this, 'dashboard_output') );
     585            wp_add_dashboard_widget( 'wp_memory_dashboard', 'Hosting Monitor', array) );
    596586        }
    597587       
     
    599589         * Output memory-use to footer
    600590         *
    601          * %%Entire method from Disk Space Pie Chart (DSPC)
    602          *
    603591         */
    604         function add_footer($content) {
     592        function add_footer() {
    605593            $this->check_memory_usage();
    606594           
     
    660648            $screen->add_help_tab( array(
    661649                'id'      => 'hostm_help_faq',
    662                 'title'   => __('Help & FAQ', 'hostm_plugin'),
     650                'title'   => __(),
    663651                'content' => $help_content_faq,
    664652            ));
    665653            $screen->add_help_tab( array(
    666654                'id'      => 'hostm_help_setup',
    667                 'title'   => __('Setup Help', 'hostm_plugin'),
     655                'title'   => __(),
    668656                'content' => $help_content_setup,
    669657            ));
     
    679667     * Loaded after all other plugins, so memory-use accurate
    680668     *
    681      * %%Hook from Disk Space Pie Chart (DSPC)
    682      *
    683669     */
    684670    add_action( 'plugins_loaded', create_function( '', '$memory = new wp_memory_usage();' ) );
  • hosting-monitor/trunk/readme.txt

    r471835 r701992  
    33Tags: disk space, shared hosting, web space, server monitor, visual tracking, alerts, overage, resources, storage
    44Requires at least: 3.0
    5 Tested up to: 3.3
    6 Stable tag: 0.6.2
     5Tested up to: 3.
     6Stable tag: 0.
    77
    88Track how much disk and database space WordPress is using.
     
    1313Hosting Monitor is an easy, visual way to track how much disk and database storage your WordPress site uses. Let users upload-away and keep an eye on storage without logging in to your hosting control panel or SSH.
    1414
    15 = Compatibility =
     15= Compatibility =
    1616* Works on both shared hosting plans and dedicated servers
    1717* Supports all Linux web servers and Apache on Windows. Windows IIS not currently supported
     
    6363== Screenshots ==
    6464
    65 These are what the Dashboard widget and the Admin Settings-page should look like:
    66 
    67651. Dashboard widget: See WordPress disk use & database size
    68662. Admin Tools page: View disk use & database size. Also configure storage settings here
     
    7169== Upgrade Notice ==
    7270
    73 = 0.6.1 =
    74 Smooth upgrade from 0.5.x versions. Just backup & use WordPress update
     71= 0. =
     72Smooth upgrade from 0.5.x versions. Just backup & use WordPress update
    7573
    7674
    7775== Changelog ==
     76
     77
     78
     79
     80
    7881
    7982= 0.6.2 =
Note: See TracChangeset for help on using the changeset viewer.