Search results

  1. L

    Public and private cache

    Ok thank you. Hope we can get it to work, and post here for other people to find and solve their problem. :)
  2. L

    Public and private cache

    This is the code in httpreq.cpp after modify int HttpReq::parseMethod(const char *pCur, const char *pBEnd) { if ((m_method = HttpMethod::parse2(pCur)) == 0) return SC_400; if (m_method == HttpMethod::HTTP_HEAD) m_iNoRespBody = 1; if ((m_method <...
  3. L

    Public and private cache

    I implemented the change in cpp code for CORS. How this php code should sound, i mean what should i write to replace the ALLOWED ORIGIN, ALLOWED HEADERS. if($_SERVER['HTTP_ORIGIN'] == "ALLOWED ORIGIN") { header('Access-Control-Allow-Headers: ALLOWED HEADERS')...
  4. L

    Public and private cache

    Thank you very much, inform me when you have something for Access-Control-Allow-Origin problem.
  5. L

    Public and private cache

    As i can read from log, there is public cache instead of private: 2016-01-04 18:14:16.794 [DEBUG] [ip:7209:HTTP2-3#www:lsapi] [Module-Cache]save to public cachestore, uri:www/wp-admin/tools.php
  6. L

    Public and private cache

    ok, i deleteted the cachedata directory and created again, and same problem, i will debug.
  7. L

    Public and private cache

    /wp-admin/ with module parameter: enablePrivateCache 1 and qsCache 1 and is ok. But i receive same same cache on non logged
  8. L

    Public and private cache

    1.4.x i only configured at server level. I cannot find context cache thing. Update: found it, actions view module. URI: /$VH_ROOT/html/wp-admin but i get same cache on non logged user as logged user
  9. L

    Public and private cache

    Thank you for support, First problem: i want to cache public entire website, but cache private wp-admin because users not logged in receive cache from users logged in. I dont understand your method. Second: I receive this error again: Font from origin 'https://www' has been blocked from...
  10. L

    Public and private cache

    Hello, I have a wordpress installed and im using last version of openlitespeed on ubuntu. My problem is that i want to cache everything public ( that i made ) but wp-admin i want to cache private because admin bar and login informations appear at other people. Is there something else i need to...
Top