View Single Post
Old 11-01-2006, 05:35 PM   #2
mateo
Green Mole
 
Join Date: Oct 2006
Posts: 3
nobody?

Ok the indexer goes and does the indexing but when i go back to the admin panel no keywords are present???

i'm posting part of my config.php (the part i've modified)



/*************************************************************************** ********************************************/

//--------PHPDIG VERSION



define('PHPDIG_VERSION','1.8.9 RC1'); // no need to change



/*************************************************************************** ********************************************/

//---------OPTIONAL ERROR REPORTING



// error_reporting(0); // have PHP report no errors

// error_reporting(E_ALL); // have PHP report all errors



/*************************************************************************** ********************************************/

//---------LOGIN SETTINGS



define('PHPDIG_ADM_AUTH','1'); // activates/deactivates login

define('PHPDIG_ADM_USER','test'); // login username

define('PHPDIG_ADM_PASS','qwerty123'); // login password



/*************************************************************************** ********************************************/

//--------LANGUAGE AND ENCODING



$phpdig_language = "fr"; // language: ca, cs, da, de, en, es, fr, gr, it, nl, no, pt, ru

define('PHPDIG_ENCODING','utf-8'); // KEEP AS utf-8 !!!



/*************************************************************************** ********************************************/

//----------DETECT ORDER FOR PHP AUTO DETECT ENCODING



// you may have to change this constant depending on the page encoding, for instance...

// define('DETECT_ORDER','UTF-8,ISO-8859-7,ASCII'); // or

// define('DETECT_ORDER','UTF-8,Windows-1251,ASCII'); // or

// define('DETECT_ORDER','UTF-8,BIG-5,ASCII'); // or

// define('DETECT_ORDER','UTF-8,JIS,KOI8-R,EUC-KR,EUC-JP,SJIS,BIG-5'); // etcetera

// the first non UTF-8 encoding in the constant that 'matches' the page is used in conversion to UTF-8.

// note that some pages can match multiple encodings even though only one encoding displays correctly.

// for example, if you do a search and see chinese characters in german text, the order is not correct.

// you may need to set/reset this constant, as there is no perfect ordering for all pages.

// furthermore, some encodings have multiple names (e.g., CP1251 like Windows-1251).

// if needed, edit the function phpdigMakeUTF8 in robot_functions.php to account for multiple names.

define('DETECT_ORDER','UTF-8,iso-8859-1,KOI8-R,JIS,SJIS,CP936,BIG-5,EUC-CN,EUC-TW,EUC-KR,EUC-JP');



/*************************************************************************** ********************************************/

//---------CONVERT JAPANESE KANA (only for Japanese)



define('ENABLE_JPKANA',false); // activates/deactivates japanese kana conversion

define('CONVERT_JPKANA','KVa'); // see http://us2.php.net/manual/en/functio...nvert-kana.php for options



/*************************************************************************** ********************************************/

//---------PATH SETTINGS



// note: if you want a different path, you need to add that path (relative path up to the

// admin directory: ../dir or full path up to the admin directory: /full/path/to/dir) in

// the first if statement in this config.php file - for example:

// && ($relative_script_path != "../dir") // relative path

// && ($relative_script_path != "/full/path/to/dir") // full path

// you may also need to set $relative_script_path to this path in search.php, clickstats.php,

// and function_phpdig_form.php depending on what files you are calling from where.

// note: double dot means go back one and single dot means stay in same directory

// note: the path should be UP TO but NOT INCLUDING the admin directory - NO ending slash



/***** example

* phpdig installed at: http://www.domain.com/phpdig/

* want search page at: http://www.domain.com/search.php

* copy http://www.domain.com/phpdig/search.php to http://www.domain.com/search.php

* copy http://www.domain.com/phpdig/clickstats.php to http://www.domain.com/clickstats.php

* set $relative_script_path = './phpdig'; in search.php, clickstats.php, and function_phpdig_form.php

* add ($relative_script_path != "./phpdig") && to if statement

*****/



// full path up to but not including the phpdig admin directory, no end slash

define('ABSOLUTE_SCRIPT_PATH','/Users/mateo/Sites/oagq/app/webroot/phpdig188');





that's it! i've tested phpdig1.8.8 and 1.8.9-rc1 and none seem's to work?
I've read that version 1.8.7 seems to work for french. Is that true? and if yes WHERE CAN I FIND IT?

I'm that close to right click->TRASH
It seems cool though when its working...

Thanks for any help.
Mateo
mateo is offline   Reply With Quote