0

彼が自分のサイトを開発サーバーから実稼働サーバーに移動するというクライアントの要件があります。

彼は、完全にライブに移行する前に、いくつかのテストやその他の作業を行いたいと考えています。したがって、彼が望んでいるのは、サイトを自分だけに表示することです (何らかの認証を使用して)。

サイトの任意の URL にアクセスしようとするとすぐに、ログイン ページにリダイレクトされます。このログイン ページは、画面全体をカバーする Magento ログイン ページとは異なるため、ログインするまでサイトのコンテンツは表示されません。登録機能ではありません。これはユーザー固有のログインです)

指定されたパスワードとユーザー名でログインした後にのみ、サイトのコンテンツを表示することが許可されます。

index.phpでこのようなことを試しました

$basePath=getcwd();

require_once $basePath.'/app/Mage.php'; メイジ::init();

$currentUrl = Mage::helper('core/url')->getCurrentUrl(); //echo $currentUrl."
";//exit;

if(strpos($currentUrl,"?k=1") ) { $validation=1;
} そうでなければ { $validation=0; }

//出口; if($validation==0 ) {
// echo "
In if validation 0";
'Loginform.php' を含めます。} else {
echo "ddd"; /終了; /

        /**
         * Error reporting
         */
        error_reporting(E_ALL | E_STRICT);

        /**
         * Compilation includes configuration file
         */
        define('MAGENTO_ROOT', getcwd());

        $compilerConfig = MAGENTO_ROOT . '/includes/config.php';
        if (file_exists($compilerConfig)) {
            include $compilerConfig;
        }                                       

        $mageFilename = MAGENTO_ROOT . '/app/Mage.php';
        $maintenanceFile = 'maintenance.flag';

        if (!file_exists($mageFilename)) {
            if (is_dir('downloader')) {
                header("Location: downloader");
            } else {
                echo $mageFilename." was not found";
            }
            exit;
        }

        if (file_exists($maintenanceFile)) {
            include_once dirname(__FILE__) . '/errors/503.php';
            exit;
        }

        require_once $mageFilename;

        #Varien_Profiler::enable();

        if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
            Mage::setIsDeveloperMode(true);
        }

        #ini_set('display_errors', 1);

        umask(0);

        /* Store or website code */
        $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';

        /* Run store or run website */
        $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';

        Mage::run($mageRunCode, $mageRunType);

そして、コンテンツを持つベースディレクトリに Loginform.php ファイルを作成しました。

<?php 
    $basePath=getcwd();
    require_once $basePath.'/app/Mage.php';
    Mage::init();

    $cust=Mage::getModel('customer/customer')->getCollection();

foreach($cust as $customer)
{       
    //echo $customer->getEmail();
}
// echo "<br/>";
// echo $_POST['username'];  
 $email=$_POST['username'];


 echo "<br/>";
    //echo $_POST['password'];  
    //echo md5($_POST['password']); 
 $password=$_POST['password'];

  echo "<br/>";

$customer = Mage::getModel('customer/customer')->setWebsiteId(Mage::app()->getStore()->getWebsiteId());

try 
{
  if($customer->authenticate($email,$password)) 
  {
        //echo 'success<br/>';


        $url=Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB); //exit;
        $url=$url.'index.php'.'?k=1';
        //echo $url;

            //Mage::app()->getResponse()->setRedirect($url); //Redirecting to base url
            //Mage::app()->getFrontController()->getResponse()->setRedirect($url);


            header("Location:$url");        

  }
}
catch (Mage_Core_Exception $e )
{
    echo $e->getMessage();      

}


?>
<html>
<head>
</head>
<body>
    <form method="post" action="Loginform.php"> 
    User Name<input type="text" name="username"/>
    Password<input type="password" name="password"/>
    <input type="submit" name="submit" value="submit"/>
    </form>
</body>

</html>

しかし、このロジックを使用すると、多くの問題に直面しています。いくつかの解決策を提案してください。

4

2 に答える 2

0

特定の顧客をいくつかの一意の顧客グループの下に置くことができ、ファイル内でその顧客グループにチェックを入れることができます.欲しいです

于 2013-03-06T11:14:03.887 に答える