-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
missing imports prevent command line installation of extensions #207
Copy link
Copy link
Closed
Labels
Description
Originally described in http://forum.joomla.org/viewtopic.php?f=624&t=716847
Steps to reproduce:
- Download the english language extension from http://joomlacode.org/gf/project/jtranslation1_6/frs/?action=FrsReleaseBrowse&frs_package_id=5651 and unzip to /tmp
- Modify the paths in the following script per your environment and run it
- The installation will fail due to classes failing to autoload
#!/usr/bin/php
<?php
define('_JEXEC', 1);
define('JPATH_BASE', '/var/www/joomla');
require_once 'configuration.php';
require_once 'includes/defines.php';
require_once 'libraries/import.php';
JInstaller::getInstance()->install('/tmp/site_en-US');
?>Reactions are currently unavailable