You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification
<?php
use Joomla\CMS\Factory;
if('cli' !== php_sapi_name()) die('Go away.');
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Adjust to your environment
define('WEBROOT', '/var/www/webspace/htdocs');
// Init Joomla
const _JEXEC = 1;
if(file_exists(WEBROOT . '/defines.php')) require_once WEBROOT . '/defines.php';
if( ! defined('_JDEFINES')) {
define('JPATH_BASE', WEBROOT);
require_once JPATH_BASE . '/includes/defines.php';
}
require_once JPATH_LIBRARIES . '/import.legacy.php';
require_once JPATH_LIBRARIES . '/cms.php';
require_once JPATH_CONFIGURATION . '/configuration.php';
$config = new JConfig;
define('JDEBUG', $config->debug);
$lang = JFactory::getLanguage();
global $_SERVER;
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['REQUEST_METHOD'] = 'GET';
$_SERVER['DOCUMENT_ROOT'] = WEBROOT;
$_SERVER['SCRIPT_NAME'] = basename(__FILE__);
$_SERVER['REMOTE_ADDR'] = getHostByName(getHostName());
class MyFancyStuffCli extends JApplicationCli {
public function doExecute() {
$app = Factory::getApplication('site');
$this->out('My Fancy Stuff CLI application');
$this->out('------------------------------');
// Log in so we have a valid session
if( ! $app->login([
'username' => 'username'
,'password' => 'so-super-secret'
])) {
$this->out('Login failed. Abort.');
die();
}
$user = Factory::getUser();
$this->out('Logged in successfully as ' . $user->name . '' . $user->id . ' [' . $user->username . ']');
// Init virtuemart
if( ! class_exists( 'VmConfig' )) require_once(JPATH_ADMINISTRATOR . '/components/com_virtuemart/helpers/config.php');
VmConfig::loadConfig();
if( ! class_exists('VmModel')) require_once(JPATH_ADMINISTRATOR . '/components/com_virtuemart/helpers/vmmodel.php');
// Init virtuemart security
$vmtoken = vRequest::getFormToken();
$app->input->set($vmtoken, 1);
$app->input->set('token', $vmtoken); // propably redundant
$productdata = [
// ...
];
try{
$product_id = (int) VmModel::getModel('product')->store($productdata);
} catch (Exception $e) {
$this->out('Error storing product, caught exception:');
$this->out($e->getMessage());
}
if($product_id > 0) {
$this->out('Stored product with id #' . $product_id);
} else {
$this->out('Did not receive new product id. Hu?.');
}
} // doExecute();
} // class
JApplicationCli::getInstance('MyFancyStuffCli')->execute();
Page created in 0.116 seconds with 15 queries.