Author: Oxford

https://wp-rocket.me/blog/object-caching-use-wordpress/ When it comes to caching, there are a lot of different types. There’s browser caching and page caching, not to mention mobile and user caching. If you’re using WP Rocket, you are no doubt already benefiting from these types of caching. But another one you’ll want to add to the mix is object caching. Object caching involves storing database queries and, when enabled on your WordPress site, it can help speed up PHP execution times, reduce the load on your database, and deliver content to your visitors faster. In this post, we’ll cover what object caching is and how it…

Read More

MySQL 8 is the latest version available for the installation. MySQL is a most popular database server for Linux systems, it also supports a large number of platforms. This tutorial will help you to Install MySQL Server 8.0 Community Edition on CentOS/RHEL 7/6, Fedora 30/29/28 using the package manager. Step 1 – Setup Yum Repository First, you need to enable MySQL yum repository in your system provided by MySQL. Execute one of below command as per your operating system version. ### On CentOS/RHEL 7 system ### rpm -Uvh https://repo.mysql.com/mysql80-community-release-el7-3.noarch.rpm ### On CentOS/RHEL 6 system ### rpm -Uvh https://repo.mysql.com/mysql80-community-release-el6-3.noarch.rpm ### On Fedora…

Read More

WP Super cache easyengine (ee) note: If you are using easyengine, you can accomplish everything in this article using following commands: ee site create example.com –wpsc Assumption: You already installed PHP, MySQL, Nginx & Postfix You already installed a fresh WordPress or moved an existing WordPress to current server Based on these assumptions, we will jump to directly a WordPress-Nginx configuration part. Standard WordPress-Nginx configuration with WP Super cache support: As you are getting into Nginx, I hope you don’t need my help with configuring WP Super Cache plugin. Still, make sure you are using “Use mod_rewrite to serve cache files. (Recommended)” option under “Advanced” tab. Following configuration supports: Static Page Caching…

Read More

WooCommerce comes with several shortcodes that can be used to insert content inside posts and pages. Page Shortcodes  – shows the cart page  – shows the checkout page  – shows the user account page  – shows the order tracking form In most cases, these shortcodes will be added to pages automatically via our onboarding wizard and do not need to be used manually. Cart Used on the cart page, the cart shortcode displays cart content and interface for coupon codes and other cart bits and pieces. Args: none Checkout Used on the checkout page, the checkout shortcode displays the checkout process. Args: none…

Read More

Have you ever run into the situation where you have a lot of posts without a featured image and you need to change that to be able to use WordPress Themes which depend upon featured images in their layout? We’ve got a simple solution to this problem. Everyone likes to change up their WordPress site every once in a while, whether its by adding new plugins to expand the functionality, or getting a brand-new look with a fresh theme. Such changes don’t always go smoothly though; implementing a new plugin or theme can bring its own set of issues; for example, what…

Read More

WooCommerce Visual Hook Guide: Single Product Page <?php echo do_shortcode( ‘[ecp code=”vtigerwebform”]’ ); ?> # Edit the functions.php in your wordpress theme folder. add_action( ‘woocommerce_after_single_product’ , ‘shortcode_vtigerwebform’, 5 );   function shortcode_vtigerwebform() {     echo do_shortcode( ‘[ecp code=”vtigerwebform”]’ ); } https://businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/ https://businessbloomer.com/woocommerce-add-content-below-the-single-product-page-images/ https://www.000webhost.com/blog/wordpress-do_shortcode/ https://wordpress.org/plugins/easy-code-placement/

Read More

