Uplad image button on the fog site dont' work.
-
I installed fog, then inventored a pc.
now i want to uplad the image but if i click on basic_task -> uplad nothing appenas and i view a blank webpage. here the log of apache error.log: [url]http://pastebin.com/41AkaR7v[/url] -
I’m guessing you’re using FOG 0.32?
-
But running PHP 5.4 or later. I can tell by this line:
Call-time pass-by-reference has been removed in /var/www/fog/management/includes/tasks.confirm.include.php on line 754, referer: [url]http://localhost/fog/management/index.php?node=host&sub=edit&tab=tasks&id=1[/url]The reference has to be adjusted.
Go to your fog webdir. Probably at:
/var/www/fog (UBUNTU TYPICAL)
OR
/var/www/html/fog (REDHAT TYPICAL)Run this command:
[code]grep -rl ‘&$tmp’ .[/code]In the files that display after this, edit them and remove the & symbol from the $tmp variables. So the variable will change from:
[php]&$tmp[/php]
to
[php]$tmp[/php] -
solved! thanks