06-26-2019, 03:08 AM
If you are using the new opcache in php 7 etc;
You will need to create a file to clear the cache or your development updates will not
work. Everything will be pulled from the cache so when making changes you will need
to run the below file first.
flush_opcache.php
Place it in the root along with index.php
You will need to create a file to clear the cache or your development updates will not
work. Everything will be pulled from the cache so when making changes you will need
to run the below file first.
flush_opcache.php
PHP Code:
<?php
opcache_reset();
Place it in the root along with index.php
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )