Plugin Directory

Changeset 489133


Ignore:
Timestamp:
01/13/2012 03:58:58 AM (14 years ago)
Author:
Risal Affendie
Message:

Update version 1.2

Location:
wp-risal-download
Files:
1 added
2 edited
11 copied

Legend:

Unmodified
Added
Removed
  • wp-risal-download/tags/1.2/readme.txt

    r489131 r489133  
    55Requires at least: 3.0.0
    66Tested up to: 3.3.0
    7 Stable Tag: 1.1
     7Stable Tag: 1.2
    88
    99risal-download is a simple scripts to avoid download abuse(either by human or robot).
     
    6060* Fix html syntax in admin page. File's name and directory's name that containing SPACE are now able to be recorded/updated/deleted from database.
    6161
     62= 1.2 =
     63* Replace input syntax in Record's Form with "text box" rather than "browse file". More practical for user who remote their server. Sorry, you got to type manually filename and it's path.
     64
  • wp-risal-download/tags/1.2/risal-download.php

    r489132 r489133  
    44Plugin URI: http://linuxuserjp.wordpress.com/
    55Description: Filter direct download of files. Manage how your files from outside ROOT_DIRECTORY will be downloaded. Monitor who download your files.
    6 Version: 1.1
     6Version: 1.2
    77Author: Risal Affendie
    88Author URI: http://linuxuserjp.wordpress.com
     
    151151        }
    152152        $vris = "Update";
    153         $xfile = "text";
    154153        echo '<h2>Modify Record:</h2>';
    155154        if ( $myrow->method == "md5" ) { $fmd5 = "checked"; $fsha1 = "";}
     
    159158        $tris = $queryRisal + 1;
    160159        $vris = "Insert";
    161         $xfile = "file";
    162160        echo '<h2>Insert New Record:</h2>';
    163161    }
    164162    echo '<p><label for="ID">ID</label><input type=text name="myid" value="'.$tris.'"></p>
    165         <p><label for="File">File Name</label><input type='.$xfile.' name="myfile" value="'.$myrow->file.'"></p>
    166         <p><label for="File Path">File Path</label><input type=text name="mypath" value="'.$myrow->outsidepath.'"></p>
     163        <p><label for="File">Server\'s File Name</label><input type=text name="myfile" value="'.$myrow->file.'"></p>
     164        <p><label for="File Path">Server\'s File Path</label><input type=text name="mypath" value="'.$myrow->outsidepath.'"></p>
    167165        <p><label for="Method">Method</label><input type="radio" name="mymeth" value="md5" '.$fmd5.'> MD5
    168166        <input type="radio" name="mymeth" value="sha1" '.$fsha1.'> SHA1</p>
  • wp-risal-download/trunk/readme.txt

    r489131 r489133  
    55Requires at least: 3.0.0
    66Tested up to: 3.3.0
    7 Stable Tag: 1.1
     7Stable Tag: 1.2
    88
    99risal-download is a simple scripts to avoid download abuse(either by human or robot).
     
    6060* Fix html syntax in admin page. File's name and directory's name that containing SPACE are now able to be recorded/updated/deleted from database.
    6161
     62= 1.2 =
     63* Replace input syntax in Record's Form with "text box" rather than "browse file". More practical for user who remote their server. Sorry, you got to type manually filename and it's path.
     64
  • wp-risal-download/trunk/risal-download.php

    r489132 r489133  
    44Plugin URI: http://linuxuserjp.wordpress.com/
    55Description: Filter direct download of files. Manage how your files from outside ROOT_DIRECTORY will be downloaded. Monitor who download your files.
    6 Version: 1.1
     6Version: 1.2
    77Author: Risal Affendie
    88Author URI: http://linuxuserjp.wordpress.com
     
    151151        }
    152152        $vris = "Update";
    153         $xfile = "text";
    154153        echo '<h2>Modify Record:</h2>';
    155154        if ( $myrow->method == "md5" ) { $fmd5 = "checked"; $fsha1 = "";}
     
    159158        $tris = $queryRisal + 1;
    160159        $vris = "Insert";
    161         $xfile = "file";
    162160        echo '<h2>Insert New Record:</h2>';
    163161    }
    164162    echo '<p><label for="ID">ID</label><input type=text name="myid" value="'.$tris.'"></p>
    165         <p><label for="File">File Name</label><input type='.$xfile.' name="myfile" value="'.$myrow->file.'"></p>
    166         <p><label for="File Path">File Path</label><input type=text name="mypath" value="'.$myrow->outsidepath.'"></p>
     163        <p><label for="File">Server\'s File Name</label><input type=text name="myfile" value="'.$myrow->file.'"></p>
     164        <p><label for="File Path">Server\'s File Path</label><input type=text name="mypath" value="'.$myrow->outsidepath.'"></p>
    167165        <p><label for="Method">Method</label><input type="radio" name="mymeth" value="md5" '.$fmd5.'> MD5
    168166        <input type="radio" name="mymeth" value="sha1" '.$fsha1.'> SHA1</p>
Note: See TracChangeset for help on using the changeset viewer.