Home > Blockchain >  Find out which domain is used in database for Joomla
Find out which domain is used in database for Joomla

Time:11-20

Is there a way to find out in a Joomla database for which it is used, in the case of Wordpress there is the wp_options -> siteurl table. Does Joomla have this?

CodePudding user response:

Domain is only available in configuration.php file at the Joomla root folder.

CodePudding user response:

there is no requirement for the website in the db, however there are a number of tables that may contain it.

You might want to check the #_redirect table if the plugin was ever enabled you should find it there. Also worth looking into is #_menu and any SEO extension tables

Please consider these are not used or required byJoomla so they could belong to the staging phase of the website and thus contain a wrong url. I have found sites with several domains in their db.

  • Related