This topic is locked
[SOLVED]

 PHP 7.1 (20946)

3/24/2014 8:37:48 PM
PHPRunner General questions
S
stanbar1 author

i try to install calendar templates and i got error:

__

Warning: include(phpfunctions.php) [function.include]: failed to open stream: No such file or directory in /home/content/54/7001354/html/seagull/include/dbcommon.php on line 35
Warning: include() [function.include]: Failed opening 'phpfunctions.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in /home/content/54/7001354/html/seagull/include/dbcommon.php on line 35
Warning: Cannot modify header information - headers already sent by (output started at /home/content/54/7001354/html/seagull/include/dbcommon.php:35) in /home/content/54/7001354/html/seagull/include/dbcommon.php on line 58
Fatal error: Call to undefined function getabspath() in /home/content/54/7001354/html/seagull/include/locale.php on line 3

__

dbcommon.php
<?php
$version = explode('.', PHP_VERSION);

if($version[0]*10+$version[1]<53)

set_magic_quotes_runtime(0);
if(@$_SERVER["REQUEST_URI"])

{

$pinfo=pathinfo($_SERVER["REQUEST_URI"]);

$dirname = @$pinfo["dirname"];

$dir = explode("/",$dirname);

$dirname="";

foreach($dir as $subdir)

{

if($subdir!="")

$dirname.="/".rawurlencode($subdir);

}

if($dirname!="")

{

// @session_set_cookie_params(0,$dirname."/");

}

}
// isolate sessions for projects running on the same site

@session_name(str_replace(" ", "", "s1395706333"));
@session_cache_limiter("none");

@session_start();
//error_reporting(E_ALL ^ E_NOTICE);

//E_STRICT has become a part of E_ALL since php 5.4 only

error_reporting( (E_ALL | E_STRICT) & ~E_STRICT & ~E_NOTICE );
/// include php specific code
$useOldMysqlLib = 0 != 0;
$cCharset = "utf-8";

$cCodepage = 65001;

$cMySQLNames = "";

$gLoadSearchControls = 30;
$projectPath = '';
[color="#FF0000"]header("Content-Type: text/html; charset=".$cCharset); (Line 58)
include("locale.php");

include("events.php");

include("commonfunctions.php");

include("dbconnection.php");
include("dbfunctions.php");

include("dal.php");

include("appsettings.php");
set_error_handler("runner_error_handler");
$mbEnabled = extension_loaded('mbstring');
// json support

$useUTF8 = true;
if(!function_exists('json_encode') || !$useUTF8)

{

include_once(getabspath("classes/json.php"));

$GLOBALS['JSON_OBJECT'] = new Services_JSON(SERVICES_JSON_LOOSE_TYPE, $useUTF8);
function my_json_encode($value, $json_unescaped_unicode = false){

return $GLOBALS['JSON_OBJECT']->encode($value);

}
function my_json_decode($value){

$result = $GLOBALS['JSON_OBJECT']->decode($value);

if(is_null($result) || count($result) == 0)

return array();

else

return $result;

}

}

else

{

function my_json_encode($value){

return json_encode($value);

}
function my_json_decode($value){

$result = json_decode($value,true);

if(is_null($result) || count($result) == 0)

return array();

else

return $result;

}

}
function my_json_encode_unescaped_unicode($value)

{

array_walk_recursive($value, 'json_mb_encode_numericentity');

return runner_decode_numeric_entity(my_json_encode($value), array(0x80, 0xffff, 0, 0xffff), 'UTF-8');

}
?>
___

same i got on invoice templates

Also on invoice templates error after i press build (unable to process file:plugins\html2ps)

Sergey Kornilov admin 3/25/2014

Make sure that version of templates matches version of PHPRunner. You can find links to updated templates at http://www.asprunner.com/forums/topic/22119-march-20-2014-phprunner-71asprunnerpro-81asprunnernet-70-maintenance-release/

S
stanbar1 author 3/25/2014



Make sure that version of templates matches version of PHPRunner. You can find links to updated templates at http://www.asprunner.com/forums/topic/22119-march-20-2014-phprunner-71asprunnerpro-81asprunnernet-70-maintenance-release/


reinstall all php and templates work thank you.