GUI for PHP's OpCache. I started this project to see what you can do with PHP's OpCache. There are already a couple of projects who implement something like this, but they are either a "one file to rule them all" or just not very nice looking.
If you are looking for a simple single file status GUI please see Rasmus' one-page OpCache project.
###Installation Steps
####Get the source
######Git clone
git clone https://github.com/PeeHaa/OpCacheGUI.git
######Manual download a release
Download the latest tagged release.
######Composer
php composer.phar require peehaa/opcachegui:0.0.*
####Setting up the project
- Set the vhost's document root to the
public
folder - In case of using apache create an
.htaccess
file in thepublic/
directory with the following content:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
###Implemented
- OpCache status
- OpCache statistics
- Cached scripts overview
- Cached scripts invalidation
- Shiny graphs
Some features that will be implemented soon are:
- Authentication
- Auto refresh
- Sorting of columns
- Changing of graph types
- Fix design of cached scripts and config pages
If you would like to see a feature please add an issue. If you want to contribute please feel free to send a PR.