Getting remove_entry_secure error while using ruby application

后端 未结 1 1929
悲&欢浪女
悲&欢浪女 2021-02-09 19:43

I am trying to split PDF files into images using docsplit. But it appears I have issues with my ruby installation. I keep getting the following error every time:



        
1条回答
  •  不思量自难忘°
    2021-02-09 20:16

    It turns out there was a problem with my /tmp folder permissions. The following fixed the problem:

    Steps that I followed are:

    user@host-$: chmod 777 -R /tmp
    user@host-$: chmod o+t -R /tmp
    user@host-$: ls -l tmp
    drwxrwxrwt 2 user group 4096 2009-11-21 17:01 tmp
    

    0 讨论(0)
提交回复
热议问题