The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $newpmmsg - Line: 40 - File: global.php(841) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/global.php(841) : eval()'d code 40 errorHandler->error
/global.php 841 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5024 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 5024 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7162 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 7162 errorHandler->error
/inc/functions.php 5044 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1415 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 1415 errorHandler->error
/inc/functions.php 1370 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Form Tools
Wordpress blank 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: Wordpress blank page (/showthread.php?tid=357)



Wordpress blank page - st8 - Nov 4th, 2009

Hey,

I've set up a form in theme templates on wordpress. Everything is working fine until I enter this code:

Code:
<?php
require_once("/leads/global/api/api.php");
$fields = ft_api_init_form_page(1, "initialize");
$params = array(
  "submit_button" => "submit",
  "next_page" => "thank-you",
  "form_data" => $_POST,
  "finalize" => true
    );
ft_api_process_form($params);
?>

<?php

/*
    Template Name: Lead
*/

I then just get a blank wordpress page. I am displaying errors in wordpress byt no php errors return. I then move this code around the template and I have found out that everything is loading up until this block of code. It then stops and goes blank.

Playing around with the code it seems to be ok with the $params variable but not with any of the rest of the code:

Code:
require_once("leads/global/api/api.php");
$fields = ft_api_init_form_page(1, "initialize");
ft_api_process_form($params);

I thought maybe it was the path to the api.php but I have tried full url and it still doesn't work. The file path is definately correct.

Any ideas?

Thanks!
It turns out this isn't anything to do with wordpress, I have just made a blank page on in my root called test.php with this code but it is still showing a blank page...hmmm

<?php
require_once("/leads/global/api/api.php");
$fields = ft_api_init_form_page(1, "initialize");
$params = array(
"submit_button" => "submit",
"next_page" => "thank-you",
"form_data" => $_POST,
"finalize" => true
);
ft_api_process_form($params);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<p>Hello</p>
</body>
</html>


RE: Wordpress blank page - Ben - Nov 7th, 2009

Hi st8,

Hmmm... getting it going from within Wordpress pages could certainly be problematic; I haven't tested that at all. But you should be able to get the test.php page working fine.

It looks like your require_once() line looks a little fishy. That's using an absolute path from the root - and it looks like you're trying to use the webroot. For including files like that, you'll need either the absolute path (from the actual server root - not the website root - i.e. the entire path to that file), or, more simply, a relative path from that location.

Also, for testing this, add this line at the very top:

PHP Code:
error_reporting(2047); 


- Ben