Welcome Guest, Not a member yet? Register   Sign In
How to clear the cache for particular URL?
#1

Hi All,

How to clear the cache for a particular page. I can clear the entire cached files from 'cache' folder but I don't how to clear the cache for a particular page. Please help me with this.

Thanks in advance.
Reply
#2

@Pavan Vanam,

Maybe this is helpful to you... https://www.codeigniter.com/user_guide/g...ing-caches
Reply
#3

(02-01-2019, 03:25 PM)php_rocs Wrote: @Pavan Vanam,

Maybe this is helpful to you... https://www.codeigniter.com/user_guide/g...ing-caches

Thank you so much.

And I have one more doubt.
How to get the URL of previous page in codeigniter?

I tried with $_SERVER['HTTP_REFERER'];
But getting Undefined index: HTTP_REFERER message.

Help me in this.

Thanks.
Reply
#4

@Pavan Vanam,

Try this... https://stackoverflow.com/questions/4464...odeigniter
Reply
#5

You can try this code:

PHP Code:
// -----------------------------------------------------------------------

if ( ! function_exists('redirect_back'))
{
    
/**
     * redirect_back ()
     * -------------------------------------------------------------------
     *
     * Redirect back to previous page
     *
     */
    
function redirect_back()
    {
        if (isset(
$_SERVER['HTTP_REFERER']))
        {
            
header('Location: '.$_SERVER['HTTP_REFERER']);
        }
        else
        {
            
header('Location: http://'.$_SERVER['SERVER_NAME']);
        }

        exit;
    }

What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#6

@A_Welder,

Glad I could point you in the right direction.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB