Title: WordPress 1.5 Database Manager
Last modified: August 18, 2016

---

# WordPress 1.5 Database Manager

 *  [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/)
 * Manages your WordPress database. Allows you to optimize database, backup database,
   restore database, delete backup database and run selected queries.
 * DL: [http://www.lesterchan.net/others/downloads.php?id=15](http://www.lesterchan.net/others/downloads.php?id=15)

Viewing 15 replies - 16 through 30 (of 62 total)

[←](https://wordpress.org/support/topic/wordpress-15-database-manager/?output_format=md)
[1](https://wordpress.org/support/topic/wordpress-15-database-manager/?output_format=md)
2 [3](https://wordpress.org/support/topic/wordpress-15-database-manager/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/wordpress-15-database-manager/page/4/?output_format=md)
[5](https://wordpress.org/support/topic/wordpress-15-database-manager/page/5/?output_format=md)
[→](https://wordpress.org/support/topic/wordpress-15-database-manager/page/3/?output_format=md)

 *  [piginzen](https://wordpress.org/support/users/piginzen/)
 * (@piginzen)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186011)
 * I’ve tried every conceivable directory/path structure and have not got it to 
   actually write a file…
 *  [iammike](https://wordpress.org/support/users/iammike/)
 * (@iammike)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186015)
 * As suggested before.. I got it to write and make a backup that isn’t 0 bytes 
   by changing the line:
 * $backup[‘path’] = ‘..\\wp-backup-db’;
 * to this
 * $backup[‘path’] = ABSPATH . ‘wp-backup-db/’;
 * The previous post gave a path thats hardset .. by using ABSPATH it doesn’t make
   it server specific, and will just pull your absolute path from the global variable.
   Or at least that worked for me.
 * Not exactly sure whats causing people have have 0 byte files, mine makes a backup
   db thats 10 megs …
 *  Thread Starter [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186035)
 * thanks for the fix iammike, i will update it.
 *  [angusmaccuish](https://wordpress.org/support/users/angusmaccuish/)
 * (@angusmaccuish)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186038)
 * To everyone who still gets a 0 byte backup file – does your wordpress MySQL database
   have an empty password ? If it does, then the mysqldump command line contains
   a ‘-p’ instead of ‘-p <password>’ and hangs. I discovered this on my local dev
   server – I now have a proper username/password on my dev database and the dump
   works fine.
 * Great idea BTW!
    Gus
 *  [gnawph](https://wordpress.org/support/users/gnawph/)
 * (@gnawph)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186057)
 * How do we find out where our MYSQLDUMP is?
 *  Thread Starter [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186059)
 * cool info angusmaccuish, thanks
 * gnawph: i think is /usr/bin/mysqldump
 *  [raynerape](https://wordpress.org/support/users/raynerape/)
 * (@raynerape)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186065)
 * Yes, empty password here, on a local apache.
    I hope this is the only problem.
   Thanks for letting us know, GaMerZ!
 *  [Lorelle](https://wordpress.org/support/users/lorelle/)
 * (@lorelle)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186066)
 * The link above takes us to a download page, at least when I tried it. Before 
   I download something, I want to know a little more. So can you either point me
   in a direction to a page with more info before downloading or explain more about
   it here? Sounds neat.
 *  [jonimueller](https://wordpress.org/support/users/jonimueller/)
 * (@jonimueller)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186067)
 * I’m with Lorelle on this one. I keep a link list of sites that offer WP plugins.
   The links are to the plugin author’s page or post that describes the plugin and
   offers a download link.
 * I see on your main blog page you have an article called Updating my WP Plugins.
   There’s no permalink or I’d have linked to that post. So for now, I’ll link to
   your blog. I plan to upgrade to WP 1.5 very soon and this plugin will be at the
   top of the list of plugins for my site!
 *  [roro](https://wordpress.org/support/users/roro/)
 * (@roro)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186068)
 * Doesnt make me a backup, and in the restore window, all the ald backups have 
   the same date from 1969
 * Im using 1.5
 *  [Cyndy Otty](https://wordpress.org/support/users/ceo/)
 * (@ceo)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186069)
 * I couldn’t get this to work either. It never made a backup period, let alone 
   one of 0 bytes. I finally gave up. 🙁
 *  [bloodylamer](https://wordpress.org/support/users/bloodylamer/)
 * (@bloodylamer)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186077)
 * there’s a small issue that worked for me.
 * Find:
    $backup[‘path’] = ABSPATH.’wp-backup-db’;
 * add the ‘/’ to make it look like this:
 * $backup[‘path’] = ABSPATH.’wp-backup-db/’;
 * before this change it wasn’t making any backups on my end either & after, it 
   worked like a charm!
 *  [bloodylamer](https://wordpress.org/support/users/bloodylamer/)
 * (@bloodylamer)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186078)
 * Oh also, thank you very much for the plugin, Gamerz! You are the man!!
 *  [Cyndy Otty](https://wordpress.org/support/users/ceo/)
 * (@ceo)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186080)
 * Thank you for the tip, bloodylamer! That made it work perfectly for me!
 *  [rocky2889](https://wordpress.org/support/users/rocky2889/)
 * (@rocky2889)
 * [21 years ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/2/#post-186081)
 * Iammike made this suggestion the other days and Gamerz made the update probably
   he forgot to add the “/” to the update.

Viewing 15 replies - 16 through 30 (of 62 total)

[←](https://wordpress.org/support/topic/wordpress-15-database-manager/?output_format=md)
[1](https://wordpress.org/support/topic/wordpress-15-database-manager/?output_format=md)
2 [3](https://wordpress.org/support/topic/wordpress-15-database-manager/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/wordpress-15-database-manager/page/4/?output_format=md)
[5](https://wordpress.org/support/topic/wordpress-15-database-manager/page/5/?output_format=md)
[→](https://wordpress.org/support/topic/wordpress-15-database-manager/page/3/?output_format=md)

The topic ‘WordPress 1.5 Database Manager’ is closed to new replies.

 * 62 replies
 * 27 participants
 * Last reply from: [ebrito](https://wordpress.org/support/users/ebrito/)
 * Last activity: [19 years, 10 months ago](https://wordpress.org/support/topic/wordpress-15-database-manager/page/5/#post-186224)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
