View Single Post
Old 04-20-2005, 08:37 AM   #2
bloodjelly
Purple Mole
 
Join Date: Dec 2003
Posts: 106
Making PhpDig store the content in SQL tables won't take up any less space (I guess unless you used compression). You can limit the storage of text content by changing this line in the config file:

Code:
define('CONTENT_TEXT',0);
This way no text files will be created. Otherwise I guess you'd have to make some fulltext tables, then go through the code, and everywhere you see an fopen (in phpdigWriteText (robot_functions.php) for example), change it to an SQL query.
bloodjelly is offline   Reply With Quote