The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.28 (Linux)
|
Can't see installation page - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: Installation (https://forums.formtools.org/forumdisplay.php?fid=4) +--- Thread: Can't see installation page (/showthread.php?tid=2031) |
Can't see installation page - Nashy - Jun 14th, 2012 I have formtools uploaded to an accessible directory on my server, per the instructions. When I access the url, it forwards to /formtools/install. The browser is blank and there is no way to start the installation process. I get the same results in Explorer and Firefox. The server is running Linux, the host is GoDaddy. Any help with figuring this out would be greatly appreciated. Thanks! RE: Can't see installation page - Question Guy - Jun 15th, 2012 You are leaving out important background information. Such as: 1. Are you already running PHP based programs on GoDaddy at this Domain URL? 2. If you are running PHP at this URL do you have a pre-existing .htaccess file in the main directory of this URL? (if so, what are the rules -- the lines -- in that file)? 3. Via the GoDaddy file Explorer or through your FTP program do you see all the files and the "files" and "templates" folders inside the /install folder? I will start with those questions . . . RE: Can't see installation page - Nashy - Jun 15th, 2012 (Jun 15th, 2012, 5:28 AM)Question Guy Wrote: You are leaving out important background information. Such as: Answers to your questions: 1: Yes, I am running php on the server. 2: I didn't set the hosting up and and I can't see the .htacces file in the root when I ftp. I'm calling GoDaddy now for more information. 3: Yes, all of the files and directories on the server seem to match. (Jun 15th, 2012, 5:48 AM)Nashy Wrote:(Jun 15th, 2012, 5:28 AM)Question Guy Wrote: You are leaving out important background information. Such as: Update on #2: There is no .htaccess file on the server. What code/rules do I need in the file to activate formtools? RE: Can't see installation page - Question Guy - Jun 16th, 2012 What PHP program are you running from directory home folder? If you do not see an .htaccess file then I assume you are not running WordPress? And, if there were an .htaccess file then GoDaddy would throw up an error page, so, you don't need the .htaccess after all. GoDaddy relies on php.ini files to accomplish what .htaccess files do on other Linux server setups. Are you also saying that since you "didn't set the hosting up" that you do not have access to the actual GoDaddy management of this account? That you cannot login to the management panel to examine the settings? Normally, if I recall GoDaddy, if it were a Permissions problem with the formtools/install folder then you would get not a blank page but an Error "You don't have permission to view this page" or something visible in the browser like that. If you ask for the source code of the blank page is it completely blank of all html code? If you FTP in then you should see a php.ini file, which is default Linux install for GoDaddy. If you are intending to run PHP 5 for Form Tools then you may have to change the settings in the php.ini file and put it back in its place with the new settings. To run php 5 then you must name this php.ini file this way: php5.ini Supposedly setting up the GoDaddy account and specifying PHP 5 as the default version would create the php5.ini file. You should find it in the /html/ file path. There is a deeper path for the php.ini or php5.ini file but it cannot be reached by FTP. If you simply install the .ini file in the root directory -- everything in the /html/ path, then it will still go into effect for enforcing PHP 5 to run as the default PHP version for this server account. Some working settings for this file would be -- memory_limit = 64M post_max_size = 64M file_uploads = On upload_max_filesize = 64M magic_quotes_gpc = Off register_globals = off allow_url_fopen = off expose_php = Off max_input_time = 60 variables_order = "EGPCS" extension_dir = ./ upload_tmp_dir = /tmp precision = 12 If you don't know which version of PHP is running on the GoDaddy account then use a simple text editor to name a file phpinfo.php and upload it to the server, to the base directory so that you can type it into the browser http://www.yoursite.com/phpinfo.php the following code is what should be in that file, with no empty lines at the top of the file. <?php // Show all information, defaults to INFO_ALL phpinfo(); ?> When you type that file into the browser after uploading it via FTP then in the long lines of information coming back it should show the PHP version. I think you should make sure you are running PHP 5 for best results. If not then you must ask GoDaddy tech support, if they will, for the Default PHP version to be set for PHP 5. RE: Can't see installation page - michatmaster7 - Jun 17th, 2012 My goodness. Can you post the URL of your install? Or PVT it to me/ I'd like to take a look. |