This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
PHP / PHP raw post json_decode content-length limit
« on: February 06, 2021, 11:30:30 AM »I have a web server with licensed CWP installed on it and PHP7.4 configured.
Today I wanted to post raw JSON data to my php application and decode it.
<?php
$json = file_get_contents('php://input');
print_r(json_decode($json));
print_r(json_last_error_msg());
But saw that when content-length of JSON self is higher than 8192 symbol raw data didn't encoded and function return empty string.
json_last_error() return "control character error possibly incorrectly encoded"
When I clear POST data there is no content-length limit and I cant post more data
<?php
$json = file_get_contents('php://input');
$json = preg_replace('/[[:cntrl:]]/', '', $json);
print_r(json_decode($json));
print_r(json_last_error_msg());
Why this happen?
2
Apache / Module vhost_rebuild didn't rebuild sub domain configurations.
« on: October 05, 2016, 08:20:14 AM »
Module vhost_rebuild build configuration only for main domains. After rebuilding all from this module sub domains started to show CWP default page. After checking vhosts.conf I saw sub domain configuration are absent. I had to recreate all subdomains and after that all was fine. Please check it. Sorry for my English.
Pages: [1]