Try the Demo

Magento Forum

   
Error -12263
 
rajbrades
Member
 
Total Posts:  53
Joined:  2007-09-04
 

I’ve installed and went through set-up. When attempting to move to the backend admin section (http://www.karlivangroup.com/admin), I’m getting this error:

http://www.karlivangroup.com has sent an incorrect or unexpected message. Error code -12263

What’s going on here?

Ryan

 
Magento Community Magento Community
Magento Community
Magento Community
 
Moshe
Magento Team
 
Avatar
Total Posts:  1770
Joined:  2007-08-07
Los Angeles
 

Most probably during installation you’ve supplied invalid combination of protocol and port.

For example you had for secure connection protocol HTTPS and port 80

 Signature 

- I would love to change the world, but they won’t give me the source code -

 
Magento Community Magento Community
Magento Community
Magento Community
 
rajbrades
Member
 
Total Posts:  53
Joined:  2007-09-04
 

That’s what I thought. So how do I solve this problem then? Would I have to upload a fresh install or is there another solution?

Ryan

 
Magento Community Magento Community
Magento Community
Magento Community
 
Moshe
Magento Team
 
Avatar
Total Posts:  1770
Joined:  2007-08-07
Los Angeles
 

Run this on your database:

update core_config_data set value='http' where path='web/secure/protocol';
update core_config_data set value='80' where path='web/secure/port';
After that you can set in admin the correct values.

 Signature 

- I would love to change the world, but they won’t give me the source code -

 
Magento Community Magento Community
Magento Community
Magento Community
 
rajbrades
Member
 
Total Posts:  53
Joined:  2007-09-04
 

Thanks that worked beautifully!

 
Magento Community Magento Community
Magento Community
Magento Community
 
harkonnen
Jr. Member
 
Total Posts:  1
Joined:  2008-03-13
 
Moshe - 16 November 2007 07:24 PM

Run this on your database:

update core_config_data set value='http' where path='web/secure/protocol';
update core_config_data set value='80' where path='web/secure/port';
After that you can set in admin the correct values.

I have same problem “has sent an incorrect or unexpected message. Error code -12263”

I tried your method but I found out that there are no records of ‘web/secure/p%’ So I just inserted,

insert into core_config_data (pathvaluevalue ('web/secure/protocol''http');
insert into core_config_data (pathvaluevalue ('web/secure/port'80);
And select path, value from core_config_data where path like ‘web/secure/p%’;
shows,
+---------------------+-------+
| path | value |
+---------------------+-------+
| web/secure/protocol | http |
| web/secure/port | 80 |
+---------------------+-------+

But I have same problem.
Please help me. I have magento-installer-0.8.17240.

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top