HEX
Server: Apache
System: Linux hostingsrv18.dondominio.com 6.12.90+deb13.1-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.90-2 (2026-05-27) x86_64
User: (335769)
PHP: 8.1.34
Disabled: system,passthru,popen,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,exec,ini_alter,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,mail,eval
Upload Files
File: /hosting/www/kipepeo.es/public/Fotos/send_activation.php
<?php
/*************************
  Coppermine Photo Gallery
  ************************
  Copyright (c) 2003-2016 Coppermine Dev Team
  v1.0 originally written by Gregory Demar

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License version 3
  as published by the Free Software Foundation.

  ********************************************
  Coppermine version: 1.6.03
  $HeadURL$
**********************************************/

define('IN_COPPERMINE', true);
define('SEND_ACTIVATION_PHP', true);
define('REGISTER_PHP', true);

require('include/init.inc.php');

include_once('include/mailer.inc.php');

if (USER_ID) {
    cpg_die(ERROR, $lang_send_activation_php['err_already_logged_in'], __FILE__, __LINE__);
}

if ($CONFIG['reg_requires_valid_email'] == 0) {
    cpg_die(ERROR, $lang_send_activation_php['activation_not_required'], __FILE__, __LINE__);
}

$lookup_failed = '';

if ($superCage->post->KeyExists('email') && $superCage->post->testEmail('email')) {

    $emailaddress = $superCage->post->testEmail('email');

    $sql = "SELECT user_id, user_group, user_active, user_name, user_email, user_actkey FROM {$CONFIG['TABLE_USERS']} WHERE user_email = '$emailaddress' AND user_active = 'NO'";
    $results = cpg_db_query($sql);

    if ($results->numRows()) { // something has been found start

        $USER_DATA = $results->fetchAssoc();

        $act_link = rtrim($CONFIG['site_url'], '/') . '/register.php?activate=' . $USER_DATA['user_actkey'];

        $template_vars = array(
            '{SITE_NAME}' => $CONFIG['gallery_name'],
            '{USER_NAME}' => $USER_DATA['user_name'],
            '{ACT_LINK}' => $act_link,
        );

        if (!cpg_mail($USER_DATA['user_email'], sprintf($lang_register_php['confirm_email_subject'], $CONFIG['gallery_name']), nl2br(strtr($lang_register_php['confirm_email'], $template_vars)))) {
            cpg_die(CRITICAL_ERROR, $lang_register_php['failed_sending_email'], __FILE__, __LINE__);
        }

        // output the message
        pageheader($lang_send_activation_php['resend_act_link'], "<META http-equiv=\"refresh\" content=\"3;url=index.php\">");
        $referer = 'index.php';
        msg_box($lang_send_activation_php['resend_act_link'], sprintf($lang_send_activation_php['activation_email_sent'], $USER_DATA['user_email']), $lang_common['continue'], $referer);
        pagefooter();
        exit;
        // something has been found end
    } else {
        $lookup_failed = <<<EOT
                  <tr>
                      <td colspan="2" align="center" class="tableh2">
                          <span style="color:red"><strong>{$lang_send_activation_php['err_unk_user']}</strong></span>
                      </td>
                  </tr>

EOT;
    }
    $results->free();
}

pageheader($lang_send_activation_php['resend_act_link']);

echo '<form action="send_activation.php" method="post" name="activationlink" id="cpgform">';

starttable(-1, $lang_send_activation_php['resend_act_link'], 2);

echo <<<EOT
            $lookup_failed
                 <tr>
                     <td class="tableb" width="40%">{$lang_send_activation_php['enter_email']}</td>
                     <td class="tableb" width="60%"><input type="text" class="textinput" name="email" style="width: 100%" /></td>
                 </tr>
                 <tr>
                     <td colspan="2" align="center" class="tablef">
                         <script language="javascript" type="text/javascript">
                         <!--
                             document.activationlink.email.focus();
                         -->
                         </script>
                         <input name="submitted" type="submit" class="button" value="{$lang_send_activation_php['submit']}" />
                     </td>
                 </tr>
EOT;

endtable();
echo '</form>';

pagefooter();

//EOF