Pentaho does not run and in console it gives the error of ERR_INCOMPLETE_CHUNKED_ENCDODING? - pentaho

When I run pentaho it loads some scripts and files but some of them fails with the error of:
ERR_INCOMPLETE_CHUNKED_ENCDODING
In console I see that $ is undefined for jQuery.
I didn't change anything. Once I reran the pentaho and it worked, but it does not work at all.
Is there something I could do about it? What this mean? I searched for CDF.js file and I saw that the file is present.
Any help?

The problem was that /var/ partition was full 100% and pentaho, nginx could not log at all. Nginx could cache results.
By freeing space the problem went away.

Related

#1558 - Column count of mysql.proc is wrong. Expected 21, found 20. Please use mysql_upgrade to fix this error

I got this message when I try to run query on XAMPP in macOS
#1558 - Column count of mysql.proc is wrong. Expected 21, found 20. Created with MariaDB 100108, now running 100421. Please use mysql_upgrade to fix this error
I tried to write
'mysql_upgrade -u root -p'
on my terminal but I got this message
zsh: command not found: mysql_upgrade
I also ran into same issue and after cracking my head for the past 10hrs, I finally realise how to perform the upgrade. U
go to your Mac terminal and paste the following code:
Applications/XAMPP/xamppfiles/bin/mysql_upgrade -u root -p
Supply your root password and see it work like magic.
Contrary to what many people posted online by using /opt/lampp/bin
It always gives a zsh not found error.
I hope this helps you and in the future for others who might need it.
You could try switching to a different shell, say bash by typing bash in your terminal.
Then proceed to run mysql_upgrade normally in the appropriate directory
I also could not run the code from the Terminal. I was, however, able to go to the folder itself and "run" the mysql_upgrade application. If you are using XAMPP and the Application Manager, there's a button to Open Application Folder. If you click that, finder will open where XAMPP lives. Open the bin folder. Then scroll until you find mysql_upgrade. Double click it. It will run in a Terminal session and complete the upgrade. Hope this helps someone else as I spent waaayyyy too much time trying to get this to work.

Using blogdown with Windows

Everything looks successful with loading blogdown and installing Hugo, but when I go to generate a new site in an empty folder, I get the following warning message:
running command '"C:\Users\myname\AppData\Roaming\Hugo\hugo.exe" new site "." --force -f toml' had status 127
It's a particularly unhelpful message because it doesn't even turn up answers on google. Any ideas where the problem might be? Everything I am running (R, RStudio, packages) is up to date.

Server compilation error on some pages apache mono

We have a .net web application running in fedora 6 under Apache & mono 1.1.18 version. So long it was working good. Suddenly I'm getting the following Server Error in some of the pages,
Server Error in '/' Application
Compilation Error
Description: Error compiling a resource required to service this request. Review your source file and modify it to fix this error.
Error message:
(0,0) : error CS0006: Cannot find assembly `/tmp/apache-temp-aspnet-0/383ed40f/shadow-J7sRQf'
But please note, rest of the pages are loading properly. I know it has something to do with JIT compilation, but why it is happening on some specific pages. Also the error 'Cannot find assembly -----/shadow-J7sRQf' is something suspicious. The same error is displayed across all the browsers all the time.
I have not restarted apache or rebooted the system, as I'm not sure whether this error will occur again and i want to root cause it instead of just ignoring it. i didn't find anything on the httpd log also. I tried to Google it, but was unlucky to find anything specific. Can anyone help me on this? thanks in advance.
Wow, mono 1.1.18 is really old!
If I were you, I would try to stop apache and clean everything in the temporary compilation directory /tmp/apache-temp-aspnet-0/
This should force mono to re-generate everything in this directory.
Then, restart apache and see if it helps.

dump_bt not working when trying to analyse apache core dumps

I am trying to use dump_bt to analyse an apache core dump as we are getting segmentation faults after moving servers.
The info I got on how to do it is at the following link:
http://www.omh.cc/blog/2008/mar/6/fixing-apache-segmentation-faults-caused-php/
When I run dump_bt I get undefined command, the link I posted also states a conflicting command bt_dump so not sure which is right. Neither works however.
Any help is greatly appreciated.
You've neglected to do this: "Copy the .gbdinit file to your home directory"
It defines dump_bt user function.

adl command line turned silent

I am starting to develop a new air/html/ajax application today and for some reason my trace() output is not being printed to the console window anymore. Plus, I am also not getting any error messages printed for syntax errors or runtime errors. I tried this on a different machine and there was no problem, so it must have been something wrong with this particular machine. I was thinking it had to do with me using the flex 3 sdk, but removing that from my path variable did not help, neither did reinstalling the air sdk. If anyone has encountered this before, help would be greatly appreciated.
This is not specific to the debugger player. The availability of trace statements in the console from ADL is dependent on whether or not any one of the following settings are turned on in your mm.cfg file:
ErrorReportingEnable
TraceOutputFileEnable
Either one of those will block trace output in the console window - stderr I believe - and instead (in the case of TraceOutputFileEnable) redirect it to a log file.
More information about mm.cfg is available here.
I figured it out. It is because I installed the flash debug player. Now the error messages all go the the log file where the debug player writes to.