Changeset 757 for trunk/bin


Ignore:
Timestamp:
Dec 10, 2021 12:01:14 AM (2 years ago)
Author:
anonymous
Message:

Fix depreciated notices

Location:
trunk/bin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/_config.inc.php

    r678 r757  
    2828
    2929// The name of the CLI.
    30 $cli_executed = basename($_SERVER['argv'][0]);
     30$cli_name = basename($_SERVER['argv'][0]);
    3131
    3232// Enforce "relaxed" directory location, if set by the called script.
     
    5050    }
    5151    if (!$db_auth_file) {
    52         printf("%s error: the current directory must be common site directory (i.e. the parent directory of the document root) AND a db_auth file must exist within two directory levels.\n", $cli_executed);
     52        printf("%s error: the current directory must be common site directory (i.e. the parent directory of the document root) AND a db_auth file must exist within two directory levels.\n", $cli_name);
    5353        exit(1);
    5454    }
    5555    if (fileowner($db_auth_file) != getmyuid()) {
    56         printf("%s error: you must execute this script as the owner of the web files.\n", $cli_executed);
     56        printf("%s error: you must execute this script as the owner of the web files.\n", $cli_name);
    5757        exit(1);
    5858    }
  • trunk/bin/init_codebase_tables.cli.php

    r699 r757  
    183183                // User didn't provide custom config. Use sane defaults.
    184184                require_once CODEBASE_PATH . '/lib/DBSessionHandler.inc.php';
     185                // Creating a session here causes a “Session save handler cannot be changed after headers have already been sent” warning. This can be ignored.
    185186                $db_session = new DBSessionHandler($app->db, array(
    186187                    'db_table' => 'session_tbl',
Note: See TracChangeset for help on using the changeset viewer.