2101
General Support / Re: new upgrade removed no_image.jpg link
« on: July 31, 2012, 08:43:27 AM »
how you cleared, via UI or deleting files from system/cache directory? i need to know.
<?php echo "width:".$product_info['width']; ?>
<?php echo "height:".$product_info['height']; ?>
<?php echo "length:".$product_info['length']; ?>
$query = $this->db->query(
"SELECT DISTINCT *, pd.name AS name, m.name AS manufacturer, ss.name AS stock_status " .
$this->_sql_join_string() .
" WHERE p.product_id = '" . (int)$product_id . "'
AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'
AND p.date_available <= NOW() AND p.status = '1'");
by this$query = $this->db->query(
"SELECT DISTINCT *, pd.name AS name, m.name AS manufacturer, ss.name AS stock_status, lcd.unit as length_class_name " .
$this->_sql_join_string() .
"LEFT JOIN " . DB_PREFIX . "length_class_descriptions lcd
ON (p.length_class_id = lcd.length_class_id AND lcd.language_id = '" . (int)$this->config->get('storefront_language_id') . "')
WHERE p.product_id = '" . (int)$product_id . "'
AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'
AND p.date_available <= NOW() AND p.status = '1'");
Thank you.
Is this the same issue as posted by MLCS?
Though, I'm still a bit curious as to how you do this with scripts generated on the fly, as for various analytics platforms.....
$this->baseObject->view->assign('your_var_name','<script type="text/javascript" src="'.$this->baseObject->templateResource('/javascript/global_scripts/myscript.js'.'"></script>';
Some of these things may help avoid ending up in a spam bucket, sure. But will not help much if the store owner uses their own mail server to send promotional mailings. The RBL will still catch SMTP mediated mail.
In terms of testing to see if the email account is valid, I'd suggest that this should be an available option in account creation processes. Better is to make sure that the address is entered twice and that both entries match. In this case, given the report of multiple tests using the same account we might be safe in assuming that a bad email address is not the problem.
David
Check also your mail server settings.
If sending from user@serviceprovider.tld to user@serviceprovider.tld the server may refuse to post an email, as the mail user shouldn't need to post mail to themselves.
Also - check that the address involved in sending is not blocked by an RBL used by the receiving server.
David
This places a single script into the head of the page.
An asynchronous script is split into two (or more) script blocks at least one of which is placed in the foot of the page. (ie, just before the closing of the body).
Also, there are many instances in which placing a script at the bottom of the page is desirable. I don't see a method which will accomplish this.
David
(if(!class_exists('ExtensionMyTemplate')){
include('core/hook.php');
})
2. place there hook something like this class ExtensionMyTemplate extends Extension {
public function onControllerCommonHead_UpdateData() {
$registry = Registry::getInstance();
$registry->get('document')->addScript($this->view->templateResource('/javascript/global_scripts/myscript.js'))
}
}