Editing an article does work, but changes are not shown until cache is emptied

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mornagest
    Member
    • Mar 2010
    • 63
    • 4.2.X

    [CMS] Editing an article does work, but changes are not shown until cache is emptied

    Well, pretty long title... that hardly describes the problem we meet.

    We work on many articles each day (maybe ten or more), and every day, this bug appears : when we edit an article to add or modify content, changes do not appear, even when saving the changes. BUT when going back on the edition page, changes are well there.

    The only solution I found 'til now is to clear the system cache, in the admin panel. But... this is quite boring, and I'm not present all the time on my site...

    is there something I missed ? A way to make this better ?

    Thank you for your answers !
  • Trevor Hannant
    vBulletin Support
    • Aug 2002
    • 24358
    • 5.7.X

    #2
    What caching do you have on your server? What caching method (if any) have you set in the config.php file? Are you using Cloudflare?
    Vote for:

    - Admin Settable Paid Subscription Reminder Timeframe (vB6)
    - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

    Comment

    • Mornagest
      Member
      • Mar 2010
      • 63
      • 4.2.X

      #3
      Hi Trevor, and thank you for your answer

      I don't use CloudFare. In config.php :
      Code:
      $config['Datastore']['class'] = 'vB_Datastore_Memcached';
      $i = 0;
      // First Server
      $i++;
      $config['Misc']['memcacheserver'][$i]        = '127.0.0.1';
      $config['Misc']['memcacheport'][$i]            = 11211;
      $config['Misc']['memcachepersistent'][$i]    = true;
      $config['Misc']['memcacheweight'][$i]        = 1;
      $config['Misc']['memcachetimeout'][$i]        = 1;
      $config['Misc']['memcacheretry_interval'][$i] = 15;
      In contrast, I didn't found how to know which cache modules are used by Apache2... considering you were speaking of it

      Comment

      Related Topics

      Collapse

      Working...