Don't like ads? PRO users don't see any ads ;-)
Guest

default.php autoTvToSab

By: a guest on Aug 10th, 2010  |  syntax: PHP  |  size: 1.00 KB  |  hits: 56  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2.  
  3. return array(
  4.     'imdb' => false,
  5.     'default' => array(
  6.         'saveImagesAsNew' => false,
  7.         'cacheTimeImages' => (3600 * 3),
  8.         'TheTvDB_api_key' => 'your thetvdb.com api key here',
  9.         'NzbMatrix_api_key' => 'your nzbMatrix.com api key here',
  10.         'NzbMatrix_api_user' => 'and your nzbMatrix.com username',
  11.         'useNzbSite' => 'nzbMatrix', //This is which site you you want to download from. It can be 'nzbs' 'nzbMatrix' or 'both'
  12.     ),
  13.  
  14.     'Sabnzbd' => array(
  15.         'api_key' => 'sabnzbd api key',
  16.         'url' => 'http://localhost:8080',
  17.     ),
  18.  
  19.     'nzbs' => array(
  20.         'queryString' => 'NZBs.org URL String'
  21.     ),
  22.  
  23.  
  24. /****** Leave this section alone *******/
  25.     'rss' => array(
  26.         'numberOfResults' => 10,
  27.         'howOld' => '1 days' //"1 week" "2 days" "4 hours" "2 seconds" uses strtotime()
  28.     ),
  29.  
  30.     'update' => array(
  31.         'seriesUpdateEvery' => '1 week'
  32.     ),
  33. );
  34.  
  35. ?>