Log into your WordPress database using PhpMyAdmin (or a similar MySQL client tool) and execute the following command:
select * from [prefix]_options where option_name=’itsec_away_mode’;
Where [prefix] should be substituted with your WP database prefix.
The option_value column holds the data that needs to be changed.
Depending on the “Type of Restriction” (ToR) chosen when activating Away Mode from the iTSec plugin Settings page it may look similar to this (ToR=”One Time”=s:4:”type”;i:2;):
a:4:{s:7:”enabled”;b:1;s:4:”type”;i:2;s:5:”start”;i:1420624800;s:3:”end”;i:1420625100;}
Change s:7:”enabled”;b:1; to s:7:”enabled”;b:0; to disable the iTSec plugin “Away Mode” option.
dwinden