CaRP Evolution Documentation
CaRP Evolution Documentation
twitter youtube linkedin google-plus
CaRP Evolution Box
Web This Site

CaRP: Caching RSS Parser - Documentation


CaRP Interactive FAQ
Getting Started: Free Download | Purchase | Install
Reference: Functions | Plugins | Themes | Full Index
Etc.: Display Formatting | Example Code | Affiliates

Installation


There are three ways to get CaRP installed on your server:
  1. Hire an independent contractor to install it for you.
  2. Semi-automated installation:
    1. Download and unpack CaRP.
    2. Follow this instructions in README.HTML (which you'll find after unpacking the CaRP archive).
  3. Manual installation (may be less secure than semi-automated installation):
    1. Download and unpack CaRP.
    2. Upload carp.php, carpinc.php to your webserver. If you wish to override any of the default configuration settings, modify carpconf.php to do so (see the configuration page for details) and upload it to the same directory.
    3. If you have purchased CaRP Evolution, upload the plugins directory to the same directory as carp.php.
    4. Create three directories in the directory where you uploaded the files: manualcache, autocache and aggregatecache.
    5. Set the access permissions on these directories directories to ensure that they are writable by CaRP. (Refer to your server's documentation to find out how to do this. For UNIX/Linux/*BSD servers, use the command "chmod 777 manualcache autocache aggregatecache". If you are able to change the group ownership of these directories to the group that your webserver runs as, you may be able to increase the security of your setup by doing so and setting the permissions to 770 instead of 777. Your FTP client may also have the ability to set permissions).
    6. Add code like the following to your webpage at the point where you want to display the newsfeed:
       
      <?php
      require_once "/path/to/carp.php";
      CarpCacheShow("http://domain_name.com/path/to/rss/feed/file");
      ?>
    7. If you are using a proxy server:
      • For CaRP version 3.3 or later, set the "proxyserver" configuration option (see the configuration page).
      • For CaRP versions up to 3.2, use the following syntax when specifying the address of the RSS feed (all on one line with no spaces), and read about the 'proxyauth' configuration option if your proxy server requires authorization:
         
        http://proxy.server.name.com/http://domain_name.com/
           path/to/rss/feed/file