rosen4o
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Very strange issue with cleared settingsAll settings are lost including page cache, cnd and etc.
Forum: Plugins
In reply to: [W3 Total Cache] Very strange issue with cleared settingsMaybe I did not explain very well.
When I open page Performance -> Page Cache and in the section Purge Policy: Page Cache in the field Additional pages:Entering multiple rows like this.
/news/category/
/news/category/category1/Click save -> and all setting of W3 Total Cache are cleared and I need to start configuring it from scratch.
- This reply was modified 5 months, 2 weeks ago by rosen4o.
Forum: Plugins
In reply to: [W3 Total Cache] Very strange issue with cleared settingsI have found some more information
If I enter on once multiple rows like this
/news/category/
/news/category/category1/Then all settings are cleared
Can I add something like
/news/category/*
Forum: Plugins
In reply to: [W3 Total Cache] Very strange issue with cleared settingsI’m just adding some rows in Additional pages: and click save
There is nothing specific only part of the pages are with curylic url
Here is link to image
Forum: Plugins
In reply to: [W3 Total Cache] Very strange issue with cleared settingsI have some options configured at W3 Total Cache
I’m opening Page Cache and in the field for clearing page cache on save entering 2-3 urls. One per line.
On save all settings on this page and all other pages are cleared and I need to configure W3 Total Cache from scratch.
Forum: Plugins
In reply to: [Custom Order Numbers for WooCommerce] Problem with payment pluginYes I can confirm that if I disable Custom Order number plugin error is disappearing.
The code is executed in external file like this<?php if (!function_exists('add_action')){ require_once("../../../wp-load.php"); } if(!session_id()) { session_start(); } $borica = new WC_Gateway_BORICA; $order = $borica->get_borica_order( 111 );
Forum: Plugins
In reply to: [Custom Order Numbers for WooCommerce] Problem with payment pluginIt’s standard payment plugin which get order like this
/** * get_borica_order function. * * @param string $custom * @param string $invoice * @return WC_Order object */ public function get_borica_order( $order_id ) { $order = wc_get_order( $order_id ); if ( ! isset( $order->id ) ) { global $wpdb; // Faster than get_posts() $order_id = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM {$wpdb->prefix}postmeta WHERE meta_key = '_order_number' AND meta_value = %s", (int)$order_id ) ); $order = wc_get_order( $order_id ); } return $order; }
And later I’m using with object from above.
$order->update_status( 'on-hold', "Payment NOT confirmed")
Will check which function should be used
Forum: Fixing WordPress
In reply to: Error establishing a database connection [URL Redirects]Hello,
Unfortunately you have changed your database settings.
You need to put correct database settings in wp-config.php fileForum: Fixing WordPress
In reply to: Force HttpsYou should change your page url to https://www.univsupply.com/ in Settings-> General
Also you should open your theme and change all images like logo and etc to correct path at https domain
And then this error will disappearForum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentAfter emptying space new error is shown
Fix is added[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “Stack trace:”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#0 [internal function]: W3TC\Generic_Plugin->ob_callback(‘<!DOCTYPE html>…’, 9)”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#1 /home/haskovo.info/root/www/wp-includes/functions.php(3598): ob_end_flush()”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#2 /home/haskovo.info/root/www/wp-includes/plugin.php(524): wp_ob_end_flush_all(”)”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#3 /home/haskovo.info/root/www/wp-includes/load.php(671): do_action(‘shutdown’)”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#4 [internal function]: shutdown_action_hook()”
[27-Sep-2016 09:10:08] WARNING: [pool www] child 27639 said into stderr: “#5 {main}”Forum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentYou can ignore last post it was caused by full disk drive
Forum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentIt’s very strange because by this settings everything has working before but now it’s getting this error
WARNING: [pool www] child 27653 said into stderr: “NOTICE: PHP message: Грешка: Got error 28 from storage engine при заявка SHOW FULL COLUMNS FROM
wp_options
изпълнена от do_action(‘admin_init’), W3TC\Extensions_Plugin_Admin->admin_init, update_option, W3TC\DbCache_Wpdb->update, W3TC\DbCache_WpdbInjection_QueryCaching->update, W3TC\_CallUnderlying->update, W3TC\DbCache_Wpdb->update, W3TC\DbCache_WpdbInjection->update, W3TC\DbCache_Wpdb->default_update, W3TC\DbCache_Wpdb->query, W3TC\DbCache_WpdbInjection->query, W3TC\DbCache_Wpdb->default_query”Forum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentWith this fix is working
But on 9.4 version when you publish comment and page cache is cleaned so the new comment is shownForum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentIt’s running on nginx with php-fpm and PHP 7.0.8-1
Forum: Plugins
In reply to: [W3 Total Cache] Error on publish new commentIf I replace the plugin with the older version 0.9.4.1 then this error is gone