Browsed by
Author: Adrian Nowak

QNAP NAS – Delay in page refresh PHP

QNAP NAS – Delay in page refresh PHP

Also known as “PHP is acting weird in QNAP web server”. Apparently PHP OPcache is causing 60s delay in page refresh, see php.ini settings below. [opcache]opcache.memory_consumption = 64opcache.interned_strings_buffer = 8opcache.max_accelerated_files = 4000opcache.revalidate_freq = 60opcache.fast_shutdown = 1 Solution is quite simple and it worked for my device! Go to php.ini (Control Panel >Web Server >php.ini Maintenance > Edit )Find opcache.fast_shutdown = 1 and below it add opcache.enable = 0opcache.validate_timestamps = 0 That should do the trick!Thanks to Artand.

How to fix Eclipse Exporting Error

How to fix Eclipse Exporting Error

I’m not an expert in Mobile Development but I had to do some projects in Eclipse IDE for Java Project. I have encountered frustrating exporting error and although there are many solutions on Google, only one fixed my issue. The issue: Fix is pretty simple, just go Window -> Preferences and then General -> Workspace. Tick the “Refresh using native hooks or polling”. Apply and click OK.