Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

Getting this Software Error on trying to update the parameters in bugzilla.

Error in tempfile() using data/params.XXXXX: Could not create temp file data/params.BFQJE: 
Permission denied at Bugzilla/Config.pm line 293

Please help

share|improve this question

2 Answers

Could not create temp file data/params.BFQJE: Permission denied at Bugzilla/Config.pm line 293

This is pretty self-explanatory. You need to adjust permissions for the data/ dir.

It's relative to bugzilla installation dir as one may learn by reading the code.

share|improve this answer

You need to make sure that every content in the bugzilla directory have been given permission accordingly.You can run this command in the bugzilla directory:

 find . -type d -exec chmod 755 {} \;
 find . -type f -exec chmod 644 {} \;
 find . -name \*.cgi -exec chmod 755 {} \;
 find . -name \*.pl -exec chmod 755 {} \;
 find . -name \*.sh -exec chmod 755 {} \;

after that run the checkout.pl

 ./checksetup.pl

lastly you need to restart your webserver(for me i use apache)

  service httpd restart
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.