Informatie en opmerkingen over Joomla

Uit SignetWiki
Versie door Admin (Overleg | bijdragen) op 13 feb 2009 om 18:32 (Nieuwe pagina: = Joomla problemen op onze shared webservers = == CSS wordt niet geladen == Dit probleem wordt beschreven op het Joomla forum: http://forum.joomla.org/viewtopic.php?f=431&t=288122 ...)
(wijz) ← Oudere versie | Huidige versie (wijz) | Nieuwere versie → (wijz)
Ga naar: navigatie, zoeken

Joomla problemen op onze shared webservers

CSS wordt niet geladen

Dit probleem wordt beschreven op het Joomla forum: http://forum.joomla.org/viewtopic.php?f=431&t=288122

De oplossing is als volgt:

Hi. One easy thing to try is to change the configuration.php as follows:

var $live_site = 'http://www.yoursitename.com';

This worked for me. It evidently is required if you are running PHP 5.2.6, although I don't think it hurts anything for other PHP versions. Hope this helps. Mark

Bij subpagina's wordt een "404 component not found melding gegeven"

Dit probleem wordt beschreven op: http://forum.joomla.org/viewtopic.php?f=430&t=261094&start=90

De oplossing wordt beschreven bij : http://forum.joomla.org/viewtopic.php?p=1312717#p1312717

In the "includes" directory in the root Joomla directory there is a file called "application.php" Locate the dispatch() function (at line 89).
Right before the call (at line 124) to JComponentHelper::renderComponent() put in this "if" statement like below. Make sure it looks exactly like this.

if(! empty($component)) {
$contents = JComponentHelper::renderComponent($component);
$document->setBuffer( $contents, 'component');
}