CodeIgniter Forums
How To Clear The Cache On Server Using Codelgniter For Website - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: How To Clear The Cache On Server Using Codelgniter For Website (/showthread.php?tid=74693)



How To Clear The Cache On Server Using Codelgniter For Website - marcodesouza - 10-25-2019

Hello Guys!
I am new to web development and my website **REDACTED** is made in codelgniter. and website is live. My developer has made the website. I would like to know how to clear the cache on server. Have a look at my files in given pictures.
and please let me know for clearing the cache in which directory i have to click. You can also email me the solution at **REDACTED**

   


RE: How To Clear The Cache On Server Using Codelgniter For Website - jreklund - 10-26-2019

I would suggest that you inform your developer to move everything except index.php and assets one folder up. Right know people can access your composer.json and see what dependencies you have and what version. And find security holes in your application.

Regarding cache they are normally located in application/cache.

https://codeigniter.com/user_guide/general/caching.html
https://codeigniter.com/user_guide/libraries/caching.html


RE: How To Clear The Cache On Server Using Codelgniter For Website - marcodesouza - 11-09-2019

(10-26-2019, 05:41 AM)jreklund Wrote: I would suggest that you inform your developer to move everything except index.php and assets one folder up. Right know people can access your composer.json and see what dependencies you have and what version. And find security holes in your application.

Regarding cache they are normally located in application/cache.

https://codeigniter.com/user_guide/general/caching.html
https://codeigniter.com/user_guide/libraries/caching.html
Thanks


RE: How To Clear The Cache On Server Using Codelgniter For Website - marcodesouza - 02-13-2020

(10-26-2019, 05:41 AM)jreklund Wrote: I would suggest that you inform your developer to move everything except index.php and assets one folder up. Right know people can access your composer.json and see what dependencies you have and what version. And find security holes in your application.

Regarding cache they are normally located in application/cache.

https://codeigniter.com/user_guide/general/caching.html
https://codeigniter.com/user_guide/libraries/caching.html

Thank you informing me. Actually, those developers are not working and available to me. Because I am just a seo who is working on his client website. I will try to do the changes by my side.


RE: How To Clear The Cache On Server Using Codelgniter For Website - marcodesouza - 02-17-2020

(10-26-2019, 05:41 AM)jreklund Wrote: I would suggest that you inform your developer to move everything except index.php and assets one folder up. Right know people can access your composer.json and see what dependencies you have and what version. And find security holes in your application.

Regarding cache they are normally located in application/cache.

https://codeigniter.com/user_guide/general/caching.html
https://codeigniter.com/user_guide/libraries/caching.html

I am really thankful that you have suggested me the right way. But the problem is the developer who has made the website, not working with me. Either it has to be redesigned or I can migrate it to the laravel. Can I migrate **REDACTED** to the laravel with the same url structure?

Other option is, I have to learn using codeigniter. I am trying to do it. By usings it's support fourms.

Thanks Heart


RE: How To Clear The Cache On Server Using Codelgniter For Website - InsiteFX - 02-18-2020

If you move the application and system folders up one into the root then you need to
edit the index.php file and change the application and system paths in it.

PHP Code:
$system_path '../system';

$application_folder '../application'