Skip to content

vifito/joomdump

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

joomdump

Originally created to dump Joomla database, and simplify extension development.

Usage

  • Dump table jos_content, (structure and data):
php -f joomdump.phar -- --tables=content:dump \
       --db=joomla --pass=r00t --user=root --host=localhost --prefix=jos_
  • Dump schema of content table, and data information of categories table
php -f joomdump.phar -- --tables=content:schema,categories:data \
       --db=joomla --pass=r00t --user=root --host=localhost --prefix=jos_
  • Dump data information of categories table, returning rows that comply condition of filter
php -f joomdump.phar -- --tables=categories:data#"extension='com_content'" \
       --db=joomla --pass=r00t --user=root --host=localhost --prefix=jos_

Syntax of tables option

--tables=TABLENAME[:(dump|data|schema)[#"SQLField='condition'"]]

About

Dump Joomla database, and simplify extension development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published