バージョン選択

フォーラム

メニュー

オンライン状況

46 人のユーザが現在オンラインです。 (37 人のユーザが フォーラム を参照しています。)
登録ユーザ: 0
ゲスト: 46
もっと...

サイト内検索

質問 > 管理機能 > 会員情報の確認パスワードについて

管理機能

新規スレッドを追加する

スレッド表示 | 新しいものから 前のトピック | 次のトピック | 下へ
投稿者 スレッド
oranosato
投稿日時: 2017/8/10 10:43
対応状況: −−−
新米
登録日: 2017/8/10
居住地:
投稿: 6
会員情報の確認パスワードについて
[現象] 会員情報の編集画面で、パスワードは入力されていますが、確認用パスワードの部分が表示されません。
tao_s
投稿日時: 2017/8/13 21:00
対応状況: −−−
仙人
登録日: 2008/8/20
居住地: 東京
投稿: 796
Re: 会員情報の確認パスワードについて
バージョンいくつでしょうか?
管理画面でしょうか?マイページでしょうか?
cssで非表示になっているとか、formのtwigファイルが変更されているとか無いですか?


----------------
EC-CUBEカスタマイズ相談してください。
緊急のEC-CUBEの障害対応
EC-CUBEカスタマイズブログ

umebius
投稿日時: 2017/8/14 7:25
対応状況: −−−
登録日: 2016/7/22
居住地:
投稿: 2085
Re: 会員情報の確認パスワードについて
src/Eccube/Form/Type/Front/EntryType.php
で、メールアドレスのFormTypeがrepeated_emailではなくemailになっているのでは?

            ->add('email', 'repeated_email')
            ->add('password', 'repeated_password')


----------------
EC-CUBEカスタマイズ・高速化・脆弱性対策・SEO ご相談ください。

2系・3系から4系へのバージョンアップ実績豊富

oranosato
投稿日時: 2017/8/24 16:34
対応状況: −−−
新米
登録日: 2017/8/10
居住地:
投稿: 6
Re: 会員情報の確認パスワードについて
返答ありがとうございます。
emailではなく、教えていただいたrepeated_emailになっています。
oranosato
投稿日時: 2017/8/24 16:37
対応状況: −−−
新米
登録日: 2017/8/10
居住地:
投稿: 6
Re: 会員情報の確認パスワードについて
追加です。
現在、下記のような状態です。

<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


namespace Eccube\Form\Type\Front;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Validator\Constraints as Assert;

class EntryType extends AbstractType
{
protected $config;

public function __construct($config)
{
$this->config = $config;
}

/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name', 'name', array(
'required' => true,
))
->add('kana', 'kana', array(
'required' => true,
))
->add('company_name', 'text', array(
'required' => false,
'constraints' => array(
new Assert\Length(array(
'max' => $this->config['stext_len'],
)),
),
))
->add('zip', 'zip')
->add('address', 'address')
->add('tel', 'tel', array(
'required' => true,
))
->add('fax', 'tel', array(
'required' => false,
))
->add('email', 'repeated_email')
->add('password', 'repeated_password')
->add('birth', 'birthday', array(
'required' => false,
'input' => 'datetime',
'years' => range(date('Y'), date('Y') - $this->config['birth_max']),
'widget' => 'choice',
'format' => 'yyyy/MM/dd',
'empty_value' => array('year' => '----', 'month' => '--', 'day' => '--'),
'constraints' => array(
new Assert\LessThanOrEqual(array(
'value' => date('Y-m-d'),
'message' => 'form.type.select.selectisfuturedate',
)),
),
))
->add('sex', 'sex', array(
'required' => false,
))
->add('job', 'job', array(
'required' => false,
))
->add('save', 'submit', array('label' => 'この内容で登録する'))
->addEventSubscriber(new \Eccube\Event\FormEventSubscriber());
}

/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Eccube\Entity\Customer',
));
}

/**
* {@inheritdoc}
*/
public function getName()
{
// todo entry,mypageで共有されているので名前を変更する
return 'entry';
}
}
oranosato
投稿日時: 2017/8/24 16:41
対応状況: −−−
新米
登録日: 2017/8/10
居住地:
投稿: 6
Re: 会員情報の確認パスワードについて
返答ありがとうございます。
バージョンは3.0.10で、 サーバーOS Linux s431-3、DBサーバー
MySQL 5.6.36、PHP 5.6.30になります。
管理画面でのことで、変更はなしです。
スレッド表示 | 新しいものから 前のトピック | 次のトピック | トップ


 



ログイン


EC-CUBE公式 Amazon Payプラグイン

統計情報

総メンバー数は88,288名です
総投稿数は109,688件です

投稿数ランキング

1
seasoft
7365
2
468
3217
3
AMUAMU
2712
4
nanasess
2303
5
umebius
2085
6
yuh
1818
7
h_tanaka
1610
8
red
1567
9
mcontact
1240
10
tsuji
958
11
fukap
907
12
shutta
835
13
tao_s
796
14 ramrun 789
15 karin 689
16 sumida 641
17
homan
633
18 DELIGHT 572
19
patapata
502
20
flealog
485


ネットショップの壺

EC-CUBEインテグレートパートナー

Copyright© EC-CUBE CO.,LTD. All Rights Reserved.