install php7.2 nginx mariadb 10.3  on centos 7.4 vi /var/local/src/installlnmp.sh yum -y update yum -y install wget zip unzip gzip cd /usr/local/src rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm yum -y install php72w php72w-cli php72w-common php72w-devel php72w-embedded php72w-fpm php72w-gd php72w-mbstring php72w-mysqlnd php72w-opcache php72w-pdo php72w-xml systemctl enable php-fpm systemctl start php-fpm yum -y install gcc gcc-c++ autoconf automake zlib zlib-devel pcre-devel openssl openssl-devel yum -y install nginx wget http://nginx.org/download/nginx-1.15.7.tar.gz tar zxvf nginx-1.15.7.tar.gz cd nginx-1.15.7.tar.gz ./configure –with-poll_module –with-http_stub_status_module –with-http_ssl_module –with-http_geoip_module –prefix=/etc/nginx –sbin-path=/usr/sbin/nginx –modules-path=/usr/lib64/nginx/modules –conf-path=/etc/nginx/nginx.conf –error-log-path=/var/log/nginx/error.log –http-log-path=/var/log/nginx/access.log –pid-path=/var/run/nginx.pid –lock-path=/var/run/nginx.lock –http-client-body-temp-path=/var/cache/nginx/client_temp –http-proxy-temp-path=/var/cache/nginx/proxy_temp –http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp –http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp –http-scgi-temp-path=/var/cache/nginx/scgi_temp –user=nginx –group=nginx –with-compat –with-file-aio –with-threads –with-http_addition_module –with-http_auth_request_module –with-http_dav_module –with-http_flv_module –with-http_gunzip_module…

Read More

server { large_client_header_buffers 4 32k; listen 80; root /var/www/html; server_name cdn.jhhearingaids.com; index index.php index.html; rewrite ^/api/?(.*)$ /webservice/dispatcher.php?url=$1 last; rewrite ^/([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$1$2.jpg.webp last; # try_files ^/([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$1$2.jpg$webp_suffix /img/p/$1/$1$2.jpg$; rewrite ^/([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$1$2$3.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$1$2$3$4.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$1$2$3$4$5.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8.jpg.webp last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9.jpg.webp last; rewrite ^/c/([0-9]+)(-[_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ /img/c/$1$2.jpg.webp last; rewrite ^/c/([a-zA-Z-]+)(-[0-9]+)?/.+\.jpg$ /img/c/$1.jpg.webp last; rewrite ^/([0-9]+)(-[_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ /img/c/$1$2.jpg.webp last; try_files $uri $uri/ /index.php?$args; location ~* ^.+\.(jpe?g|png) { add_header Cache-Control “public, no-transform”; add_header Vary “Accept-Encoding”; try_files $uri$webp_suffix $uri @amazon; expires max; } # location / { # proxy_pass http://amazon.jhhearingaids.com; # try_files…

Read More

By Abdullatif Eymash Become an author The author selected the Apache Software Foundation to receive a donation as part of the Write for DOnations program. Introduction WebP is an open image format developed by Google in 2010 based on the VP8 video format. Since then, the number of websites and mobile applications using the WebP format has grown at a fast pace. Both Google Chrome and Opera support the WebP format natively, and since these browsers account for about 74% of web traffic, users can access websites faster if these sites use WebP images. There are also plans for implementing WebP in Firefox. The WebP format supports…

Read More

This is a very short snippet post so you need to have knowledge about how to configure and customize your NGiNX setup since this is a quick mashup of the config required. Install WebP. sudo apt-get install webp In http {} add the following: map $http_accept $webp_suffix { default “”; “~*webp” “.webp”; } This mapping checks whether the browser client supports WebP images, when it does it will set WebP image files as default source. In location / {} under the server {} add the following: location ~* ^.+\.(jpe?g|png) { add_header Cache-Control “public, no-transform”; add_header Vary “Accept-Encoding”; try_files $uri$webp_suffix $uri…

Read More

After upgrading from 1.7.3.1 to 1.7.5.0 (latest) i cant save the SEO & URLs page (to recreate .htaccess), i always get this errors: Keyword “{id}” required for route “xipblog-archive-wid-module” (rule: “blog/category/{rewrite}.html”) Keyword “{id}” required for route “xipblog-tag-wid-module” (rule: “blog/tag/{rewrite}.html”) Keyword “{id}” required for route “xipblog-single-wid-module” (rule: “blog/post/{rewrite}.html”) See atached screenshoot’s. Any ideas how to solve this? Ok i think i found the solution. And yes is an theme error/bug/feature. What i did: Went to www.domain.com\modules\xipblog (our theme blog module). Edited xipblog.php. For example i searched for xipblog-single-wid-module. and in that array i changed: ‘rule’ =>$main_slug.’/’.$single_slug.’/{rewrite}’.$postfix_slug, to ‘rule’ =>$main_slug.’/’.$single_slug.’/{id}-{rewrite}’.$postfix_slug, No more errors on…

Read More

Hi there, today I would like to show you how to install latest version of OpenSSL (1.1.1c) on CentOS 7 Do I need latest version of OpenSSL? In general – you don’t. Default version is doing great job and it’s secure. I needed it for compiling Apache HTTP with HTTP/2 support back then and now I’m using new version every time it’s released. If you need it for any other reason, this tutorial is for you:) How to check current version of OpenSSL? In order to check current version of installed package you need to execute following command: openssl version…

Read More

Your advertising budget can go a long way by advertising for free on other sites. While you can find numerous options online like Craigslist, you’ll want to make sure you post on alternatives for the widest reach. We curated a list of the most popular free online advertising sites to help get you started. Here are the top 25 free advertising sites the pros use for 2019: 1. Gumtree  [Add URL for 5 Pounds] Gumtree started out as a U.K.-based website but is now gaining ground and serving more locations throughout Europe, Australia, and the United States. Dubbed as the…

Read More

All websites are unique in their own way. We’ve seen trends in ecommerce website design like animation, 360-degree product previews, advanced filtering, and dynamic product search. However, trends don’t guarantee conversion rates or robust user experiences. There are certain elements that every ecommerce site should have to stay relevant and competitive. Here is a list of 15 must-have features that attract online shoppers. 1. User-Friendly This comes from the old K.I.S.S. adage about keeping it simple. Simplicity should be a goal in good design and you don’t have to sacrifice elegance to achieve it. As a matter of fact, studies show that 76% of…

Read More

Last Updated: 1st February 2019 In this guide we are going deep inside the world of private blog networks. Starting from the absolute basics, we’ll be guiding you through how to setup, manage, and use a PBN in 2019. With 8,000 words of step-by-step training, even intermediate to advanced SEOs will learn something new. Let’s begin… Don’t fancy all this work? Have my agency rank your sites for you, read the case studies. Contents [hide] 1 What is a PBN? 2 Is it against Google’s guidelines? 3 Does it work? 4 Why does it work? 5 An Introduction to Metrics 6 Where To Find Domains 7 Finding Hosting For The…

Read More

If you are integrating WordPress into a preexisting site that already has its own homepage, or if you are developing a new WordPress website that is hidden behind a Coming Soon page, you will run into one frustrating problem. If you try to access the WordPress installation by visiting the index.php file, you won’t be able to see it. Instead, WordPress will automatically redirect you from the index.php page to the blog address url, as defined in your WordPress site settings. There are, of course, several ways to get around this problem. Two common ways include: developing the WordPress site in its own directory…

Read More

1 Hoovers.com Hoover’s proprietary company profiles and industry information. 2 Jasminedirectory.com General web directory created to advertise companies, products and services. 3 Business.com A directory of business web sites. 4 Ec21.com Global B2B Marketplace Providing Trade Leads, Product Catalogs, Companies Directories, and Comm…More 5 Pr.com Find businesses, products, services, jobs. Also offers company profiles, press release distribu…More 6 B2byellowpages.com A business-to-business directory that allows buyers and sellers to locate or advertise products…More 7 Tradekey.com TradeKey.com Business to Business marketplace. Connecting over 7 million importers exporter, of…More 8 Businessseek.biz Business web directory offering small business, companies and firms free and paid…

Read More

nginx 301 redirect to www and https website: http://www.cl-light.com -> https://www.cl-light.com {http://cl-light.com + https://cl-light.com} -> https://www.cl-light.com server { listen 80; server_name www.cl-light.com; location / { return 301 https://$host$request_uri; } } server { listen 80; server_name cl-light.com; listen 443 ssl; ssl on; error_page 497 https://$request_uri; ssl_certificate /usr/local/nginx/cert/cl-light.pem; ssl_certificate_key /usr/local/nginx/cert/cl-light.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; location / { return 301 https://www.cl-light.com$request_uri; } server { listen 443; server_name www.cl-light.com; listen 443 ssl; ssl on; ssl_certificate /usr/local/nginx/cert/cl-light.pem; ssl_certificate_key /usr/local/nginx/cert/cl-light.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; } }

Read More

Top100 Free B2B List –In Google searching tool 1. Alibaba.com URL: http://www.alibaba.com Details: Import and export trade leads and opportunities. 2.Bytrade.com URL: http://www.bytrade.com Details: Global manufacturer and factory list,global trademarket place,free buy offer and free sell offer ,global trade,import and export 3. Made-In-China URL: http://www.made-in-china.com Details: Trade Directory of China products, China manufacturers, China exporters and China suppliers. 4. Global Sources URL: http://www.globalsources.com Details: Provides sourcing information to volume buyers and integrated marketing services to suppliers. 5. Ec21.com URL: http://www.ec21.com Details: Import and export trade leads and opportunities. 6. ECplaza.net URL: http://www.ecplaza.net Details: Designed to offer Internet based services, where…

Read More

If you can accomplish the black hat SEO tactics right, you can cut a good figure of benefits from your site.  You can turn your web pages on Google first page. All the functionalities of black hat SEO are not dependent on manual labour. Some have to be done by tools. And, today I basically show you the best 10 black hat SEO tools in the internet marketing world and many successful marketers are using these tools. You can try them. Then, have a look at the top 10 black hat SEO tools or software. XRumer XRumer is fast black…

Read More

Web proxies have been around for quite some time now and have been used by millions of users around the globe. They have a wide range of purposes, most popular being online anonymity, but there are other ways you can take advantage of web proxies. Here are some ideas: Online anonymity Improve online security Improve loading times Block malicious traffic Log your online activity To circumvent regional restrictions In some cases can reduce bandwidth usage How Proxy Server Works The proxy server is a computer that is used as an intermediary between the client and other servers from which client…

Read More

In this post, we go over 10+ ways to speed up your WordPress site and improve Elementor page speed. There’s nothing worse than a website that takes forever to load, right? If you’re like most Internet users, it annoys you to no end and might even push you to hit the “back” button before the site’s content even loads (especially on mobile!). Moreover, you definitely don’t want your WordPress site to be the one that loads slowly. Beyond just plain making for a better user experience, speeding up your WordPress site might also boost your conversion rate. And Google has used page speed…

Read More

15 min read The customer is now on your page, looking for the perfect product that fits his/her need. The very last step is convincing the customer to click the “add to cart” button. How? With an effective product description. Which means – the product description is one of the most important aspects of your online shop when it comes to conversion. But… Even though it holds incredible power, good product copy can be hard to write. It can be especially mind-numbing when you have a long list of items on your product page to work through. We’ve broken it down into…

Read More

Regarding the situation where Google search engine does not include website URLs and Backlink links, use the free tool PING to achieve URL inclusion in search engines! SL No. Ping Sites Domain Authority Alexa Rank 1 Ping-O-matic 70 5,726 2 Twingly 68 31,696 3 Googleping 54 9,004 4 Pingler 53 14,901 5 Pingdom 87 2,369 6 Pingmyurl 52 13,612 7 Feedshark 58 40,113 8 Pingmylink 32 36,789 9 Ping.in 34 39,132 10 Blogbuzzer 35 106,282 11 Bulkping 37 45,306 12 Pingfarm 35 18,184 13 Icerocket 70 29,896 14 Pingoat 30 43,598 15 Pingsitemap 33 39,764 16 Mypagerank 71 27,789…

Read More