Rasel Pathan
Newbie
- Jun 4, 2025
- 27
- 10
I got hosting from Hostinger, the cache plug-in is set up perfectly, the database is cleared and optimized, but still this problem persists, I talked to support and changed the server, but it didn't improve.
Sorry for the late reply, this is a screenshot of Google Page Speed Insight.Where are you getting these errors?
You're absolutely right, the 2-second benchmark for total page load is a critical goal. Thanks for highlighting that.The nuance here, and the core of my issue, is that the 2206ms figure isn't the full page load time—it's just the initial server response time (Time to First Byte or TTFB). This means the final page load time is significantly longer once all the content, scripts, and styles are rendered.For the affiliate sites I build for clients (affiliated website at darman.store), I always aim for a TTFB under 400ms. A TTFB over 2000ms is a major bottleneck that needs to be fixed at the source before any front-end optimization can be effective. Appreciate the input!Ideally, your web page should load in less than 2 seconds; if it loads within 2 seconds, then disregard all these minor suggestions.
This is fantastic, exactly the kind of high-level technical feedback I was hoping for. Thank you for taking the time to write this out.Try this: detect slow queries and PHP bottlenecks (Query Monitor/New Relic), set up object caching with Redis, bump PHP-FPM/OPcache settings, add a CDN with HTTP/2, switch to a lightweight Nginx/OpenLiteSpeed server, and use PHP 8.1. These tweaks should get your TTFB below 500 ms.
Thanks for asking. I'm running about 8 essential plugins right now. And yes, all images are fully optimized and served in WebP format.How many plugins you are using, did you optimize the images?
Hey Rasel, glad to hear the recommendations resonated! You're definitely on the right path. A more configurable environment like a VPS or cloud instance could indeed help you achieve that sub-500ms TTFB target consistently. Shared plans are often restrictive, particularly for caching and optimization settings. If you decide to move forward with a more robust hosting solution and need help with configurations or fine-tuning, feel free to drop me a DM anytime. Happy to help!This is fantastic, exactly the kind of high-level technical feedback I was hoping for. Thank you for taking the time to write this out.
Here's my situation regarding your points:
Your suggestion about Nginx/OpenLiteSpeed confirms my suspicion that the server stack itself is the primary limitation here. To get the sub-500ms TTFB I aim for on my projects (like the ones on raselpathan.site), a more powerful and configurable hosting environment seems to be the answer.
- Query Monitor: This is my immediate next step. I'm keen to see if a specific query is the bottleneck.
- Object Caching (Redis): That's a great shout. While this specific shared plan from Hostinger likely doesn't support Redis, it's a technique I use for more demanding client projects to great effect.
- CDN & PHP: I'm already on PHP 8.1 and using Cloudflare's CDN, which handles HTTP/2. I'll check what I can do about OPcache settings, though they might be locked down on this plan.
Really appreciate the solid checklist.
Sorry for the late reply, this is a screenshot of Google Page Speed Insight.
You're absolutely right, the 2-second benchmark for total page load is a critical goal. Thanks for highlighting that.The nuance here, and the core of my issue, is that the 2206ms figure isn't the full page load time—it's just the initial server response time (Time to First Byte or TTFB). This means the final page load time is significantly longer once all the content, scripts, and styles are rendered.For the affiliate sites I build for clients (affiliated website at darman.store), I always aim for a TTFB under 400ms. A TTFB over 2000ms is a major bottleneck that needs to be fixed at the source before any front-end optimization can be effective. Appreciate the input!
This is fantastic, exactly the kind of high-level technical feedback I was hoping for. Thank you for taking the time to write this out.
Here's my situation regarding your points:
Your suggestion about Nginx/OpenLiteSpeed confirms my suspicion that the server stack itself is the primary limitation here. To get the sub-500ms TTFB I aim for on my projects (like the ones on raselpathan.site), a more powerful and configurable hosting environment seems to be the answer.
- Query Monitor: This is my immediate next step. I'm keen to see if a specific query is the bottleneck.
- Object Caching (Redis): That's a great shout. While this specific shared plan from Hostinger likely doesn't support Redis, it's a technique I use for more demanding client projects to great effect.
- CDN & PHP: I'm already on PHP 8.1 and using Cloudflare's CDN, which handles HTTP/2. I'll check what I can do about OPcache settings, though they might be locked down on this plan.
Really appreciate the solid checklist.
you can reply all at once with quote featuresThanks for asking. I'm running about 8 essential plugins right now. And yes, all images are fully optimized and served in WebP format.
I've already done the test of disabling all plugins, but the slow server response time (TTFB) persisted. This leads me to believe the root cause isn't related to plugins or images, but is deeper within the server configuration.