Einzelnen Beitrag anzeigen
  #2  
Alt 13.12.06, 14:39
shovel75 shovel75 ist offline
Forum Zuschauer
 
Registriert seit: 12.12.06
Alter: 53
Beiträge: 4

Moin,
das Problem hatte ich auch und hier konnte mir auch keiner weiterhelfen, also habe ich den Autor direkt angeschrieben. Nach nicht mal 30 min hatte ich die Antwort:

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.

Hat es auch bei mir. Vielleicht ja auch bei dir

gruß
Frank
Mit Zitat antworten