Hello Everyone,
If you are getting following error while installing phpbb from Fantastico
——————————————————————
Warning: fileperms(): Stat failed for /home/qededu/.fantasticodata/temporary/phpBB2 (errno=2 – No such file or directory) in /usr/local/cpanel/3rdparty/fantastico//includes/enc_functions.php on line 287
Warning: is_file(): Stat failed for /home/qededu/public_html/test/config.php (errno=13 – Permission denied) in /tmp/cpanel_phpengine.1146740152.297467947.16752673597 on line 1147
1) File: /home/qededu/public_html/test/config.php [ERROR! ]
Warning: is_file(): Stat failed for /home/qededu/public_html/test/data.sql (errno=13 – Permission denied) in /tmp/cpanel_phpengine.1146740152.297467947.16752673597 on line 1147
2) File: /home/qededu/public_html/test/data.sql [ERROR! ]
——————————————————————-
Just check the permission of tar file. Try to run following commands:
[email protected] [~]# whereis tar
[email protected] [~]# ls -al /bin/tar
If permission of /bin/tar is not 755 just change it to 755.
[email protected] [~]#ls -al /bin/tar
-rwx—— 1 root root 149484 Mar 13 10:57 /bin/tar*
[email protected] [~]#chmod 755 /bin/tar*
[email protected] [~]# ls -al /bin/tar
-rwxr-xr-x 1 root root 149484 Mar 13 10:57 /bin/tar*
That’s all.
Shane Bewick