Set the complete folder path where your Plex Server logs are, shortcuts are not recognized.
- Click here for help. This is required if you enable IP logging (for PMS 0.9.12 and below).
+ Click here for help. This is required if you enable IP logging (for PMS 0.9.12 and below).
You can set custom formatted text for each type of notification.
- Click here for a list of available parameters which can be used.
+ Click here for a list of available parameters which can be used.
- You can also add tags to exclude certain text depending on the media type. Click
- here to view usage information.
+ You can also add tags to exclude certain text depending on the media type.
+ Click here to view usage information.
@@ -1900,12 +1901,23 @@ $(document).ready(function() {
async: true,
success: function(data) {
if (data !== 'true') {
- $("#debugLogCheck").html("Debug logging must be enabled on your Plex Server. More..");
+ $("#debugLogCheck").html("Debug logging must be enabled on your Plex Server. Click here for help.");
$("#ip_logging_enable").attr("disabled", true);
}
}
});
+ $.ajax({
+ url: 'get_server_pref',
+ data: { pref: 'PublishServerOnPlexOnlineKey' },
+ async: true,
+ success: function(data) {
+ if (data !== 'true') {
+ $("#remoteAccessCheck").html("Remote access must be enabled on your Plex Server. Click here for help.")
+ $("#monitor_remote_access").attr("disabled", true);
+ }
+ }
+ });
// Check to see if our logs folder is set before allowing IP logging to be enabled.
checkLogsPath();