Is there a bug in default customer group for registered customers?
In my Magento website, guest checkout is disabled.
The customer should either register or login using existing account.
By default, the registered customers will be put under "General" customer group is a known fact.
But in our site, the registered customers are shown as "NOT LOGGED IN" customers.
Under Customers-> Manage Customers in the admin panel.
I know this is impossible by default, but it is happening.
Is there any known bug, which is causing this.
There are no custom modules which alter this behavior, in our site (Magento EE 1.12.0.0).
Can anybody help me with this?
magento-1.7 admin magento-enterprise customer
add a comment |
In my Magento website, guest checkout is disabled.
The customer should either register or login using existing account.
By default, the registered customers will be put under "General" customer group is a known fact.
But in our site, the registered customers are shown as "NOT LOGGED IN" customers.
Under Customers-> Manage Customers in the admin panel.
I know this is impossible by default, but it is happening.
Is there any known bug, which is causing this.
There are no custom modules which alter this behavior, in our site (Magento EE 1.12.0.0).
Can anybody help me with this?
magento-1.7 admin magento-enterprise customer
add a comment |
In my Magento website, guest checkout is disabled.
The customer should either register or login using existing account.
By default, the registered customers will be put under "General" customer group is a known fact.
But in our site, the registered customers are shown as "NOT LOGGED IN" customers.
Under Customers-> Manage Customers in the admin panel.
I know this is impossible by default, but it is happening.
Is there any known bug, which is causing this.
There are no custom modules which alter this behavior, in our site (Magento EE 1.12.0.0).
Can anybody help me with this?
magento-1.7 admin magento-enterprise customer
In my Magento website, guest checkout is disabled.
The customer should either register or login using existing account.
By default, the registered customers will be put under "General" customer group is a known fact.
But in our site, the registered customers are shown as "NOT LOGGED IN" customers.
Under Customers-> Manage Customers in the admin panel.
I know this is impossible by default, but it is happening.
Is there any known bug, which is causing this.
There are no custom modules which alter this behavior, in our site (Magento EE 1.12.0.0).
Can anybody help me with this?
magento-1.7 admin magento-enterprise customer
magento-1.7 admin magento-enterprise customer
edited 7 mins ago
Utsav Gupta
14212
14212
asked Jun 12 '13 at 10:21
ShathishShathish
1,99922455
1,99922455
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The default customer group id can be configured under
System > Configuration > Customer Configuration > Create New Account Options
Check the value of the Default Group select field. Also check if you override that setting on a store view level.
UPDATE: If you deleted the configured customer group (e.g. General), and then created a new one with the same name, it would actually lead to the behavior you describe. Run the following SQL to check:
SELECT c.*, cg.customer_group_code AS `The Real Group Code`
FROM core_config_data AS c
LEFT JOIN customer_group AS cg ON c.value = cg.customer_group_id
WHERE path = 'customer/create_account/default_group';
The query will also show any store level overrides. Maybe you can add the result to the original question.
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
add a comment |
Review customer_group table, there is should be following groups with correct id:
0 - Not Logged In
1 - General
2 - Wholesale
3 - Retailer
Maybe during db importing/exporting id filed was generated incorrectly.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f4672%2fis-there-a-bug-in-default-customer-group-for-registered-customers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The default customer group id can be configured under
System > Configuration > Customer Configuration > Create New Account Options
Check the value of the Default Group select field. Also check if you override that setting on a store view level.
UPDATE: If you deleted the configured customer group (e.g. General), and then created a new one with the same name, it would actually lead to the behavior you describe. Run the following SQL to check:
SELECT c.*, cg.customer_group_code AS `The Real Group Code`
FROM core_config_data AS c
LEFT JOIN customer_group AS cg ON c.value = cg.customer_group_id
WHERE path = 'customer/create_account/default_group';
The query will also show any store level overrides. Maybe you can add the result to the original question.
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
add a comment |
The default customer group id can be configured under
System > Configuration > Customer Configuration > Create New Account Options
Check the value of the Default Group select field. Also check if you override that setting on a store view level.
UPDATE: If you deleted the configured customer group (e.g. General), and then created a new one with the same name, it would actually lead to the behavior you describe. Run the following SQL to check:
SELECT c.*, cg.customer_group_code AS `The Real Group Code`
FROM core_config_data AS c
LEFT JOIN customer_group AS cg ON c.value = cg.customer_group_id
WHERE path = 'customer/create_account/default_group';
The query will also show any store level overrides. Maybe you can add the result to the original question.
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
add a comment |
The default customer group id can be configured under
System > Configuration > Customer Configuration > Create New Account Options
Check the value of the Default Group select field. Also check if you override that setting on a store view level.
UPDATE: If you deleted the configured customer group (e.g. General), and then created a new one with the same name, it would actually lead to the behavior you describe. Run the following SQL to check:
SELECT c.*, cg.customer_group_code AS `The Real Group Code`
FROM core_config_data AS c
LEFT JOIN customer_group AS cg ON c.value = cg.customer_group_id
WHERE path = 'customer/create_account/default_group';
The query will also show any store level overrides. Maybe you can add the result to the original question.
The default customer group id can be configured under
System > Configuration > Customer Configuration > Create New Account Options
Check the value of the Default Group select field. Also check if you override that setting on a store view level.
UPDATE: If you deleted the configured customer group (e.g. General), and then created a new one with the same name, it would actually lead to the behavior you describe. Run the following SQL to check:
SELECT c.*, cg.customer_group_code AS `The Real Group Code`
FROM core_config_data AS c
LEFT JOIN customer_group AS cg ON c.value = cg.customer_group_id
WHERE path = 'customer/create_account/default_group';
The query will also show any store level overrides. Maybe you can add the result to the original question.
edited Jun 12 '13 at 13:49
answered Jun 12 '13 at 12:41
VinaiVinai
12.6k13176
12.6k13176
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
add a comment |
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Enable Automatic Assignment to Customer Group is disabled and moreover the Default Group is set to General.
– Shathish
Jun 12 '13 at 13:29
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
Added more info in main answer.
– Vinai
Jun 12 '13 at 13:49
add a comment |
Review customer_group table, there is should be following groups with correct id:
0 - Not Logged In
1 - General
2 - Wholesale
3 - Retailer
Maybe during db importing/exporting id filed was generated incorrectly.
add a comment |
Review customer_group table, there is should be following groups with correct id:
0 - Not Logged In
1 - General
2 - Wholesale
3 - Retailer
Maybe during db importing/exporting id filed was generated incorrectly.
add a comment |
Review customer_group table, there is should be following groups with correct id:
0 - Not Logged In
1 - General
2 - Wholesale
3 - Retailer
Maybe during db importing/exporting id filed was generated incorrectly.
Review customer_group table, there is should be following groups with correct id:
0 - Not Logged In
1 - General
2 - Wholesale
3 - Retailer
Maybe during db importing/exporting id filed was generated incorrectly.
answered Jun 12 '13 at 11:00
mageUzmageUz
5,71332248
5,71332248
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f4672%2fis-there-a-bug-in-default-customer-group-for-registered-customers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown