/** * Plugin Name: LiteSpeed Cache * Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration * Description: High-performance page caching and site optimization from LiteSpeed * Version: 7.1 * Author: LiteSpeed Technologies * Author URI: https://www.litespeedtech.com * License: GPLv3 * License URI: http://www.gnu.org/licenses/gpl.html * Text Domain: litespeed-cache * Domain Path: /lang * * Copyright (C) 2015-2025 LiteSpeed Technologies, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ defined('WPINC') || exit(); if (defined('LSCWP_V')) { return; } !defined('LSCWP_V') && define('LSCWP_V', '7.1'); !defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR); !defined('LSCWP_DIR') && define('LSCWP_DIR', __DIR__ . '/'); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU !defined('LSCWP_BASENAME') && define('LSCWP_BASENAME', 'litespeed-cache/litespeed-cache.php'); //LSCWP_BASENAME='litespeed-cache/litespeed-cache.php' /** * This needs to be before activation because admin-rules.class.php need const `LSCWP_CONTENT_FOLDER` * This also needs to be before cfg.cls init because default cdn_included_dir needs `LSCWP_CONTENT_FOLDER` * @since 5.2 Auto correct protocol for CONTENT URL */ $WP_CONTENT_URL = WP_CONTENT_URL; $home_url = home_url('/'); if (substr($WP_CONTENT_URL, 0, 5) == 'http:' && substr($home_url, 0, 5) == 'https') { $WP_CONTENT_URL = str_replace('http://', 'https://', $WP_CONTENT_URL); } !defined('LSCWP_CONTENT_FOLDER') && define('LSCWP_CONTENT_FOLDER', str_replace($home_url, '', $WP_CONTENT_URL)); // `wp-content` !defined('LSWCP_PLUGIN_URL') && define('LSWCP_PLUGIN_URL', plugin_dir_url(__FILE__)); // Full URL path '//example.com/wp-content/plugins/litespeed-cache/' /** * Static cache files consts * @since 3.0 */ !defined('LITESPEED_DATA_FOLDER') && define('LITESPEED_DATA_FOLDER', 'litespeed'); !defined('LITESPEED_STATIC_URL') && define('LITESPEED_STATIC_URL', $WP_CONTENT_URL . '/' . LITESPEED_DATA_FOLDER); // Full static cache folder URL '//example.com/wp-content/litespeed' !defined('LITESPEED_STATIC_DIR') && define('LITESPEED_STATIC_DIR', LSCWP_CONTENT_DIR . '/' . LITESPEED_DATA_FOLDER); // Full static cache folder path '/var/www/html/***/wp-content/litespeed' !defined('LITESPEED_TIME_OFFSET') && define('LITESPEED_TIME_OFFSET', get_option('gmt_offset') * 60 * 60); // Placeholder for lazyload img !defined('LITESPEED_PLACEHOLDER') && define('LITESPEED_PLACEHOLDER', 'data:image/gif;base64,R0lGODdhAQABAPAAAMPDwwAAACwAAAAAAQABAAACAkQBADs='); // Auto register LiteSpeed classes require_once LSCWP_DIR . 'autoload.php'; // Define CLI if ((defined('WP_CLI') && WP_CLI) || PHP_SAPI == 'cli') { !defined('LITESPEED_CLI') && define('LITESPEED_CLI', true); // Register CLI cmd if (method_exists('WP_CLI', 'add_command')) { WP_CLI::add_command('litespeed-option', 'LiteSpeed\CLI\Option'); WP_CLI::add_command('litespeed-purge', 'LiteSpeed\CLI\Purge'); WP_CLI::add_command('litespeed-online', 'LiteSpeed\CLI\Online'); WP_CLI::add_command('litespeed-image', 'LiteSpeed\CLI\Image'); WP_CLI::add_command('litespeed-debug', 'LiteSpeed\CLI\Debug'); WP_CLI::add_command('litespeed-presets', 'LiteSpeed\CLI\Presets'); WP_CLI::add_command('litespeed-crawler', 'LiteSpeed\CLI\Crawler'); } } // Server type if (!defined('LITESPEED_SERVER_TYPE')) { if (isset($_SERVER['HTTP_X_LSCACHE']) && $_SERVER['HTTP_X_LSCACHE']) { define('LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_ADC'); } elseif (isset($_SERVER['LSWS_EDITION']) && strpos($_SERVER['LSWS_EDITION'], 'Openlitespeed') === 0) { define('LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_OLS'); } elseif (isset($_SERVER['SERVER_SOFTWARE']) && $_SERVER['SERVER_SOFTWARE'] == 'LiteSpeed') { define('LITESPEED_SERVER_TYPE', 'LITESPEED_SERVER_ENT'); } else { define('LITESPEED_SERVER_TYPE', 'NONE'); } } // Checks if caching is allowed via server variable if (!empty($_SERVER['X-LSCACHE']) || LITESPEED_SERVER_TYPE === 'LITESPEED_SERVER_ADC' || defined('LITESPEED_CLI')) { !defined('LITESPEED_ALLOWED') && define('LITESPEED_ALLOWED', true); } // ESI const definition if (!defined('LSWCP_ESI_SUPPORT')) { define('LSWCP_ESI_SUPPORT', LITESPEED_SERVER_TYPE !== 'LITESPEED_SERVER_OLS' ? true : false); } if (!defined('LSWCP_TAG_PREFIX')) { define('LSWCP_TAG_PREFIX', substr(md5(LSCWP_DIR), -3)); } /** * Handle exception */ if (!function_exists('litespeed_exception_handler')) { function litespeed_exception_handler($errno, $errstr, $errfile, $errline) { throw new \ErrorException($errstr, 0, $errno, $errfile, $errline); } } /** * Overwrite the WP nonce funcs outside of LiteSpeed namespace * @since 3.0 */ if (!function_exists('litespeed_define_nonce_func')) { function litespeed_define_nonce_func() { /** * If the nonce is in none_actions filter, convert it to ESI */ function wp_create_nonce($action = -1) { if (!defined('LITESPEED_DISABLE_ALL') || !LITESPEED_DISABLE_ALL) { $control = \LiteSpeed\ESI::cls()->is_nonce_action($action); if ($control !== null) { $params = array( 'action' => $action, ); return \LiteSpeed\ESI::cls()->sub_esi_block('nonce', 'wp_create_nonce ' . $action, $params, $control, true, true, true); } } return wp_create_nonce_litespeed_esi($action); } /** * Ori WP wp_create_nonce */ function wp_create_nonce_litespeed_esi($action = -1) { $uid = get_current_user_id(); if (!$uid) { /** This filter is documented in wp-includes/pluggable.php */ $uid = apply_filters('nonce_user_logged_out', $uid, $action); } $token = wp_get_session_token(); $i = wp_nonce_tick(); return substr(wp_hash($i . '|' . $action . '|' . $uid . '|' . $token, 'nonce'), -12, 10); } } } /** * Begins execution of the plugin. * * @since 1.0.0 */ if (!function_exists('run_litespeed_cache')) { function run_litespeed_cache() { //Check minimum PHP requirements, which is 7.2 at the moment. if (version_compare(PHP_VERSION, '7.2.0', '<')) { return; } //Check minimum WP requirements, which is 5.3 at the moment. if (version_compare($GLOBALS['wp_version'], '5.3', '<')) { return; } \LiteSpeed\Core::cls(); } run_litespeed_cache(); } Home Appliance Repair in Gatineau – Treenetra

New Batch Starting on 8th May 2025 ! Contact us today.

   +91-9606044108    Bhubaneswar, Odisha

Home Appliance Repair in Gatineau

Home Appliance Repair in Gatineau

Your Local Device Repair Business.

Our Services

  • Refrigerator Repair
  • Dishwashing machine Repair service
  • Washer Fixing
  • Dryer Repair
  • Oven Repair work
  • Stoves and Cooktop Repair Work
  • Fridge freezer upkeep
  • Range Hood Repair Service
  • Microwave Repair service
  • Device Installation

Our Appliance Repair Service Solutions in Gatineau

  • Refrigerator Repair
  • Dishwashing machine Repair service
  • Washing machine Repair
  • Clothes dryer Repair work
  • Oven Repair service
  • Stove/Cooktop Repair
  • Freezer Repair service
  • Installment Providers

Gatineau, located simply across the Ottawa River from the country’s resources, is a dynamic city in Quebec recognized for its mix of society, all-natural charm, and metropolitan amenities. Home to tourist attractions like Gatineau Park, Canadian Gallery of History, and the ByWard Market close by, Gatineau provides a mix of domestic beauty and urban ease. With busy communities like Aylmer, Hull, and Buckingham, it’s a dreamland for family members and professionals alike.

At RightFix, we proudly offer trusted home appliance fixing services across Gatineau.At site Samsung washer dryer repair Gatineau from Our Articles Whether you remain in Midtown Gatineau, Plateau, or Masson-Angers, our competent technicians are below to guarantee your appliances function faultlessly.

Fridge Repair Providers in Gatineau

Your refrigerator is crucial for protecting food and maintaining your family running smoothly. RightFix offers professional refrigerator repair services in Gatineau, addressing problems such as:

  • Cooling incongruities or fridge freezer problems
  • Dripping water or merging underneath
  • Weird sounds like humming or clicking

We fix all refrigerator models, including French-door, side-by-side, and small designs. Whether it’s a busted compressor, harmed gaskets, or faulty thermostats, we ensure your fridge is recovered to ideal performance. Citizens in Hull and Gatineau Park rely upon us for trustworthy service.

Dishwasher Fixing Services in Gatineau

A broken dish washer can make kitchen cleanup time-consuming and demanding. RightFix specializes in dishwasher repair work services, settling problems such as:

  • Improper water drainage
  • Recipes staying filthy after a cycle
  • Water leaks or merging water

From blocked spray arms to heating element breakdowns, we deal with all dish washer problems with precision. Whether you’re near Les Promenades Gatineau or Aylmer Marina, our professionals are ready to help.

Washing Machine Fixing Solutions in Gatineau

A useful washing machine is critical for handling household washing. RightFix provides reputable washing machine repair solutions in Gatineau, dealing with problems such as:

  • Drums not spinning or draining properly
  • Water leakage throughout procedure
  • Excessive sound or resonances

Whether it’s a motor concern, control board failing, or broken belt, we recover your washing machine’s performance efficiently. Residents in Plateau and Masson-Angers trust us for efficient repairs.

Electric Dryer Repair Work Solutions in Gatineau

A malfunctioning clothes dryer can interrupt your regular and leave you with damp washing. RightFix provides skilled electrical clothes dryer repair solutions, resolving issues such as:

  • No warmth throughout drying out cycles
  • Expanded drying out times
  • Unusual noises or resonances

From thermostat concerns to drum placement problems, our professionals ensure your dryer runs successfully. Whether you’re near Downtown Gatineau or Buckingham, we prepare to aid.

Electric Stove Repair Services in Gatineau

A functional oven is crucial for preparing dishes. RightFix specializes in electrical stove repair services, addressing concerns such as:

  • Irregular or no heating
  • Non-responsive control board
  • Harmed door seals or hinges

From sensor concerns to circuitry mistakes, we ensure your stove works flawlessly. Homeowners in Hull and Gatineau South rely on us for top quality repairs.

Electric Stove Repair Work Providers in Gatineau

A damaged oven can make cooking difficult. RightFix offers professional electric stove repair services, taking care of issues such as:

  • Heaters not heating
  • Unresponsive controls or handles
  • Inconsistent temperatures

From electrical mistakes to broken elements, we guarantee your range runs efficiently. Homeowners near Gatineau Park and Aylmer trust fund us for trustworthy service.

Electric Cooktop Repair Providers in Gatineau

A smooth and functional cooktop is a cooking area vital. RightFix provides experienced electrical cooktop repair services, repairing issues such as:

  • Split or harmed glass surface areas
  • Faulty burner
  • Less competent controls

From traditional to induction cooktops, we handle all kinds of repair work. Locals in Buckingham and Plateau rely upon us for reputable options.

Fridge Freezer Fixing Provider in Gatineau

A dependable fridge freezer is essential for food conservation. RightFix provides expert fridge freezer repair service solutions, addressing problems such as:

  • Frost build-up
  • Temperature variances
  • Strange or loud noises

Whether it’s a compressor issue or thaw timer malfunction, we recover your freezer’s functionality successfully. Offering areas like Aylmer and Downtown Gatineau, we’re here to assist.

Variety Hood Repair Service Solutions in Gatineau

A properly working range hood keeps your cooking area air tidy. RightFix supplies trusted range hood repair service solutions, fixing:

  • Poor suction or airflow
  • Non-functional lights or controls
  • Rattling or loud operation

From motor concerns to duct obstructions, we guarantee your variety hood works perfectly. Locals near Les Promenades Gatineau and Hull trust us for quick solution.

Microwave Repair Service Providers in Gatineau

A microwave is a convenient kitchen appliance, and a malfunction can be turbulent. RightFix concentrates on microwave repair service solutions, addressing problems such as:

  • Microwave not heating
  • Turntable not rotating
  • Triggers or unusual sounds

From sensor concerns to door alignment troubles, we recover your microwave’s functionality. Whether you’re near Masson-Angers or Aylmer Marina, we’re here to aid.

Leave a Reply

Your email address will not be published. Required fields are marked *