Solved DA 1.62 RC2 Problem with realtime console output

jamgames2

Verified User
Joined
Aug 16, 2019
Messages
1,461
Browser: Opera
Centos 8 with CgroupV2 enable

when start build,.... eg. builld php
it's not show output what's going on until success building
eg. it show only
Code:
Opening log..


in now, for quick fix
just add ' echo "Content-Encoding: none\n"; ' to "/build_software_command.raw" and "/show_log.raw"
Code:
echo "HTTP/1.1 200 OK\n";
echo "Content-Encoding: none\n";
echo "Content-Type: text/html\n\n";
other page I don't test it, I just test only Build Software Page
anyelse suggestion ?



UPDATE 2021 June 05
Code:
echo "HTTP/1.1 200 OK\n";
echo "Content-Encoding: none\n";
echo "Content-Type: text/event-stream\n\n";
"Content-Type: text/event-stream" with "Content-Encoding: none" better than"text/html"
but work in some newest browser
because browser need some data 1024bytes before display
 
Last edited:
Even on "/CMD_ADMIN_BACKUP?action=monitor&pid=XXXXX" got same problem, I thing all page that use realtime output have all affectly
 
May you check if latest pre-release solves it? (it should) Thank you for the report!
 
May you check if latest pre-release solves it? (it should) Thank you for the report!
it working now

Thanks

Compiled onCentOS 8.0 64-Bit
Compile DateJun 8 2021, 13:58:07
Server Version1.61.5
Current Available Version1.615000
Last UpdatedWed Jun 9 02:59:07 2021
Last RestartWed Jun 9 06:55:19 2021
 
Back
Top