DJBLACKB2S 0 Posted January 8, 2024 Posted January 8, 2024 Olá tudo bem ? Estava usando o emby no Windows Server 2022 versão 21H2. Após terminar o ratreio de tod meu conteúdo que levou 6 dias, usei uns 2 dias e quando fui reiniciar o PC o emby não abriu mais. seguem as informações do arquivo de log, e uma foto da msg apresentada ao tentar executar o emby. .logView .emby-scroller{overflow-x:scroll!important}.logView .virtual-scroller{contain:layout size!important;contain:style size!important}.logView .listItem{width:auto;min-width:100%} define(["exports","./../list/list.js","./../modules/common/globalize.js","./../modules/common/servicelocator.js","./../modules/emby-elements/emby-scroller/emby-scroller.js","./../modules/emby-elements/emby-button/emby-button.js","./../modules/emby-elements/emby-toggle/emby-toggle.js","./../modules/common/textencoding.js","./../modules/commandprocessor.js"],function(_exports,_list,_globalize,_servicelocator,_embyScroller,_embyButton,_embyToggle,_textencoding,_commandprocessor){function LogPage(view,params){var apiClient=ApiClient,html=(params.serverId=apiClient.serverId(),this.supportsViewSettings=!1,this.enableTotalRecordCountDisplay=!1,""),html=(html=(html=(html=(html=(html=(html+='<div class="padded-bottom" style="padding-bottom:2em;">')+("<h2>"+_textencoding.default.htmlEncode(params.name)+"</h2>"))+'<div class="readOnlyContent">'+'<div class="checkboxContainer fldSanitize hide">')+'<label style="width:auto;">'+'<input type="checkbox" is="emby-toggle" class="chkSanitize" checked />')+("<span>"+_globalize.default.translate("AnonymizeLogContents")+"</span>"))+"</label>"+"</div>",_servicelocator.appHost.supports("filedownload")&&(html+='<button is="emby-button" type="button" class="raised raised-mini btnDownload" style="margin-inline-start:0;"><i class="md-icon button-icon button-icon-left">download</i>'+_globalize.default.translate("Download")+"</button>"),_servicelocator.appHost.supports("targetblank")&&(html+='<a is="emby-linkbutton" href="#" target="_blank" class="raised raised-mini btnOpen"><i class="md-icon button-icon button-icon-left autortl"></i>'+_globalize.default.translate("HeaderOpenInNewWindow")+"</a>"),html=html+"</div>"+"</div>",view.querySelector(".itemsViewSettingsContainer").insertAdjacentHTML("beforebegin",html),view.querySelector(".btnDownload"));html&&html.addEventListener("click",function(){var item={Name:this.params.name,Type:"Log",ServerId:this.params.serverId};_commandprocessor.default.executeCommand("download",item,{Sanitize:this.view.querySelector(".chkSanitize").checked})}.bind(this)),view.querySelector(".chkSanitize").addEventListener("change",function(){this.setNewWindowHref(),this.itemsContainer.refreshItems()}.bind(this)),apiClient.isMinServerVersion("4.7.0.21")&&view.querySelector(".fldSanitize").classList.remove("hide"),view.classList.add("logView"),_list.default.call(this,view,params),this.setNewWindowHref()}Object.defineProperty(_exports,"__esModule",{value:!0}),_exports.default=void 0,require(["flexStyles","css!logs/log"]),Object.assign(LogPage.prototype,_list.default.prototype),LogPage.prototype.supportsPlay=function(){return!1},LogPage.prototype.getBaseQuery=function(item){var query=_list.default.prototype.getBaseQuery.apply(this,arguments);return query.name=this.params.name,query.Sanitize=this.view.querySelector(".chkSanitize").checked,query},LogPage.prototype.setNewWindowHref=function(){var params=this.params;this.view.querySelector(".btnOpen").href=ApiClient.getLogDownloadUrl({Name:params.name,Sanitize:this.view.querySelector(".chkSanitize").checked})},LogPage.prototype.virtualChunkSize=function(){return 100},LogPage.prototype.getApiClientQueryMethodName=function(){return"getLogLines"},LogPage.prototype.getListViewOptions=function(items,settings){var options=_list.default.prototype.getListViewOptions.apply(this,arguments);return options.image=!1,options.moreButton=!1,options.action="none",options.fields=["LogLine"],options.highlight=!1,options.verticalPadding=!1,options.code=!0,options.multiSelect=!1,options.contextMenu=!1,options.draggable=!1,options},LogPage.prototype.getSettingsKey=function(){return"log"},LogPage.prototype.setTitle=function(){},LogPage.prototype.getSortMenuOptions=function(){return[]},LogPage.prototype.getVisibleFilters=function(){return[]},LogPage.prototype.getVisibleViewSettings=function(){return{}},LogPage.prototype.getViewSettingDefaults=function(){var viewSettings=_list.default.prototype.getViewSettingDefaults.apply(this,arguments);return viewSettings.imageType="list",viewSettings},_exports.default=LogPage}); define(["exports","./../list/list.js","./../modules/emby-elements/emby-select/emby-select.js","./../modules/emby-elements/emby-scroller/emby-scroller.js","./../modules/emby-elements/emby-button/emby-button.js","./../modules/common/globalize.js","./../modules/common/servicelocator.js"],function(_exports,_list,_embySelect,_embyScroller,_embyButton,_globalize,_servicelocator){function addLogLevelToggle(view){var html=(html=(html='<div class="readOnlyContent flex padded-top"><div class="selectContainer" style="margin-bottom:0;">')+'<select is="emby-select" class="selectLogLevel" label="'+_globalize.default.translate("LabelEnableDebugLogging")+'" >'+function(){var html="";return html+='<option value="yes">'+_globalize.default.translate("Yes")+"</option>",ApiClient.isMinServerVersion("4.7.0.19")&&(html=(html+='<option value="restart">'+_globalize.default.translate("YesUntilServerRestart")+"</option>")+'<option value="rotate">'+_globalize.default.translate("YesUntilLogRotate")+"</option>"),html+='<option value="">'+_globalize.default.translate("No")+"</option>"}()+"</select>")+'<div class="fieldDescription">'+_globalize.default.translate("EnableDebugLoggingHelp")+"</div></div></div>";view.querySelector(".itemsViewSettingsContainer").insertAdjacentHTML("beforebegin",html)}function onLogLevelChanged(){var value=this.value;ApiClient.getServerConfiguration().then(function(config){config.EnableDebugLevelLogging=!!value,config.EnableDebugLevelLogging?config.RevertDebugLogging="yes"===value?null:value:config.RevertDebugLogging=null,ApiClient.updateServerConfiguration(config)})}function LogsPage(view,params){params.serverId=ApiClient.serverId(),this.enableAlphaNumericShortcuts=!1,_list.default.call(this,view,params),addLogLevelToggle(view),view.querySelector(".selectLogLevel").addEventListener("change",onLogLevelChanged)}Object.defineProperty(_exports,"__esModule",{value:!0}),_exports.default=void 0,require(["flexStyles"]),Object.assign(LogsPage.prototype,_list.default.prototype),LogsPage.prototype.onResume=function(options){var view;_list.default.prototype.onResume.apply(this,arguments),view=this.view,ApiClient.getServerConfiguration().then(function(config){var value="";config.EnableDebugLevelLogging&&(value="restart"===config.RevertDebugLogging?"restart":"rotate"===config.RevertDebugLogging?"rotate":"yes"),view.querySelector(".selectLogLevel").value=value})},LogsPage.prototype.supportsPlay=function(){return!1},LogsPage.prototype.getApiClientQueryMethodName=function(){return"getLogs"},LogsPage.prototype.getListViewOptions=function(items,settings){var options=_list.default.prototype.getListViewOptions.apply(this,arguments);return options.fields=["Name","DateModified"],options.image=!1,options.transparentIcon=!0,options.enableDefaultIcon=!0,options.moreButton=!1,options.downloadButton=_servicelocator.appHost.supports("filedownload"),options.openInNewWindowButton=!0,options.action="link",options.multiSelect=!1,options.draggable=!1,options},LogsPage.prototype.getCardOptions=function(items,settings){var options=_list.default.prototype.getCardOptions.apply(this,arguments);return options.action="openlink",options.fields=["Name","DateModified"],options.action="link",options.shape="backdrop",options.defaultBackground=!0,options.draggable=!1,options.multiSelect=!1,options.overlayText=!1,options},LogsPage.prototype.getSettingsKey=function(){return"logs"},LogsPage.prototype.setTitle=function(){},LogsPage.prototype.getSortMenuOptions=function(){return[]},LogsPage.prototype.getVisibleFilters=function(){return[]},LogsPage.prototype.getVisibleViewSettings=function(){return{settings:["imageType"],fields:[]}},LogsPage.prototype.getViewSettingDefaults=function(){var viewSettings=_list.default.prototype.getViewSettingDefaults.apply(this,arguments);return viewSettings.imageType="list",viewSettings},LogsPage.prototype.getItemCountText=function(numItems){return 1===numItems?_globalize.default.translate("OneLog"):_globalize.default.translate("LogCountValue",numItems)},_exports.default=LogsPage});
Luke 42077 Posted January 8, 2024 Posted January 8, 2024 Hi, can you translate the error message in the dialog? Is any emby server log file generated? Emby Server Data Folder
DJBLACKB2S 0 Posted January 8, 2024 Author Posted January 8, 2024 (edited) What do you mean by the dialog box? I didn't understand. What is the exact log path? I sent the log information I found Edited January 8, 2024 by DJBLACKB2S
DJBLACKB2S 0 Posted January 8, 2024 Author Posted January 8, 2024 After six days of organizing my entire library and 2 days of using it, I went to restart the computer and when trying to open Emby, it doesn't work! I've tried everything, and the message I get is: 'The program seems to have closed unexpectedly.
Luke 42077 Posted January 8, 2024 Posted January 8, 2024 Can you try installing the server again on top of your existing version?
DJBLACKB2S 0 Posted January 8, 2024 Author Posted January 8, 2024 But if I have to install it again, will I have to track the entire library?
Luke 42077 Posted January 8, 2024 Posted January 8, 2024 19 minutes ago, DJBLACKB2S said: But if I have to install it again, will I have to track the entire library? No because you're not uninstalling. Just install on top of your existing version.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now