Hi,
Ich nutze Joomla 1.5.6. und Phoca Gallery 2.0.0. Ich habe es gerade installiert
Notice: Only variables should be assigned by reference in /mnt/web5/12/18/51487518/htdocs/components/com_phocagallery/helpers/phocagallery.php on line 129
Es handelt sich hier jeweils um die Zeile:
$icon = &PhocaGalleryHelperFront::getFormatIcon();
Was hab ich falsch gemacht?
FEhlermeldung auf jeder Seite
- Jan
- Phoca Hero

- Posts: 49279
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: FEhlermeldung auf jeder Seite
Hi, it seems like your php version should be upgraded, it has problems with &
$icon = &PhocaGalleryHelperFront::getFormatIcon();
to
$icon = PhocaGalleryHelperFront::getFormatIcon();
you can remove the & but it is not a solution, because you get errors on other places in your joomla site...
Jan
$icon = &PhocaGalleryHelperFront::getFormatIcon();
to
$icon = PhocaGalleryHelperFront::getFormatIcon();
you can remove the & but it is not a solution, because you get errors on other places in your joomla site...
Jan
If you find Phoca extensions useful, please support the project
-
mjohn2101
- Phoca Newbie

- Posts: 2
- Joined: 29 Sep 2008, 00:05
Re: FEhlermeldung auf jeder Seite
hi,
so i removed the "&" and now all the error messages are gone so far...
many thx for your help
Marc
www.feuerwehr-wachtberg.de
so i removed the "&" and now all the error messages are gone so far...
many thx for your help
Marc
www.feuerwehr-wachtberg.de
- Jan
- Phoca Hero

- Posts: 49279
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: FEhlermeldung auf jeder Seite
ok
If you find Phoca extensions useful, please support the project