I have installed phpFormgenerator but it is not working. It returns Internal Server Error 500.

Whenever you create a web form with phpFormgenerator it creates the new directories with 777 permissions. Such permissions are not allowed on our servers due to security reasons. Fortunately there is an easy fix.

You can change the default permissions used during the directory setup process by loging into your cPanel area and use the File manager. The only thing you have to accomplish is to navigate to the directory where you have installed phpFormgenerator, locate the following file:

copyfunc.php

and open it for editing. You have to find the following variables:

mkdir($wto, 0777);

chmod($flto, 0777);

and simply replace them with:

mkdir($wto, 0755);

chmod($flto, 0755);

If you are still receiving internal server error messages, please check your cPanel -> Error Log tool and look for:

directory writable by others

error messages. You have to set the permissions for the reported folders to 755 and everything should be OK.

You can easily change permissions for your files and directories by using the File manager available at your cPanel area.

You need help with an application? hostlantern is specialized in hosting and supporting more than 200 scripts. Sign up for our web hosting services and let us help you with your application, 24/7!

  • 0 Users Found This Useful
Was this answer helpful?