Viewing 4 replies - 1 through 4 (of 4 total)
  • @zoker

    No this is not currently included as a feature in the iTSec plugin.

    Use the SSL ‘Per content’ setting and then use insert SQL statements on the [prefix]postmeta table for every post\page (except 1) to enable the ‘Enable SSL:’ setting from phpMyAdmin.

    For example if you have 5 posts (id=1 to 5) and you want to exclude post id 3 from SSL:

    insert into [prefix]postmeta (meta_id, post_id, meta_key, meta_value) VALUES (NULL,’1′,’itsec_enable_ssl’,’1′);
    insert into [prefix]postmeta (meta_id, post_id, meta_key, meta_value) VALUES (NULL,’2′,’itsec_enable_ssl’,’1′);
    insert into [prefix]postmeta (meta_id, post_id, meta_key, meta_value) VALUES (NULL,’4,’itsec_enable_ssl’,’1′);
    insert into [prefix]postmeta (meta_id, post_id, meta_key, meta_value) VALUES (NULL,’5,’itsec_enable_ssl’,’1′);

    Where [prefix] should be substituted with your database tables prefix (eg: wp_).

    Needless to say the above procedure is at your own risk and should only be performed after creating a database backup.

    dwinden

    @zoker

    If my previous post answered your question please mark this topic as ‘resolved’.

    dwinden

    Thread Starter Zoker

    (@zoker)

    Yes solved, but it would be much better to included this as feature.

    @zoker

    I Agree.

    You can submit an enhancement request here.

    dwinden

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Excluded one page from SSL’ is closed to new replies.