2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 07/13/2011 *
4 * =================== Last change: 07/13/2011 *
6 * -------------------------------------------------------------------- *
7 * File : fix_refsystem.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Generate refback table including all refs *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Refback-Tabelle mit allen Refs generieren *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 // Sanity-check: Do we have ref level 0? If so, this must be fixed to NULL and `level` must be increased by one
44 $result = SQL_QUERY('SELECT `id` FROM `{?_MYSQL_PREFIX?}_refsystem` WHERE `level`=0', __FILE__, __LINE__);
45 if (!SQL_HASZERONUMS($result)) {
46 // Remove index temporaly
47 SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` DROP INDEX `userid_level`', __FILE__, __LINE__);
50 SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `level`=`level`+1', __FILE__, __LINE__);
53 SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` ADD UNIQUE INDEX `userid_level` (`userid`,`level`)', __FILE__, __LINE__);
56 rebuildCache('refsystem', 'refsystem');
60 SQL_FREERESULT($result);
63 SQL_QUERY('TRUNCATE TABLE `{?_MYSQL_PREFIX?}_user_refs`', __FILE__, __LINE__);
65 // Begin with all users in level one
66 $result_direct = SQL_QUERY('SELECT
69 `{?_MYSQL_PREFIX?}_user_data`
71 `refid`=0 OR `refid` IS NULL
73 `userid` ASC', __FILE__, __LINE__);
75 // Do we have entries?
76 if (!SQL_HASZERONUMS($result_direct)) {
77 // When 'walk' through all users
78 while ($content = SQL_FETCHARRAY($result_direct)) {
79 // Update refback table
80 //* DEBUG: */ debugOutput('userid=' . $content['userid']);
81 updateReferalTable($content['userid']);
86 SQL_FREERESULT($result_direct);