Skip to content

Dump Joomla database, and simplify extension development

Notifications You must be signed in to change notification settings

vifito/joomdump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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