|
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 (path, value) value ('web/secure/protocol', 'http'); insert into core_config_data (path, value) value ('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.
|