root/wp-dbmanager/trunk/readme.html

Revision 52756, 15.9 kB (checked in by GamerZ, 4 days ago)

2.31

Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html>
3 <head> 
4         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5         <title>WP-DBManager 2.31 Readme</title>
6         <style type="text/css" media="screen">
7                 /* Default Style */
8                 BODY {
9                         font-family: Verdana, Arial;
10                         font-size: 12px;
11                         color: #000000;
12                         background: #FFFFFF;
13                 }
14                 P {
15                         padding-left: 10px;
16                 }
17                 BLOCKQUOTE {
18                         margin: 10px 20px 0px 20px;
19                         padding: 10px;
20                         border: 1px solid #8d8d8d;
21                         background-color: #f5f5f5;
22                 }
23                 LI {
24                         margin-top: 20px;
25                 }
26                 UL LI UL LI {
27                         margin-top: 10px;
28                 }
29                 A, A:active, A:link, A:visited {
30                         color: #2d3a4c;
31                         text-decoration: none;
32                 }
33                 A:hover {
34                         color: #5577a5;
35                         text-decoration: underline;
36                 }
37                 /* Place Holder Style */
38                 #Container {
39                         width: 780px;
40                         margin-left: auto;
41                         margin-right: auto;
42                 }
43                 #Content {
44                         background-color: #fafafa;
45                         border: 1px solid #a2b6cb;
46                         padding: 10px;
47                         margin-top: -13px;
48                 }
49                 /* Title Style */
50                 #Title {
51                         font-family: Verdana, Arial;
52                         font-size: 22px;
53                         font-weight: bold;
54                         color: #389aff;
55                         border-bottom: 1px solid #389aff;
56                         margin-bottom: 10px;
57                 }
58                 .SubTitle {
59                         font-family: Verdana, Arial;
60                         font-size: 18px;
61                         font-weight: bold;
62                         color: #5b87b4;
63                 }
64                 .SubSubTitle {
65                         font-family: Verdana, Arial;
66                         font-size: 14px;
67                         font-weight: bold;
68                         color: #73a4d6;
69                 }
70                 /* Tabs */
71                 UL#Tabs {
72                         font-family: Verdana, Arial;
73                         font-size: 12px;
74                         font-weight: bold;
75                         list-style-type: none;
76                         padding-bottom: 28px;
77                         border-bottom: 1px solid #a2b6cb;
78                         margin-bottom: 12px;
79                         z-index: 1;
80                 }
81                 #Tabs LI.Tab {
82                         float: right;
83                         height: 25px;
84                         background-color: #deedfb;
85                         margin: 2px 0px 0px 5px;
86                         border: 1px solid #a2b6cb;
87                 }
88                 #Tabs LI.Tab A {
89                         float: left;
90                         display: block;
91                         color: #666666;
92                         text-decoration: none;
93                         padding: 5px;
94                 }
95                 #Tabs LI.Tab A:hover {
96                         background-color: #bfe0fe;
97                         border-bottom: 1px solid #bfe0fe;
98                 }
99                 /* Selected Tab */
100                 #Tabs LI.SelectedTab {
101                         float: right;
102                         height: 25px;
103                         background-color: #fafafa;
104                         margin: 2px 0px 0px 5px;
105                         border-top: 1px solid #a2b6cb;
106                         border-right: 1px solid #a2b6cb;
107                         border-bottom: 1px solid #fafafa;
108                         border-left: 1px solid #a2b6cb;
109                 }
110                 #Tabs LI.SelectedTab A {
111                         float: left;
112                         display: block;
113                         color: #666666;
114                         text-decoration: none;
115                         padding: 5px;
116                         cursor: default;
117                 }
118                 /* Copyright */
119                 #Copyright {
120                         text-align: center;
121                 }
122         </style>
123         <script type="text/javascript">
124         /* <![CDATA[*/
125                 // Index Page
126                 function index() {
127                         // Tab
128                         document.getElementById('IndexTab').className = 'SelectedTab';
129                         document.getElementById('ChangelogTab').className = 'Tab';
130                         document.getElementById('InstallTab').className = 'Tab';
131                         document.getElementById('UpgradeTab').className = 'Tab';
132                         document.getElementById('UsageTab').className = 'Tab';
133                         // Page
134                         document.getElementById('Index').style.display= 'block';
135                         document.getElementById('Changelog').style.display = 'none';
136                         document.getElementById('Install').style.display = 'none';
137                         document.getElementById('Upgrade').style.display = 'none';
138                         document.getElementById('Usage').style.display = 'none';
139                 }
140                 // Changelog Page
141                 function changelog() {
142                         // Tab
143                         document.getElementById('IndexTab').className = 'Tab';
144                         document.getElementById('ChangelogTab').className = 'SelectedTab';
145                         document.getElementById('InstallTab').className = 'Tab';
146                         document.getElementById('UpgradeTab').className = 'Tab';
147                         document.getElementById('UsageTab').className = 'Tab';
148                         // Page
149                         document.getElementById('Index').style.display = 'none';
150                         document.getElementById('Changelog').style.display = 'block';
151                         document.getElementById('Install').style.display = 'none';
152                         document.getElementById('Upgrade').style.display = 'none';
153                         document.getElementById('Usage').style.display = 'none';
154                 }
155                 // Installation Page
156                 function install() {
157                         // Tab
158                         document.getElementById('IndexTab').className = 'Tab';
159                         document.getElementById('ChangelogTab').className = 'Tab';
160                         document.getElementById('InstallTab').className = 'SelectedTab';
161                         document.getElementById('UpgradeTab').className = 'Tab';
162                         document.getElementById('UsageTab').className = 'Tab';
163                         // Page
164                         document.getElementById('Index').style.display= 'none';
165                         document.getElementById('Changelog').style.display = 'none';
166                         document.getElementById('Install').style.display = 'block';
167                         document.getElementById('Upgrade').style.display = 'none';
168                         document.getElementById('Usage').style.display = 'none';
169                 }
170                 // Upgrade Page
171                 function upgrade() {
172                         // Tab
173                         document.getElementById('IndexTab').className = 'Tab';
174                         document.getElementById('ChangelogTab').className = 'Tab';
175                         document.getElementById('InstallTab').className = 'Tab';
176                         document.getElementById('UpgradeTab').className = 'SelectedTab';
177                         document.getElementById('UsageTab').className = 'Tab';
178                         // Page
179                         document.getElementById('Index').style.display= 'none';
180                         document.getElementById('Changelog').style.display = 'none';
181                         document.getElementById('Install').style.display = 'none';
182                         document.getElementById('Upgrade').style.display = 'block';
183                         document.getElementById('Usage').style.display = 'none';
184                 }
185                 // Usage Page
186                 function usage() {
187                         // Tab
188                         document.getElementById('IndexTab').className = 'Tab';
189                         document.getElementById('ChangelogTab').className = 'Tab';
190                         document.getElementById('InstallTab').className = 'Tab';
191                         document.getElementById('UpgradeTab').className = 'Tab';
192                         document.getElementById('UsageTab').className = 'SelectedTab';
193                         // Page
194                         document.getElementById('Index').style.display= 'none';
195                         document.getElementById('Changelog').style.display = 'none';
196                         document.getElementById('Install').style.display = 'none';
197                         document.getElementById('Upgrade').style.display = 'none';
198                         document.getElementById('Usage').style.display = 'block';
199                 }
200         /* ]]> */
201         </script>
202 </head>
203 <body>
204 <div id="Container">
205         <!-- Title -->
206         <div id="Title">WP-DBManager 2.31&nbsp;&nbsp;&nbsp;<span style="color: #aaaaaa;">Readme</span></div>
207
208         <!-- Tabs -->
209         <ul id="Tabs">
210                 <li id="UsageTab" class="Tab"><a href="#Usage" onclick="usage(); return false;" title="Usage Instructions">Usage</a></li>
211                 <li id="UpgradeTab" class="Tab"><a href="#Upgrade" onclick="upgrade(); return false;" title="Upgrade Instructions">Upgrade</a></li>
212                 <li id="InstallTab" class="Tab"><a href="#Installation" onclick="install(); return false;" title="Installation Instructions">Installation</a></li>
213                 <li id="ChangelogTab" class="Tab"><a href="#Changelog" onclick="changelog(); return false;" title="Changelog">Changelog</a></li>
214                 <li id="IndexTab" class="SelectedTab"><a href="#Index" onclick="index(); return false;" title="Index Instructions">Index</a></li>
215         </ul>
216
217         <!-- Content -->
218         <div id="Content">
219                 <!-- Index -->
220                 <div id="Index">
221                         <div class="SubTitle">&raquo; Index</div>
222                         <div class="SubSubTitle">Plugin Information</div>
223                         <p>
224                                 <strong>Author:</strong><br />
225                                 <strong>&raquo;</strong> Lester 'GaMerZ' Chan
226                         </p>
227                         <p>
228                                 <strong>Website:</strong><br />
229                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/" title="http://lesterchan.net/">http://lesterchan.net/</a>
230                         </p>
231                         <p>
232                                 <strong>Features:</strong><br />
233                                 <strong>&raquo;</strong> Manages your Wordpress database. Allows you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries. Supports automatic scheduling of backing up and optimizing of database.
234                         </p>
235                         <p>
236                                 <strong>Download:</strong><br />
237                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-dbmanager.2.31.zip" title="http://downloads.wordpress.org/plugin/wp-dbmanager.2.31.zip">WP-DBManager 2.31 For WordPress 2.1.x And Above</a><br />
238                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-dbmanager.2.05.zip" title="http://downloads.wordpress.org/plugin/wp-dbmanager.2.05.zip">WP-DBManager 2.05 For WordPress 2.0.x</a><br />
239                                 <strong>&raquo;</strong> <a href="http://downloads.wordpress.org/plugin/wp-dbmanager.1.00.zip" title="http://downloads.wordpress.org/plugin/wp-dbmanager.1.00.zip">WP-DBManager 1.00 For WordPress 1.5.2</a>
240                         </p>
241                 <p>
242                                 <strong>Screenshots:</strong><br />
243                                 <strong>&raquo;</strong> <a href="http://lesterchan.net/wordpress/screenshots/browse/wp-dbmanager/" title="http://lesterchan.net/wordpress/screenshots/browse/wp-dbmanager/">http://lesterchan.net/wordpress/screenshots/browse/wp-dbmanager/</a>
244                         </p>
245                         <p>
246                                 <strong>Demo:</strong><br />
247                                 <strong>&raquo;</strong> N/A
248                         </p>
249                         <p>
250                                 <strong>Development:</strong><br />
251                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-dbmanager/" title="http://dev.wp-plugins.org/browser/wp-dbmanager/">http://dev.wp-plugins.org/browser/wp-dbmanager/</a>
252                         </p>
253                         <p>
254                                 <strong>Translations:</strong><br />
255                                 <strong>&raquo;</strong> <a href="http://dev.wp-plugins.org/browser/wp-dbmanager/i18n/" title="http://dev.wp-plugins.org/browser/wp-dbmanager/i18n/">http://dev.wp-plugins.org/browser/wp-dbmanager/i18n/</a>
256                         </p>
257                         <p>
258                                 <strong>Support Forums:</strong><br />
259                                 <strong>&raquo;</strong> <a href="http://forums.lesterchan.net/index.php?board=11.0" title="http://forums.lesterchan.net/index.php?board=11.0">http://forums.lesterchan.net/index.php?board=11.0</a>
260                         </p>
261                         <p>
262                                 <strong>Note:</strong><br />
263                                 <strong>&raquo;</strong> The <strong>Changelog</strong>, <strong>Installation</strong>, <strong>Upgrade</strong>, <strong>Usage</strong> Tab at the top of the page.
264                         </p>
265                         <p>
266                                 <strong>Donations:</strong><br />
267                                 <strong>&raquo;</strong> I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks as my school allowance, I will really appericiate it. If not feel free to use it without any obligations. Thank You. My Paypal account is
268                                 <script type="text/javascript">
269                                         /* <![CDATA[*/
270                                         document.write(' <strong>lesterchan@gmail.com</strong>.');
271                                         /* ]]> */
272                                 </script>
273                         </p>
274                 </div>
275
276                 <!-- Changelog -->
277                 <div id="Changelog" style="display: none;">
278                         <div class="SubTitle">&raquo; Changelog</div>
279                         <ul>
280                                 <li>
281                                         <strong>Version 2.31 (01-08-2008)</strong>
282                                         <ul>
283                                                 <li>FIXED: Unable To Optimize Or Repair Tables If Table Name Contains - (dash)</li>
284                                         </ul>
285                                 </li>
286                                 <li>
287                                         <strong>Version 2.30 (01-06-2008)</strong>
288                                         <ul>
289                                                 <li>NEW: Uses /wp-dbmanager/ Folder Instead Of /dbmanager/</li>
290                                                 <li>NEW: Uses wp-dbmanager.php Instead Of dbmanager.php</li>
291                                                 <li>NEW: Added Minute(s) Option To Backup And Optimize Cron Jobs</li>
292                                                 <li>NEW: Uses GiB, MiB, KiB Instead Of GB, MB, KB</li>
293                                         </ul>
294                                 </li>
295                                 <li>
296                                         <strong>Version 2.20 (01-10-2007)</strong>
297                                         <ul>
298                                                 <li>NEW: Added --skip-lock-tables Argument When Backing Up Database</li>
299                                                 <li>NEW: Limit The Maximum Number Of Backup Files In The Backup Folder</li>
300                                                 <li>NEW: Ability To Uninstall WP-DBManager</li>
301                                         </ul>
302                                 </li>
303                                 <li>
304                                         <strong>Version 2.11 (01-06-2007)</strong>
305                                         <ul>
306                                                 <li>NEW: Sort Database Backup Files By Date In Descending Order</li>
307                                                 <li>NEW: Added Repair Database Feature</li>
308                                                 <li>NEW: Automatic Scheduling Of Backing Up And Optimizing Of Database</li>
309                                         </ul>
310                                 </li>
311                                 <li>
312                                         <strong>Version 2.10 (01-02-2007)</strong>
313                                         <ul>
314                                                 <li>NEW: Works For WordPress 2.1 Only</li>
315                                                 <li>NEW: Removed database-config.php</li>
316                                                 <li>NEW: Localize WP-DBManager</li>
317                                                 <li>NEW: Added The Ability To Auto Detect MYSQL And MYSQL Dump Path</li>
318                                         </ul>
319                                 </li>
320                                 <li>
321                                         <strong>Version 2.05 (01-06-2006)</strong>
322                                         <ul>
323                                                 <li>FIXED: Database Table Names Not Appearing Correctly</li>
324                                                 <li>NEW: DBManager Administration Panel Is XHTML 1.0 Transitional</li>                 
325                                         </ul>
326                                 </li>
327                                 <li>
328                                         <strong>Version 2.04 (10-05-2006)</strong>
329                                         <ul>
330                                                 <li>FIXED: Unable To Download Backup DB Due To Header Sent Error</li>
331                                                 <li>FIXED: Some XHTML Code Fixes</li>                   
332                                         </ul>
333                                 </li>
334                                 <li>
335                                         <strong>Version 2.03 (01-04-2006)</strong>
336                                         <ul>
337                                                 <li>FIXED: Run Query Box Too Big</li>
338                                                 <li>FIXED: Header Sent Error</li>
339                                                 <li>FIXED: Extra Slashes For Mysql/Mysql Dump Path</li>
340                                                 <li>FIXED: Mismatch Date Due To GMT</li>                                       
341                                         </ul>
342                                 </li>
343                                 <li>
344                                         <strong>Version 2.02 (01-03-2006)</strong>
345                                         <ul>
346                                                 <li>NEW: Improved On 'manage_database' Capabilities</li>
347                                                 <li>NEW: Added GigaBytes To File Size</li>
348                                                 <li>NEW: Added ALTER Statement To Allowed Queries</li>
349                                                 <li>NEW: Able To Empty/Drop Tables</li>
350                                                 <li>NEW: Able To EMail Database Backup File</li>
351                                                 <li>NEW: Splitted database-manager.php Into Individual Files</li>
352                                                 <li>NEW: Merge Restore And Delete Backup Database</li>
353                                                 <li>NEW: Included .htaccess File To Protect Backup Folder</li>
354                                                 <li>NEW: Checking Of Backup Status</li>
355                                                 <li>FIXED: Using Old Method To Add Submenu</li>
356                                                 <li>FIXED: PHP Short Tags</li>
357                                                 <li>FIXED: Redirect Back To The Same Page Instead Of Manage Database Page After Submitting Form</li>
358                                         </ul>
359                                 </li>
360                                 <li>
361                                         <strong>Version 2.01 (01-02-2006)</strong>
362                                         <ul>
363                                                 <li>NEW: Added 'manage_database' Capabilities To Administrator Role</li>
364                                         </ul>
365                                 </li>
366                                 <li>
367                                         <strong>Version 2.00 (01-01-2006)</strong>
368                                         <ul>
369                                                 <li>NEW: Compatible With WordPress 2.0 Only</li>
370                                                 <li>NEW: GPL License Added</li>
371                                         </ul>
372                                 </li>
373                         </ul>
374                 </div>
375
376                 <!-- Installation Instructions -->
377                 <div id="Install" style="display: none;">
378                         <div class="SubTitle">&raquo; Installation Instructions</div>
379                         <ol>
380                                 <li>
381                                         Open <strong>wp-content/plugins</strong> Folder
382                                 </li>
383                                 <li>
384                                         Put:
385                                         <blockquote>Folder: wp-dbmanager</blockquote>
386                                 </li>
387                                 <li>
388                                         <strong>Activate</strong> WP-DBManager Plugin
389                                 </li>
390                                 <li>
391                                         Open <strong>wp-content/backup-db</strong> Folder
392                                 </li>
393                                 <li>
394                                         Put:
395                                         <blockquote>File: .htaccess</blockquote>
396                                         <p>The script will automatically create a folder called <strong>backup-db</strong> in wp-content folder if that folder is writable. If it is not created, please create it and CHMOD it to 777.</p>
397                                 </li>
398                                 <li>
399                                         Refer To <strong>Usage</strong> For Further Instructions
400                                 </li>
401                         </ol>
402                 </div>
403
404                 <!-- Upgrade Instructions -->   
405                 <div id="Upgrade" style="display: none;">
406                         <div class="SubTitle">&raquo; Upgrade Instructions</div>
407                         <div class="SubSubTitle">From v2.0x To v2.31</div>
408                         <ol>
409                                 <li>
410                                         <strong>Deactivate</strong> WP-DBManager Plugin
411                                 </li>
412                                 <li>
413                                         Open <strong>wp-content/plugins</strong> Folder
414                                 </li>
415                                 <li>
416                                         Put/Overwrite:
417                                         <blockquote>Folder: wp-dbmanager</blockquote>
418                                 </li>
419                                 <li>
420                                         Delete this folder if exists:
421                                         <blockquote>
422                                                 Folder: dbmanager
423                                         </blockquote>
424                                 </li>
425                                 <li>
426                                         <strong>Activate</strong> WP-DBManager Plugin
427                                 </li>
428                                 <li>
429                                         Refer To <strong>Usage</strong> For Further Instructions
430                                 </li>
431                         </ol>
432                 </div>
433
434                 <!-- Usage Instructions -->     
435                 <div id="Usage" style="display: none;">
436                         <div class="SubTitle">&raquo; Usage Instructions</div>
437                         <div class="SubSubTitle">General Usage</div>
438                         <ol>
439                                 <li>
440                                         You can find DBManager under the <strong>Database Tab</strong> in the WordPress Administration Panel.
441                                 </li>
442                                 <li>
443                                         Go to <strong>'WP-Admin -> Database -> DB Options'</strong> to configure the database options.
444                                 </li>
445                         </ol>                   
446                 </div>
447         </div>
448 </div>
449 <p id="Copyright">WP-DBManager 2.31<br />Copyright &copy; 2008 Lester 'GaMerZ' Chan. All Rights Reserved.</p>
450 </body>
451 </html>
Note: See TracBrowser for help on using the browser.