
Zitat von
Apfelkomplott
Ich habe die Hilfe benutzt aber leider nichts gefunden, vielleicht darf ich das Thema noch mal aufwärmen.
Hilfe fand ich dann auf der Entwicklerseite, vielleicht braucht jemand mal diesen Tipp:
http://hot.digitieto.fi/news/news/faq/ (1. Frage)
Okay, so you think that this component is pretty good except that you can't see any pictures and instead just see blue error images?
Congrats, you have just stumbled accross the most common problem that new users have with this component.
[...]
The order in which I would recommend you to experiment with different settings are:
1. First try the settings-starting with realpath...
2. Then try the other dynamic examples from bottom to up
3. After that try the Joomla's configured $mosConfig_absolute_path
4. Then try by hand by figuring out what the real server path is and just typing it in,
it could be something like "/home/www/joomla" or "/var/www/joomla" etc. Use the
static examples as a reference.
Diese Erklärung findet sich ebenfalls im phpThumb.config.php im components/com_hotornot/phpthumb/ Verzeichnis.
Suche:
PHP-Code:
//$PHPTHUMB_CONFIG['document_root'] = '/home/httpd/httpdocs';
//$PHPTHUMB_CONFIG['document_root'] = 'c:\\webroot\\example.com\\www';
//$PHPTHUMB_CONFIG['document_root'] = '/var/www/joomla';
Ersetze durch:
PHP-Code:
$PHPTHUMB_CONFIG['document_root'] = '/var/www/vhosts/deinedomain.com/httpdocs';
//$PHPTHUMB_CONFIG['document_root'] = 'c:\\webroot\\example.com\\www';
//$PHPTHUMB_CONFIG['document_root'] = '/var/www/joomla'';
Lesezeichen