Click here to Skip to main content
15,894,825 members

Comments by Lê Huy Tú (Top 15 by date)

Lê Huy Tú 11-Apr-22 14:10pm View    
Thanks for your enthusiasm!
Lê Huy Tú 11-Apr-22 13:52pm View    
How should I deal with the problem? I tried following this method: https://stackoverflow.com/questions/53386110/the-size-of-dynamic-response-body-is-over-the-limit
Lê Huy Tú 11-Apr-22 13:42pm View    
Do you use skype? Can I text you?
Lê Huy Tú 11-Apr-22 13:40pm View    
This may be fine what the error:

The dynamic response body size is over the limit, the response will be truncated by the web server. The limit is set in the key 'maxDynRespSize' located in the tuning section of the server configuration, and labeled 'max dynamic response body size'.
Lê Huy Tú 11-Apr-22 13:34pm View    
So here are the top:

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

-- Cấu trúc bảng cho bảng `wp_actionscheduler_actions`
--

CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint(20) UNSIGNED NOT NULL,
`hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`group_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`attempts` int(11) NOT NULL DEFAULT 0,
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;