magento判断用户登录

Magento 登陆之后返回登录之前的页面

magento 在登陆后一般会自动跳转到 My Account 页面

但是经常会有需求 就是登陆自动跳转到 之前的页面里面

工具/原料

  • php+mysql+apache

方法/步骤

  1.  

    只要加代码

    Mage::getSingleton('customer/session')->setBeforeAuthUrl(Mage::getUrl('*/*/*', array('_secure'=>true)));或

    Mage::getSingleton('customer/session')->setBeforeAuthUrl(Mage::helper("core/url")->getCurrentUrl());

    在之前的页面 就可以实现这个功能

  2.  

    <!-- <?php //判断用户是否是登录用户,如果不是登录用户就跳转到登录页面,登录成就进入网站的页面?>-->

    <?php

    Mage::getSingleton('customer/session')->setBeforeAuthUrl($this->getRequest()->getRequestUri());  //save requested URL for later redirection

    if(!Mage::getSingleton('customer/session')->isLoggedIn()) {  // if not logged in

    header("Status: 301");

    //  header('Location: '.Mage::helper('core/url')->getHomeUrl(customer/account/login)) ;  // send to the login page

    header('Location:'.Mage::getBaseUrl('web').'index.php/customer/account/login/'           ) ;

    exit;

    }

    ?>

    magento在购物车中判断用户登录,如果没有登录就跳转到登录页面,红色字体代表新增代码

    首先进入app/code/local/idev/onestepchekcout/controllers/indexcontroller.php文件

    加上一个

    if(Mage::getSingleton( 'customer/session' )->isLoggedIn())

    {判断和

    else

    {       $redirect=Mage::getBaseUrl().'customer/account/create/';

    Mage::app()->getFrontController()->getResponse()->setRedirect($redirect)->sendResponse();//这个是需要跳转到的登录页面或者是注册页面

    }

    即可

    放的位置代码如下:

    public function indexAction() {

    if(Mage::getSingleton( 'customer/session' )->isLoggedIn())

    {

    $quote = $this->getOnepage()->getQuote();

    if (!$quote->hasItems() || $quote->getHasError()) {

    $this->_redirect('checkout/cart');

    return;

    }

    if (!$quote->validateMinimumAmount()) {

    $error = Mage::getStoreConfig('sales/minimum_order/error_message');

    Mage::getSingleton('checkout/session')->addError($error);

    $this->_redirect('checkout/cart');

    return;

    }

    $this->loadLayout();

    if(Mage::helper('onestepcheckout')->isEnterprise() && Mage::helper('customer')->isLoggedIn()){

    $customerBalanceBlock = $this->getLayout()->createBlock('enterprise_customerbalance/checkout_onepage_payment_additional', 'customerbalance', array('template'=>'onestepcheckout/customerbalance/payment/additional.phtml'));

    $customerBalanceBlockScripts = $this->getLayout()->createBlock('enterprise_customerbalance/checkout_onepage_payment_additional', 'customerbalance_scripts', array('template'=>'onestepcheckout/customerbalance/payment/scripts.phtml'));

    $rewardPointsBlock = $this->getLayout()->createBlock('enterprise_reward/checkout_payment_additional', 'reward.points', array('template'=>'onestepcheckout/reward/payment/additional.phtml', 'before' => '-'));

    $rewardPointsBlockScripts = $this->getLayout()->createBlock('enterprise_reward/checkout_payment_additional', 'reward.scripts', array('template'=>'onestepcheckout/reward/payment/scripts.phtml', 'after' => '-'));

    $this->getLayout()->getBlock('choose-payment-method')

    ->append($customerBalanceBlock)

    ->append($customerBalanceBlockScripts)

    ->append($rewardPointsBlock)

    ->append($rewardPointsBlockScripts)

    ;

    }

    $this->renderLayout();

    }

    else

    {       $redirect=Mage::getBaseUrl().'customer/account/create/';

    Mage::app()->getFrontController()->getResponse()->setRedirect($redirect)->sendResponse();

    }

    }

  3.  

    判断用户是否从结算页面当中进入的,如果是从结算页面当中进入登录的或者是注册的那么需要进入下一步操作

    首先在form表单中加个<input name="xxx" value="xxxx" type="hidden"/>代码如下:

    <form id="login-form" action="http://www.wellsupplier.com/index.php/customer/account/loginPost/" method="post">

    <input type="hidden" value="check-out" name="cart-name"/>

    或者跳转到进入登录注册页面前一页

    <?php echo $currlink=substr($_SERVER['HTTP_REFERER'],27); ?>

    <input type="hidden" value="<?php echo $currlink;?>" name="cart-name"/>

    然后去loginPostAction方法中进行判断,代码路径D:\Program Files\wamp\www\focalpriced\app\code\core\Mage\Customer\controllers\accountcontrollers.php文件

    然后找到public function loginPostAction()方法 ;

    public function loginPostAction()

    {

    $chac=$this->getRequest()->getParam("cart-name");  //获取表单的传过来的值

    if ($this->_getSession()->isLoggedIn()) {

    $this->_redirect('*/*/');

    return;

    }

    $session = $this->_getSession();

    if ($this->getRequest()->isPost()) {

    $login = $this->getRequest()->getPost('login');

    if (!empty($login['username']) && !empty($login['password'])) {

    try {

    $session->login($login['username'], $login['password']);

    if ($session->getCustomer()->getIsJustConfirmed()) {

    $this->_welcomeCustomer($session->getCustomer(), true);

    }

    } catch (Mage_Core_Exception $e) {

    switch ($e->getCode()) {

    case Mage_Customer_Model_Customer::EXCEPTION_EMAIL_NOT_CONFIRMED:

    $value = Mage::helper('customer')->getEmailConfirmationUrl($login['username']);

    $message = Mage::helper('customer')->__('This account is not confirmed. <a href="%s">Click here</a> to resend confirmation email.', $value);

    break;

    case Mage_Customer_Model_Customer::EXCEPTION_INVALID_EMAIL_OR_PASSWORD:

    $message = $e->getMessage();

    break;

    default:

    $message = $e->getMessage();

    }

    $session->addError($message);

    $session->setUsername($login['username']);

    } catch (Exception $e) {

    // Mage::logException($e); // PA DSS violation: this exception log can disclose customer password

    }

    } else {

    $session->addError($this->__('Login and password are required.'));

    }

    }

    if(isset($chac)){      //判断表单的值进行跳转

    $redirect=Mage::getBaseUrl().$chac;

    Mage::app()->getFrontController()->getResponse()->setRedirect($redirect)->sendResponse();

    } else  {

    $this->_loginPostRedirect();

    }

    }

magento登陆的更多相关文章

  1. 解决magento后台无法登陆/登陆没有反应的方法

    安装过magento的几个版本,安装好后在登陆后台的时候都遇到了点问题,用户名和密码都输入正确,就是登陆不了后台,经过研究发现,登陆不了后台的主要是因为magento自身缓存设置的问题,最模板解决方法 ...

  2. magento

     打开 magento/app/code/core/Mage/Core/Model/Session/Abstract/varien.php//if (isset($cookieParams['doma ...

  3. magento启用SSL改http成https

    Magento是电子商务网站,对于网站的用户信息安全来说,让Magento使用SSL连接是一个很好的解决方案.如果在页面的边栏或者底部放上些表明本站使用安全连接的图片,显得更专业,让客户有安全感,对于 ...

  4. Magento获取当前页面URL地址

    Magento获取当前页面URL地址 http://www.sunhaibing.com/?p=1260 在Magento中,可以通过core/url助手类中的getCurrentUrl()方法获取当 ...

  5. Magento添加一个下拉登陆菜单Create Magento Dropdown Login in a few minutes

    Dropdown login forms are not a feature many online stores use, but in some cases they could be quite ...

  6. 用facebook账号登陆到你的Magento网店

    Inchoo提供magento和facebook连接的扩展,可以到http://inchoo.net/ecommerce/magento/facebook-connect-magento-extens ...

  7. magento后台登陆被锁定 索引报错的解决:General error: 1205 Lock wait timeout

    1. magento在索引的时候用shell,有时候会报错: General error: 1205 Lock wait timeout exceeded 这个时候,是因为行锁的原因,在表中您直接用s ...

  8. Magento在IE下登陆不了后台,在Firefox下正常

    目前的解决办法如下: 方法一,用FF登陆后台,在 System—Configuration-Web-Session Cookie management....timeout 改为:86400 方法二: ...

  9. magento后台无法登陆的问题

    解决方法: 打开 magento/app/code/core/Mage/Core/Model/Session/Abstract/varien.php 将// set session cookie pa ...

随机推荐

  1. Java-JUC(八):使用wait,notify|notifyAll完成生产者消费者通信,虚假唤醒(Spurious Wakeups)问题出现场景,及问题解决方案。

    模拟通过线程实现消费者和订阅者模式: 首先,定义一个店员:店员包含进货.卖货方法:其次,定义一个生产者,生产者负责给店员生产产品:再者,定义一个消费者,消费者负责从店员那里消费产品. 店员: /** ...

  2. Twitter Lite以及大规模的高性能React渐进式网络应用

    Twitter Lite以及大规模的高性能React渐进式网络应用 原文:Twitter Lite and High Performance React Progressive Web Apps at ...

  3. XenServer修改DNS

    XenServer没法直接修改DNS,感觉好奇怪啊 修改方法: 1.进入命令行:  2.执行命令:      # xe pif-list 列出网卡的UUID.  3.执行命令:      # xe p ...

  4. javascript扩展时间方法,格式化,加减日期

    /** *对Date的扩展,将 Date 转化为指定格式的String *月(M).日(d).小时(h).分(m).秒(s).季度(q) 可以用 1-2 个占位符, *年(y)可以用 1-4 个占位符 ...

  5. log4j和web.xml配置webAppRootKey 的问题(一个tomcat下部署多个应用)

    转自:http://blog.csdn.net/arvin_qx/article/details/6829873 在tomcat下部署两个或多个项目时,web.xml文件中最好定义webAppRoot ...

  6. 【算法】插入排序(Insertion Sort)

    (PS:内容参考MIT算法导论) 插入排序(Insertion Sort): 适用于数目较少的元素排序 伪代码(Pseudocode): 例子(Example): 符号(notation): 时间复杂 ...

  7. C++ 对象的定义

    1.考虑下面的方法void Print(const Student& s){ printf("Student[%s:%d]\n", s._Name.c_str(), s._ ...

  8. Javascript 闭包(Closures)

    本文内容 闭包 闭包和引用 参考资料 闭包是 JavaScript 的重要特性,非常强大,可用于执行复杂的计算,可并不容易理解,尤其是对之前从事面向对象编程的人来说,对 JavaScript 认识和编 ...

  9. Android Context完全解析,你所不知道的Context的各种细节

    Context相信所有的Android开发人员基本上每天都在接触,因为它太常见了.但是这并不代表Context没有什么东西好讲的,实际上Context有太多小的细节并不被大家所关注,那么今天我们就来学 ...

  10. javascript数组操作大全-原创

    //1.join() 方法用于把数组中的所有元素放入一个字符串,并通过指定的分隔符进行分隔. //语法:stringObject.join(a)这是它的语法 //a指定分隔符的任意字符串 //返回值: ...