when uploading a pic, I get this error-messges (sorry, working with german-version, but hope to get help):
Warning: Die Funktion getmypid(), welche dein Script nutze, wurde aus Sicherheitsgründen deaktiviert und kann nicht genutzt werden. in /usr/export/www/vhosts/funnetwork/hosting/kunstnetz/upload.php on line 501 ???
Warning: Die Funktion getmypid(), welche dein Script nutze, wurde aus Sicherheitsgründen deaktiviert und kann nicht genutzt werden. in /usr/export/www/vhosts/funnetwork/hosting/kunstnetz/upload.php on line 1186 ???
Thanks for help!
miketmc
Searching with part of your error does help you know ;D
Searching with getmypid() gives some threads dealing with this problem
This one might be of help: http://forum.coppermine-gallery.net/index.php?topic=9476.0
You can switch to the english version to get the english version of the error message. That way you can search for the error message in these forums.
ok, have asked my homepage-hoster!!
They will noct allow this command (security-reasons, they say)
Is there any problem with my gallery, when I get these error-messages, or can I ignore?
-miketmc
Read the sticky (http://forum.coppermine-gallery.net/index.php?topic=10466.0).
thanks, that the solution:
simply change the code in all occurences as described in upload.php and image_processor.php
substr(md5(microtime().getmypid()), 0, 8);
becomes
substr(md5(uniqid("")), 0, 8);
-miketmc