9itish
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox is not openingThanks for the awesome plugin @archetyped.
I had two active Lightbox plugins at the same time. This might have caused a conflict and prevented either of them from working.
Everything is working fine now. ??
Forum: Plugins
In reply to: [LiteSpeed Cache] How long do webpages remain in CDN cache?Thanks @qtwrk ??
I am sorry for the confusion in above question. I was talking about the QUIC.cloud CDN cache when I asked how long are dynamic pages cached by the CDN.
Forum: Plugins
In reply to: [LiteSpeed Cache] Load all CSS and JavaScript in the footerThanks @hailite ??
Could you please point me to some documentation about this hook? I tried searching on Google but couldn’t find anything.
I also read somewhere that LiteSpeed is working on a lighter version of the crawler that can be run by website owners. I had a suggestion for that. May be it could just crawl the most popular 50 or 100 pages of the website on a regular basis. This will prevent the server from getting overloaded and still serve a lot of visitors.
Forum: Plugins
In reply to: [LiteSpeed Cache] How long do webpages remain in CDN cache?One more question:
How long does LiteSpeed use the same critical CSS files? For example, if LiteSpeed generates critical CSS for a bunch of pages. Will it always keep using the same critical CSS? For example, will it keep using the same critical CSS after 2 days, 3 months or 2 years?
Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] Currently QUIC.cloud CDN is fully disabled.Thanks @qtwrk. The IP field was empty so I added the server IP address from my cPanel account.
The QUIC.cloud dashboard has an option
Map Both www/non-www to CNAME:
Should I turn it On or Off? I have set both CNAME for both
domain.com
andwww.domain.com
tocxxx.tier1.quic.cloud
.Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] Confusion about QUIC Cloud CDNThanks @qtwrk for the clarification. ??
1. “all other A records are not matter to QC, but only for your own usage.” So, does this mean that I can remove the
origin
record?I thought it was important because it was included in the onboarding tutorial. (https://docs.litespeedtech.com/products/lscdn/onboarding/).
2. So, my DNS records should be for QUIC.cloud should both point to
cxxx.tier1.quic.cloud
?CNAME www cxxx.tier1.quic.cloud CNAME domain.com cxxx.tier1.quic.cloud
I have one more question.
People say that using CDN reduces server load. What does it mean?
1. Does this mean it only reduces bandwidth load.
2. Does it reduce all server load like CPU usage, RAM and Bandwidth.When pages are loaded from the QUIC.cloud cache, is there no communication between my webhost server and client computer?
Thanks.
- This reply was modified 4 years, 8 months ago by 9itish.
Thanks qtwrk ??
LiteSpeed cache is awesome.
The image optimization service is working now. However, I have just one more question.
LiteSpeed replaces all instance of
.jpg
images with corresponding.webp
formats.Not all browsers support WebP format. For example, Safari used on all iOS devices and old browsers like IE11 don’t have support for WebP format.
Will people using these browsers not see any images?
Thanks.
I figured it out.
For anyone else who is facing this problem. Please try the steps mentioned here: https://www.ads-software.com/support/topic/image-optimization-issue-on-v3/
Forum: Plugins
In reply to: [LiteSpeed Cache] LiteSpeed QUIC.cloud CDN is not working.Thanks @qtwrk ??
I meant to say that, once I change the DNS records, it will point to LiteSpeed servers. Now, LiteSpeed servers are meant to cache and serve static resources like images, JavaScript and CSS.
The rest of the webpage will still be served by the servers where my website is hosted. However, the DNS records are not pointed at the servers of my webhost. So, will my website still work normally?
Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] LiteSpeed QUIC.cloud CDN is not working.Thanks qtwrk,
Do I need an account on QUIC.cloud to do “You need to link your domain to QC dashboard” this?
“change your DNS record in order to use QUIC cloud as your CDN”. I have do this in the dashboard of my domain registerar? Right?
I have one more question about changing the DNS. Since, CDN will only serve Images, CSS and JavaScript. How will my actual website serve the pages if the DNS is not pointed to it?
Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed Always Shows Uncached Pages for AdminHi qtwrk,
Everything is un-selected under “Do Not Cache Roles”. This includes Admin, Author, Contributer, Editor, Subscriber.
I have set default public Cache TTL to 86400 seconds and Private Cache TTL to 1800 seconds.
Cache Logged in users is also turned On.
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed Always Shows Uncached Pages for Admin@qtwrk It seems like there has been a misunderstanding. ??
Either I did not understand your last response or I failed to explain my problem clearly at the beginning.
I WANT the randomly generated content to be cached for everyone for 24 hours. It IS being cached for non-admin users.
However, it is NOT CACHED for admin users. How can I also TURN THE CACHE ON for Admin Users.
It is not just about the randomly generated sections. NOTHING is cached for Admin users. Is this intentional in LiteSpeed Cache to always serve fresh content to Admins?
How can I turn on the Cache for Admins?
Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed Always Shows Uncached Pages for AdminHi @qtwrk,
ESI is turned off on the website.
However, the value of Admin Vary Group is set to 99 on the same page while all other groups have a value of 0. LiteSpeed Cache says that “If your site contains public content that certain user roles can see but other roles cannot, you can specify a Vary Group for those user roles. For example, specifying an administrator vary group allows there to be a separate publicly-cached page tailored to administrators (with “edit” links, etc), while all other user roles see the default public page. ”
So, is a non-zero value for Admin Vary Group responsible for creation of non-cacheable pages?
The generated HTML of each page visited by an Admin has the following at the bottom:
<!-- Page uncached by LiteSpeed Cache 2.9.9.2 on 2020-01-29 15:44:19 -->
.On the other hand, a page visited by non-admin has the following at the bottom:
<!-- Page generated by LiteSpeed Cache 2.9.9.2 on 2020-01-29 15:45:18 -->
.how does that “random post” set up? It is a function in my
functions.php
which
picks up five random posts to display on each page using WPQuery.Thanks.
- This reply was modified 5 years, 1 month ago by 9itish.
Thanks Mikko ??
I added the following code to my
functions.php
file. However, it did not seems to make any difference in the search results.function rlv_plural_index($title) { $title = preg_replace('/(\w+)s\s+/', '$1 $1s ', $title); return $title; } add_filter('relevanssi_post_title_before_tokenize', 'rlv_plural_index');
If I am correct, the above should have changed “best herbal soaps under” in the title to “best herbal soap soaps under” for indexing purposes.
After uploading the
functions.php
, I clicked on “Build the Index” in the Relevanssi pluging settings.After that, I used the same search query “best herbal soap under” once more but there was no change in the results. Posts with title “best herbal soaps under” were still not appearing at the top. However, they did appear at the top when I searched for “best herbal soaps under”.
Did I do anything wrong?
Thanks.
- This reply was modified 5 years, 2 months ago by 9itish.