Grouper Documentation
Grouper Documentation
twitter youtube linkedin google-plus
Grouper: RSS manager, XML converter, website scraper
Web This Site

Grouper - Documentation


Getting Started: Free Download | Purchase | Install
Reference: Functions | Plugins | Themes
Etc.: Configure | Affiliates

Function Reference

GrouperDataPath();

Returns the absolute path to Grouper's cache directory based on the current "cachepath" and "cacherelative" configuration settings.



Example:

<?php
require_once '/YOUR/PATH/TO/grouper/grouper.php';
echo "By default, Grouper's cache files are stored at ".GrouperDataPath().". ";
GrouperConf('cacherelative',0);
GrouperConf('cachepath','/home/myusername/rsscache');
echo "That location has been reconfigured to ".GrouperDataPath().". ";
?>