richard Sat Jun 22 10:37:44 2002 EDT
Modified files:
/pearweb/include/jpgraph jpgraph.php
Log:
* Update cache dir to /tmp
Index: pearweb/include/jpgraph/jpgraph.php
diff -u pearweb/include/jpgraph/jpgraph.php:1.2
pearweb/include/jpgraph/jpgraph.php:1.3
--- pearweb/include/jpgraph/jpgraph.php:1.2 Sun Jun 2 15:35:11 2002
+++ pearweb/include/jpgraph/jpgraph.php Sat Jun 22 10:37:44 2002
@@ -4,7 +4,7 @@
// Description: PHP4 Graph Plotting library. Base module.
// Created: 2001-01-08
// Author: Johan Persson (johanp@xxxxxxxxx)
-// Ver: $Id: jpgraph.php,v 1.2 2002/06/02 19:35:11 richard Exp $
+// Ver: $Id: jpgraph.php,v 1.3 2002/06/22 14:37:44 richard Exp $
//
// License: This code is released under QPL 1.0
// Copyright (C) 2001,2002 Johan Persson
@@ -16,13 +16,13 @@
// The full absolute name of directory to be used as a cache. This directory
MUST
// be readable and writable for PHP. Must end with '/'
-DEFINE("CACHE_DIR", dirname(__FILE__) . "/cache/");
+DEFINE("CACHE_DIR", "/tmp/");
// The URL relative name where the cache can be found, i.e
// under what HTTP directory can the cache be found. Normally
// you would probably assign an alias in apache configuration
// for the cache directory. Must end with '/'
-DEFINE("APACHE_CACHE_DIR", dirname(__FILE__) . "/cache/");
+DEFINE("APACHE_CACHE_DIR", "/tmp/");
// Directory for TTF fonts. Must end with '/'
DEFINE("TTF_DIR", dirname(__FILE__) . "/ttf/");
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|