1
robekras
Agenda-X picture upload hack
  • 2004/2/1 21:27

  • robekras

  • Documentation Writer

  • Posts: 187

  • Since: 2002/12/10


Picture upload within a Agenda-X event do not work always.
That's because of wrong access rights of uploaded (and moved) picture files.

In file agendax/admin/index.php search for move_uploaded_file:
After the first occurrence insert the following line:
le="color: #000000"><?php @chmod("../uploads/".$_FILES['foto']['name']."", 0644);

After the second occurrence insert:
le="color: #000000"><?php @chmod(XOOPS_ROOT_PATH."/uploads/".$_FILES['foto']['name']."",0644);


In file agendax/addevent.inc.php search for move_uploaded_file
again. There is only one place... Insert the following:
le="color: #000000"><?php @chmod (XOOPS_ROOT_PATH."/uploads/".$_FILES['foto']['name'], 0644);