Haha, yeah some of us still stick to the old reliable ones!
While I know the J8 isnât exactly powerful, it used to run Virtualmin fairly smoothly.
Recently, though, itâs started to struggle a bit more â so I was curious if recent changes mightâve impacted performance on older browsers or devices.
Appreciate you taking the time to check
Just a quick note to share that after switching to the Framed theme, the performance issues I was seeing on low-end devices are gone â everything runs noticeably smoother now.
With the default theme on the J8, there is a delay of about 10 seconds when opening the menu and also in the internal menus, and sometimes it becomes impossible to continue. This test was done with a full battery, when the phone is connected to the charger and the power mode is set to Optimized.
It might be worth considering a lightweight or performance-optimized mode in Authentic for broader device compatibility.
Thanks again
Thatâs expected, the Framed Theme has almost no JavaScript and almost no client-side complexity. Itâs basically plain old HTML. Does a lot less, so it can do it a lot faster on a small client.
But, I donât see performance problems with Authentic on my four year old phone, though it was a decent phone at the time (Motorola one 5G ace, which has 6GB of RAM and I think a quad core CPU), and looking at memory and CPU-usage on my desktop my Virtualmin tabs are much less resource intensive than at least half of my open tabsâŠmuch less so than, e.g. YouTube or Slack or GMail or Amazon. It feels like itâs gotten faster, actually, to me. I do recall finding it a bit sluggish on my phone in the past, but Iâm not seeing it with the current version.
So, I dunno, seems like there must be something pathological happening on your phone..itâs two years older than mine and a bit less RAM, but I donât see evidence Virtualmin would be more demanding than many other websites youâre likely to use, so I would think every complicated modern site would be slow, too. Certainly modern web design makes more demands of the client than traditional HTML websites, and thatâs a trade off we should be cognizant of, but I think in this case, itâs a problem specific to something about your environment, but I canât really guess what. Weâd need to see some kind of web dev tools output to figure out what itâs spending so much time on, since we donât seem to be able to replicate it.
Thanks Joe â really appreciate your thoughts and comparison.
Youâre absolutely right about Framed being minimal and faster by design. I also agree that newer phones with better specs seem to handle Authentic just fine â in fact, it performs okay on my newer tablet as well.
Itâs just that the jump in client-side usage between versions surprised me, especially for older but still capable devices like J8. Iâll try digging deeper with the browser dev tools to see what exactly is causing the spikes during menu interaction.
Thanks again â I totally get the trade-offs modern UIs bring, and I appreciate your input.
Just an important note â I tested the older version authentic-theme-23.03.1
on my server, and the interface now works significantly smooth, even on my older phone (Samsung J8).
It seems the recent performance issues I experienced may be related to newer versions of the theme.
Hope this feedback is helpful for your ongoing improvements.
Do you see it on all pages or just specific ones?
Thanks for your response @Ilia
The issue I faced was primarily with the left-side navigation menu. In newer versions of the theme, tapping the menu icon often led to a delayed or unresponsive reaction, and even when the menu did open, the items were either very slow to load or didnât appear at all.
After switching back to version 23.03.1, both the menu toggle and item display began working smoothly and instantly â even on my older phone (Samsung J8).
Later, I did more testing and discovered that resetting the theme to default settings and clearing the theme cache resolved the issue in the latest version as well â despite the fact that my only customization was enabling dark mode.
It seems the problem wasnât necessarily caused by the newer theme itself, but likely due to cached data or a minor configuration conflict.
Hope this feedback helps with troubleshooting or improving future releases.
Just a general, vaguely related question. In the early days coders used to be forced to write compact efficient code. As hardware advanced this was less an issue so coding got a tad more bloated. Has the use of phones made a difference?
Disclaimer. I hate âsmartâ phones and rarely do more than make calls and a few texts on mine. I always get cheap phones and using them is pretty much like being on dial up.
Totally fair â I use a desktop 99% of the time. But hereâs the thing: as a server admin, I canât always count on being at a PC when an issue hits.
Thatâs exactly why testing on low-end phones matters â they expose real UI regressions that might be invisible on desktop.
Plus, admin panels like Virtualmin are inherently modular and heavy (built on Webmin and featuring stats, DNS, mail, Apache controls, etc.), so optimising for minimal load is not just a bonus â itâs practical.
In short: desktops are great â but admins often rely on whateverâs closest. Panels should be snappy even on cheap phones.
If you disable real-time monitoring on the âTheme Configuration: Dashboard and real-time monitoringâ page and fully refresh the page, does it change anything for your Samsung J8?
If it does work better, did you change the default period for storing stats?
Hi @Ilia
Iâve completed testing all three real-time monitoring settings, and here are the results:
-
1. Yes and store state for 20 minutes (default):
Slow menu behavior and increasing lag over time. -
2. Yes without storing stats:
Same as above â no noticeable performance improvement. -
3. No (disable real-time monitoring completely):
Significant performance boost. Menus and dashboard load quickly, and the interface remains responsive even after extended use.
These results suggest that the real-time monitoring feature itself â regardless of the âstore statsâ option â is a key factor in performance issues on low-end devices.
Additionally, I found that Firefox performs noticeably better than Chrome or Edge when using Virtualmin on Android (Samsung J8). It handles the UI more smoothly under the same conditions.
Please let me know if youâd like me to test anything further. If needed, I can also share browser DevTools logs or other diagnostics to assist with investigation.
Iâm thinking about how we could address it⊠For instance, we could run a small benchmark test on initial load, setting a slow mode flag and not opening background socket connections on those devices.
Try creating a small bench.html
file on one of your domains and add the following JavaScript into it. Then open it on your mobile device:
<div id="perf-result">Checking performance...</div>
<script>
(async function potato() {
// Basic hardware signals
const ram = navigator.deviceMemory ?? -1,
cores = navigator.hardwareConcurrency ?? -1;
// Simple benchmark
await new Promise(r => setTimeout(r, 25));
let sum = 0;
const N = 1_000_000,
start = performance.now();
for (let i = 0; i < N; ++i) {
sum += Math.sqrt(i % 100);
}
const time = performance.now() - start,
isSlow = (ram <= 2 && ram !== -1) || cores < 4 || time > 50,
output = `
<p><strong>Benchmark time:</strong> ${time.toFixed(1)} ms</p>
<p><strong>RAM:</strong> ${ram} GB</p>
<p><strong>CPU cores:</strong> ${cores}</p>
<p><strong>Slow device:</strong> ${isSlow ? 'Yes' : 'No'}</p>
`;
document.getElementById('perf-result').innerHTML = output;
})();
</script>
Ah, yes, I too disable realtime stats on the dashboard on low end Virtualmin systems.
I should have mentioned that in my earlier comment.
We could make it automatic, though.
Anyone reading this, try the test on your mobile devices and let me know the results you get. Donât forget to mention the device name.
I tweaked the code so it doesnât mark the device as slow when the RAM canât be detected, which can only happen in Chromium-based browsers.
Benchmark time: 41.2 ms
RAM: 4 GB
CPU cores: 8
Slow device: No
This is the result on a Moto G30 connected via VoLTE to a low end Virtualmin systems, vps01.indiax.com - the specs are mentioned in an earlier comment.
Thanks!
I made it simpler for everyoneâjust open this link, and report the results:
This is much easier to report. Thanks Ilia!
Device: moto g(30)
Browser: Chrome
Benchmark time: 23.2 ms
RAM: 4 GB
CPU cores: 8
Slow device: No
Cool, thanks @calport! Letâs see what others report. I assume we can just use a simple test: if CPU cores are 2 or fewer then device is slow. I really wonder what @asadister reports back.