Einzelnen Beitrag anzeigen
  #4  
Alt 29.01.07, 07:30
shovel75 shovel75 ist offline
Forum Zuschauer
 
Registriert seit: 12.12.06
Alter: 53
Beiträge: 4

um dieses Problem zu lösen, hatte ich den Author angeschrieben, der mir den folgenden workaround geschickt hat. Bei mir wurde das hiermit gelöst

strange....
[SCRIPT_FILENAME] => /usr/local/apache/share/cgi-bin/php4
this might be the problem because i have the following in mod1/conf.php:
if (substr_count($_SERVER['SCRIPT_FILENAME'], 'typo3conf') > 0) {
define('TYPO3_MOD_PATH', '../typo3conf/ext/th_mailformplus/mod1/');
} else {
define('TYPO3_MOD_PATH', 'ext/th_mailformplus/mod1/'); }

since your SCRIPT_FILENAME path does not contain "typo3conf" the TYPO3_MOD_PATH is set to "ext/th_mailformplus/mod1/" - which is not correct in your case because you have installed the ext. in the "local"
ext. dir (typo3conf/ext).

quick fix:
just write
define('TYPO3_MOD_PATH', '../typo3conf/ext/th_mailformplus/mod1/');
below of the lines i posted before. this sets the mod-path hardcoded to "typo3conf/ext/..." (local installation).

this should help.

ciao,peter
Mit Zitat antworten