Skip to content
Snippets Groups Projects
Select Git revision
  • 7.x-2.x
  • 5.x default
  • 4.x
  • monolog-support
  • 8.x-3.x
  • 7.x-3.x
  • 6.x-2.x
  • 8.x-2.x
  • 8.x-1.x
  • 7.x-1.x
  • 6.x-1.x
  • 5.1.0
  • 5.0.0
  • 5.0.0-rc3
  • 5.0.0-rc2
  • 4.2.2
  • 4.2.1
  • 4.2.0
  • 5.0.0-rc1
  • 4.1.0
  • 4.0.2
  • 4.0.1
  • 4.0.0
  • 4.0.0-rc1
  • 4.0.0-alpha1
  • 8.x-3.0-alpha9
  • 8.x-3.0-alpha8
  • 8.x-3.0-alpha7
  • 8.x-3.0-alpha6
  • 8.x-3.0-alpha5
  • 8.x-3.0-alpha4
31 results

akamai

  • Open with
  • Download source code
  • Your workspaces

      A workspace is a virtual sandbox environment for your code in GitLab.

      No agents available to create workspaces. Please consult Workspaces documentation for troubleshooting.

  • Barrett's avatar
    Issue #2336381 by Barrett, dstol: Add a means to temporarily disable URL...
    Barrett Smith authored
    Issue #2336381 by Barrett, dstol: Add a means to temporarily disable URL clearing to support batch imports/migrations
    6a5ee788
    History
    Akamai is a registered trademark of Akamai Technologies, Inc.
    
    ======================================================
    INSTALLATION
    ======================================================
    1. Unpack the akamai folder and contents in the appropriate modules directory 
       of your Drupal installation.  Normally sites/all/modules/
       
    2. Enable the akamai module on the Modules admin page (admin/build/modules)
    
    3. You will also need a license to use Akamai's network, http://www.akamai.com/index.html.
    
    ======================================================
    USAGE
    ======================================================
    The module allows two forms of interaction for clearing the cache.
    1. Block form :
      Enable this on the admin/build/block section of the admin UI and 
      put the block where you want.  This form will clear the path that is 
      listed above the button, (likely the page you are currently viewing).
      
    2. Refresh Tool tab:
      The Refresh Tool tab is found at, admin/settings/akamai/refresh.  It is 
      part of the admin interface for this module.  From here you can list
      several paths to be cleared.
    
    The Akamai module also offers integration with Context through the context_http_header module.
    
    ======================================================
    HOOKS
    ======================================================
    Occasionally when one path is cleared, others will need to be cleared 
    as well. To enable this, we have an alter hook you can implement.
    
    function HOOK_akamai_paths_alter(&$paths, $node)
    
     * $paths An array of URL paths to be submitted to Akamai for clearing, this
              array can be modified.
     * $node If this is a node page you are viewing, this will be that node, otherwise
             it will be NULL.
    
    ===================================================
    Rest API changes
    ===================================================
    
    To enable and use RestAPI instead of SOAP, make sure RestAPI checkbox option is checked and Akamai
    server url is configured. If RestAPI is unchecked, SOAP will be used instead.
    
    Make sure PHP Curl libraries installed and enabled.