In creating domain records, allow some domains to use https:// instead of http://

This code has been written and will be committed. All links or redirects to specific domains will now follow the assigned scheme for that domain.

WARNING: Since this module is in beta, I have not written a database update function. If you are using HEAD, beta, or beta2, you will need to update the {domain} table of your database.

Add the column:

scheme varchar(8) NOT NULL default 'http'

Here is a MySQL statement for those who need it:

ALTER TABLE `domain` ADD `scheme` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT 'http' NOT NULL ;

Comments

agentrickard’s picture

Status: Reviewed & tested by the community » Fixed

Committed to HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.