CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha
<?php
/*** page-abc.php ***/
define('IN_COPPERMINE', true);
define('INDEX_PHP', true);
define('RESTRICTED_PRIV', true);
require('include/init.inc.php');
include './sub/page-xyz.php';
?>
<?php
/*** page-xyz.php ***/
if (!defined('IN_COPPERMINE')) {
die('Not in Coppermine...');
}
echo 'This is the sub page';
?>
Once page-abc.php has been created you don't need to touch it again and you can just update page-xyz.php
Fatal error: Uncaught Error: Call to undefined function exec() in /diego-luna.com/public_html/gallery/install.php:1469 Stack trace: #0 diego-luna.com/public_html/gallery/install.php(1339): getIM() #1 diego-luna.com/public_html/gallery/install.php(280): checkImageProcessor() #2 {main} thrown in diego-luna.com/public_html/gallery/install.php on line 1469Page created in 0.286 seconds with 10 queries.