-
I'm experiencing two issues (PHP 7.4.16):
No errors in the php-fpm error log. Any thoughts on what I should do? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry you're having problems with the loading, @hansgv . I honestly have to say that I find it much faster now, so not sure what's going on with your setup. However, the two problems may be related - if it's having problems loading the js and css then it's going to feel like it's taking a long time to load the interface. The first thing I'd recommend trying if changing the protocol of the js/css files. As they stand it doesn't include the protocols so the browser will use http if you're on http and https otherwise. But it sounds like you may need to force that. So with the lines https://github.com/amnuts/opcache-gui/blob/master/index.php#L393-L395 (or https://github.com/amnuts/opcache-gui/blob/master/build/template.phps#L69-L71 and then run the rebuild script) change the Once you've done that and the external assets load, see how the speed feels. If it's still sluggish you'll have to provide more info, I think. Like how many objects do you have cached? What opcache settings do you have? |
Beta Was this translation helpful? Give feedback.
Sorry you're having problems with the loading, @hansgv . I honestly have to say that I find it much faster now, so not sure what's going on with your setup. However, the two problems may be related - if it's having problems loading the js and css then it's going to feel like it's taking a long time to load the interface.
The first thing I'd recommend trying if changing the protocol of the js/css files. As they stand it doesn't include the protocols so the browser will use http if you're on http and https otherwise. But it sounds like you may need to force that. So with the lines https://github.com/amnuts/opcache-gui/blob/master/index.php#L393-L395 (or https://github.com/amnuts/opcache-gui…