open a ticket as @fln said.Yeah the create reseller packages is all empty with label label on this box as well.
open a ticket as @fln said.Yeah the create reseller packages is all empty with label label on this box as well.
6880666f80571d8e5042394aa4005e9f333ce244
fixes that. Root cause for it is ongoing migration from vue2 to vue3 framework, and part of it is changing the way we perform translations. The problem was lurking there for quite some time.I have same issue too , even i closed firefox and opening again later in next 6 hour , session login still not destroy and i still can open control panel without loginFWIW, since 1.643 the browser session no longer times out for me.
Not even after not using the browser tab for a whole day. Coming back to it, the next day I can just continue where I left off.
Kind of convenient, but.. might not be as safe as an automatic logoff after nnn minutes.
Firefox, latest version.
Would that work for your use case?
33
of edit_options.php
uses null coalesce operator introduced in PHP 7. The issue as there before this DA release, upgrading PHP should resolve it.lol, OK. It was probably the first thing I noticed on what changed.This is not something we consider worth mentioning in the change log, but I am happy to share some low-level details in the discussion .
Still, too many bugs scattered, as usual.
<a href="javascript:var xhr=new XMLHttpRequest();var url='/CMD_LOGIN?json=yes&redirect=yes';xhr.open('POST',url,true);xhr.setRequestHeader('Content-Type','application/json');xhr.onreadystatechange=function(){if(xhr.readyState===4 && xhr.status===200){var json=JSON.parse(xhr.responseText);window.location.reload();}};var data=JSON.stringify({'json':'yes','username':'admin|user_account','referer':'/'});xhr.send(data);">user_account Login</a>
<a href="#" onClick="javascript:var xhr=new XMLHttpRequest();var url='/CMD_LOGIN?json=yes&redirect=yes';xhr.open('POST',url,true);xhr.setRequestHeader('Content-Type','application/json');xhr.onreadystatechange=function(){if(xhr.readyState===4 && xhr.status===200){var json=JSON.parse(xhr.responseText);window.location.reload();}};var data=JSON.stringify({'json':'yes','username':'admin|user_account','referer':'/'});xhr.send(data);">user_account Login</a>
Just something I wonder about. Why not just use the build in option? Select user, login as this user?This is terribly annoying to me, does anyone have a solution?
it's just that that's like 6 clicks away..Just something I wonder about. Why not just use the build in option? Select user, login as this user?
<a href="#" id="myuser_accountlogin">user_account Login</a>
<script language="javascript">
var myuser_accountlogin=document.getElementById("myuser_accountlogin");
function MyGoToClientAccount(){
console.log("clicked");
var xhr=new XMLHttpRequest();
var url='/CMD_LOGIN?json=yes&redirect=yes';
xhr.open('POST',url,true);
xhr.setRequestHeader('Content-Type','application/json');
xhr.onreadystatechange=function(){
if(xhr.readyState===4 && xhr.status===200){
var json=JSON.parse(xhr.responseText);
window.location.reload();
}};
var data=JSON.stringify({'json':'yes','username':'admin|user_account','referer':'/'});
xhr.send(data);
return false;
};
myuser_accountlogin.addEventListener("click", MyGoToClientAccount, false);
</script>