[Guide] Speed up your Wordpress website with Redis + Free Nulled Plugin

you need to install redis in the server as well,
php-redis is only made as an integration for redis to work with php,

and you need redis cache plugin to make it work with wordpress easily,
this is optional, but you'll have to make it work manually tho
Thank you have no luck I must be some type of wunderkind.....:-(
First I enabled redis in the cpanel php settings PHP version 8.
Then install redis cache plugin, set thi srule in wp-config.php:
/**
* REDIS config
*/

define('WP_REDIS_HOST', '176.62.167.157');
define('WP_REDIS_PORT', '10039');
define('WP_REDIS_PASSWORD', 'password');
define('WP_REDIS_MAXTTL', '86400');

But no luck the redis cache plugin dashboard shows: Redis is unreachable: Connection timed out [tcp://176.62.167.157:10039]

:-(
 
Thank you have no luck I must be some type of wunderkind.....:-(
First I enabled redis in the cpanel php settings PHP version 8.
Then install redis cache plugin, set thi srule in wp-config.php:
/**
* REDIS config
*/

define('WP_REDIS_HOST', '176.62.167.157');
define('WP_REDIS_PORT', '10039');
define('WP_REDIS_PASSWORD', 'password');
define('WP_REDIS_MAXTTL', '86400');

But no luck the redis cache plugin dashboard shows: Redis is unreachable: Connection timed out [tcp://176.62.167.157:10039]

:-(
you have to install/enable redis app for the server, not just for php,
i believe you should find it under the software tab, then change the config to whatever ip/ports are being used,
make sure to reboot php & LS (if used) for things to take effect,

do not share your ip/ports/passwords online as well,
your giving free desert for spammers/hackers
 
you have to install/enable redis app for the server, not just for php,
i believe you should find it under the software tab, then change the config to whatever ip/ports are being used,
make sure to reboot php & LS (if used) for things to take effect,

do not share your ip/ports/passwords online as well,
your giving free desert for spammers/hackers
ooops thank you man, in c panel software is it a terminal where I must doing command lines? Now must search in google for the command line to install redis ufffff........I have headache.....

For what I paying money to a managed /shared webhosting when I must do so much things myself ?
 
ooops thank you man, in c panel software is it a terminal where I must doing command lines? Now must search in google for the command line to install redis ufffff........I have headache.....

For what I paying money to a managed /shared webhosting when I must do so much things myself ?
if you're paying for managed hosting, then you should ask them for whatever you want & they'll do the work as long as it's supported,
the thread became a little bit spammy, just make google searches whenever your stuck and comment back in here if you can't find solutions
 
now the namecheap live chat agent try to install it that's a lot of complicated process to install redis maybe memcache is more easier, a shame when I must do such complicated things on a shared/managed webhosting like as I have an unmanaged vps......
 
if you're paying for managed hosting, then you should ask them for whatever you want & they'll do the work as long as it's supported,
the thread became a little bit spammy, just make google searches whenever your stuck and comment back in here if you can't find solutions
yes ok .......
 
There are a ton of guides shared here in BHW covering everything you need to do to speed up your wordpress website,
I won't be creating another duplicate thread with the same information,
With this guide, you'll learn how to use Redis in your WP website to get even faster loading speed & cache the wesbite/pages/posts queries

Before starting:
  • What's Redis: in simple terms, Redis is a caching software that can be used to cache most of the php & database queries in the server RAM,
    RAM is considered way faster than any type of disk storage, including NVME M2, you're queries will be served almost instantly
  • What's the requirements: you'll need a server that support Redis to be installed as well as some RAM to be allocated to the application, which can vary depending on the website
What's the best use of Redis:
  • Mainly it's best for websites with high traffic-to-pages ratio, meaning if you got too many pages (xxK+) each receiving a couple of visits daily it won't really be worth,
    Simply because you'll need too much RAM which could be costly, if your website have a few (=<1K) pages with a ton of traffic, this is right for you
  • Example of websites that shouldn't be using Redis: Any type of of auto blogs with thousands of pages & low traffic, movie/anime/manga/tv-shows type of websites, programmatic SEO type of websites with ton of pages, etc...
  • Example of websites that should consider using Redis: Landing pages websites, Most blog websites, E-commerce websites, Tool websites, Data reporting websites, etc...
How to install Redis:
I won't be making a full section for this as the case varies depending on the panel and/or server OS you're using, i personally use aaPanel and it's fairly easy to install & use,
but here are a few guides in most common panels & servers OS':
  • Install Redis in Ubuntu: https://www.hostinger.com/tutorials/how-to-install-and-setup-redis-on-ubuntu/
  • Install Redis in Centos: https://www.digitalocean.com/community/tutorials/how-to-install-secure-redis-centos-7
  • Install Redis in Cpanel: https://my.kualo.com/knowledgebase/53_cpanel-how-tos/1409_how-to-set-up-redis-in-cpanel.html
After installing Redis for the server, change the allocated RAM depending on your current usage, server & website, you can change this later as well, feel free to test,
You have to install the redis extension in PHP to be able to use it with your PHP scripts, in our case to be able to work with Wordpress

How to install Redis in Wordpress:
  • First, you'll need to download & install Redis cache pro plugin, the link for the nulled version is provided at the bottom of the thread along with VT Scan,
    If you're not comfortable with the provided plugin file(s), or want to get frequent updates of the plugin, you can always get Deleted member 752298 service for this ^^
  • After installing the plugin in Wordpress, you have to add the following lines in the wp-config.php file (located at the main website folder):
    PHP:
    define('WP_MEMORY_LIMIT', '1024M');define('WP_CACHE_KEY_SALT', 'string');
    define('WP_CACHE', true);
    define('WP_REDIS_CONFIG', [
        'host' => '127.0.0.1',
        'port' => 6379,
        'database' => 0, // change for each site
        'maxttl' => 3600 * 24 * 7, // 7 days
        'timeout' => 1.0,
        'read_timeout' => 1.0,
        'prefetch' => true,
        'split_alloptions' => true,
        'strict' => true,
        'debug' => false,
    ]);
    
    define('WP_REDIS_DISABLED', false);
    You can change the configuration depending on the server & website as well as your Redis server configuration,
    Whatever needed to cache most of the websites/pages queries,
    Remember to match the Redis server login details as well
  • Now, to make sure the plugin setup is in point and Wordpress is connected to Redis, go to Settings > Object Cache, it should look something like this:
    View attachment 320625
Redis is now installed, configured & working, it will be creating cached versions of your PHP/MySQL queries and your website should get faster in the next 24 Hours,
Depending on the website/server & usage, make sure to change the configuration of both Redis application & website allocated memory & cache to meet your needs

Download the plugin here:
  • Redis Object Cache Pro download link: https://file.io/Ay1NejR2StHf (expires after 1 year)
  • VT Scan: https://www.virustotal.com/gui/file/cdcc8d1c0ce65f8508e02f8ce7392cf6d7ff79ef501168d00b1960286f7cd8ce
Please let me know if any i need to add anything to the thread,
Don't hesitate to post any questions/suggestions as well!

Can you please re-upload ?
File deleted :(
 
The easy solution is: order a good fast webhosting you not need more. A good webhosting for around $12-15 monthly billing will give you a fast loading site which will load fully page in 1,5-.2 seconds that's really fine and fast. Ok some webhosting like rocket.net are little bit faster and cost more, hosting who have edge cdn cache include in their plans.

But be carefull some cdn can make your Wordpress theme break, means it gets a lot of layout shifts and jumping navigation links and all that crap, then disable the cdn. Another cause of these layout shifts (my experience with it);

a) the Theme develope rnot fix it not support the free theme
b) your cpanel PHP Version based on my experience, Version 8.1, 8.2 causing these layout shifts. So better using Version 8.0 or 7.9 and all will be fine.

Happy Monday !
 
Sorry for the late update, here you go:

Link: https://www.mediafire.com/file/ljs2ay38b5m9wpw/object-cache-pro.zip/file
VT Scan: https://www.virustotal.com/gui/file/8117a43eb7ae9defe8807d82dc996f2dd47cd89fe85a69fa4a2568f86a0e3cca

Note: the latest 1.21.3 version is causing a fatal error for most websites, this is the 1.21.2 version, it will do the work
you still use it? i see my version is 2.4 in the free version
 
I find a lot of free WP themes in wordpress org not looking good, horrible, elements, colors, all is not well aligned in harmony.

Squarespace themes are aesthetical, wp not so. Can't say if their new SS version loads the site fast. And SS has it's limits when you want selling workshops with paypal or WISE bank account or your physical bank account, SS has only Stripe and paypal.

Guys when you get nulled premium themes do you not live at risk getting a copyright infringement lawsuit from the theme developer? Then your webhosting will sbutdown your site I guess?

I like the DIY theme , the seo is better here, because it's coded to show the google crawler your header and menue first, then your page content, the sidebsr content comes at least.

With WP or SS themes not, the google crawler here crawls the sidebar first then your page content, But that should not be so.

Ufffff long text but happy friday to you!
 
Last edited:
I find a lot of free WP themes in wordpress org not looking good, horrible, elements, colors, all is not well aligned in harmony.

Squarespace themes are aesthetical, wp not so. Can't say if their new SS version loads the site fast. And SS has it's limits when you want selling workshops with paypal or WISE bank account or your physical bank account, SS has only Stripe and paypal.

Guys when you get nulled premium themes do you not live at risk getting a copyright infringement lawsuit from the theme developer? Then your webhosting will sbutdown your site I guess?

I like the DIY theme , the seo is better here, because it's coded to show the google crawler your header and menue first, then your page content, the sidebsr content comes at least.

With WP or SS themes not, the google crawler here crawls the sidebar first then your page content, But that should not be so.

Ufffff long text but happy friday to you!
You certainly won't get any DMCA notices for using nulled plugins or themes,
As part of Wordpress, they all comes under GPL, which means they're totally open source and can be used & distributed for free,
They can get you some legal problems if you're selling these (legally and publicly) and making a noise,
So you're fine as long as you get clean files that won't get you hacked (Deleted member 752298 is trusted if you're looking for one)
 
Use the Redis plugin only works when your webhost provider has serverside installed the redis cache, without that a Redis plugin not works.
 
Edge can load WP slower due to JS/CSS differences. Make sure Redis is compatible with PHP 8, avoid conflicting cache layers, and test with a lightweight VPS for more consistent speeds across browsers.
 
Back
Top