Hi Gonebeta,
I could not manage to reproduce the issue, event with E_NOTICE activated in my php.ini. But may I ask you to try the following before I submit an update?
1. Locate the lines 57 to 61 in the file settings.php
2. Replace them with this: (let’s hope the code tag works!)
3. Tell me if the message disappear and I’ll post the update ??
Thanks,
Nico
/////////////////////////////
$this->options[] = array('name'=>'wp-door-keyname', 'type'=>'text', 'label'=>'Key name', 'callback'=>array($this, 'field_callback'), 'default'=>'_key', 'sanitization'=>array($this, 'sanitize_key_callback'));
$this->options[] = array('name'=>'wp-door-keyvalue', 'type'=>'text', 'label'=>'Key value', 'callback'=>array($this, 'field_callback'), 'default'=>'_value', 'sanitization'=>null);
$this->options[] = array('name'=>'wp-door-errormessage', 'type'=>'text', 'label'=>'Error message', 'callback'=>array($this, 'field_callback'), 'default'=>'error', 'sanitization'=>null);
$this->options[] = array('name'=>'wp-door-disable-xml-rpc', 'type'=>'bool', 'label'=>'Disable XML RPC', 'callback'=>array($this, 'field_callback'), 'default'=>'on', 'sanitization'=>null);
$this->options[] = array('name'=>'wp-door-redirect-home', 'type'=>'bool', 'label'=>'Redirect to home page on error', 'callback'=>array($this, 'field_callback'), 'default'=>'off', 'sanitization'=>null);
/////////////////////////////
-
This reply was modified 8 years ago by
toxnico.