Tag: login
How To Login To Your Joomla 1.5 Website – [Video Tutorial for Joomla 1.5]
Get More Tips & Advice at www.BlazenWebMarketing.co.uk – Find out how to login to your Joomla 1.5 admin panel in this short but comprehensive video tutorial from Blazen Web Marketing. Though this video uses Joomla 1.5, users of Joomla 1.6/1.7+ can still get some helpful advice by watching this video. Find out what version of Joomla you’re using by logging into your Joomla website and looking for the version in the top right hand corner of the admin section.
Nexternal vs Magento Shopping Cart Comparison
www.nexternal.com This video explains the top 3 reasons why online merchants choose to upgrade their ecommerce shopping cart software to Nexternal from Magento. Unlike Magento’s free open source version, Nexternal’s platform is completely hosted and installing Nexternal couldn’t be easier. Nexternal will even customize the look and feel of the shopping cart to match that of your website. Because of this, there is no need to watch installation and design tutorials and no need to pick out a pre-formatted template or theme. Nexternal also offers unlimited customer support. To learn more about how to upgrade to Nexternal from Magento, please call 800-914-6161. Nexternal Free Trial: www.nexternal.com Nexternal Homepage: www.nexternal.com Nexternal Demo www.nexternal.com
Can’t Login to Magento Admin Panel after successful Installation
Here’s a simple solution to those facing Fresh Magento Installation Backend login problem. It’s obviously an issue around Cookie settings. So let’s get to it.
First thing you got to do is look for a file named Varien.php which is located same way as the following.
[magento_url]\app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
I managed to get it to work by commenting the whole block lines 77-104:
/* $cookieParams = array(
‘lifetime’ => $cookie->getLifetime(),
‘path’ => $cookie->getPath(),
‘domain’ => $cookie->getConfigDomain(),
‘secure’ => $cookie->isSecure(),
‘httponly’ => $cookie->getHttponly()
);
if (!$cookieParams[‘httponly’]) {
unset($cookieParams[‘httponly’]);
if (!$cookieParams[‘secure’]) {
unset($cookieParams[‘secure’]);
if (!$cookieParams[‘domain’]) {
unset($cookieParams[‘domain’]);
}
}
}
if (isset($cookieParams[‘domain’])) {
$cookieParams[‘domain’] = $cookie->getDomain();
}
call_user_func_array(‘session_set_cookie_params’, $cookieParams);
if (!empty($sessionName)) {
$this->setSessionName($sessionName);
} */