/mailid.php -text svneol=unset#text/plain
/mailid_top.php -text svneol=unset#text/plain
/modules.php -text svneol=unset#text/plain
+/network-check.php svneol=native#text/plain
/ref.php -text svneol=unset#text/plain
/robots.txt -text svneol=unset#text/plain
/show_bonus.php -text svneol=unset#text/plain
./inc/functions.php:178:// @TODO Rewrite this to an extension 'smtp'
./inc/functions.php:2251: // @TODO This is still very static, rewrite it somehow
./inc/gen_sql_patches.php:96:// @TODO Rewrite this to a filter
-./inc/install-functions.php:63: // @TODO DEACTIVATED: changeDataInFile(getCachePath() . 'config-local.php', 'OUTPUT-MODE', "setConfigEntry('OUTPUT_MODE', '", "');", postRequestParameter('omode'), 0);
+./inc/install-functions.php:59: // @TODO DEACTIVATED: changeDataInFile(getCachePath() . 'config-local.php', 'OUTPUT-MODE', "setConfigEntry('OUTPUT_MODE', '", "');", postRequestParameter('omode'), 0);
./inc/language/de.php:1127:// @TODO Rewrite these two constants
./inc/language/de.php:1142:// @TODO Rewrite these three constants
./inc/language/de.php:301: // @TODO Following two are unused?
./inc/modules/admin/what-list_user.php:257: // @TODO Rewrite this into a filter
./inc/modules/admin/what-list_user.php:300: // @TODO Rewrite this into a filter
./inc/modules/admin/what-list_user.php:59:// @TODO Rewrite these if-blocks in a filter
-./inc/modules/admin/what-logs.php:69: // @TODO Fix content-type here
+./inc/modules/admin/what-logs.php:66: // @TODO Fix content-type here
./inc/modules/admin/what-logs.php:72: // @TODO Fix content-type here
./inc/modules/admin/what-mem_add.php:126: // @TODO This can be somehow rewritten to a function
./inc/modules/admin/what-mem_add.php:65: // @TODO Cant this be rewritten?
./mailid_top.php:188: // @TODO Rewrite this to a filter
./mailid_top.php:223: // @TODO Rewrite these blocks to filter
./mailid_top.php:256: // @TODO Try to rewrite the following unset()
+./network-check.php:56:// @TODO Add processing of request here
./show_bonus.php:107: // @TODO No more needed? $content['points'] = translateComma($content['points']);
./view.php:70: // @TODO No banner found, output some default banner
./templates/de/html/admin/admin_add_country.tpl:23: <!-- @TODO Rewrite this selection box to our generic functions //-->
./templates/de/html/admin/admin_amenu_edit_form.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_amenu_edit_row.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_amenu_edit.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_del_points_row.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_del_points.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_edit_points_row.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_edit_points.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_gmenu_delete_row.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_gmenu_delete.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_gmenu_edit_form.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_points_del.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_points_edit_row.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_points_edit.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_points_row.tpl:1:<!-- @DEPRECATED //-->
+./templates/de/html/admin/admin_points.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_refbanner_edit_row.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_refbanner_edit.tpl:1:<!-- @DEPRECATED //-->
./templates/de/html/admin/admin_refbanner_row.tpl:1:<!-- @DEPRECATED //-->
* MA 02110-1301 USA *
************************************************************************/
-/************************************************************************
- * YOU MAY ALSO WANT TO REMOVE THIS FILE AFTER INSTALLTION! *
- ************************************************************************/
-
// Some security stuff...
if (!defined('__SECURITY')) {
die();
// Load it directly
$content = readFromFile($target);
- // Save old content
- $OUTPUT = ob_get_contents();
-
- // Clean content
- clearOutputBuffer();
-
// Set header
if (substr($access, -3, 3) == 'log') {
// Output header
sendHeader('Content-Type: text/plain');
+
+ // Clean content
+ clearOutputBuffer();
} elseif (substr($access, -3, 3) == '.gz') {
// @TODO Fix content-type here
sendHeader('Content-Type: text/plain');
+
+ // Clean content
+ clearOutputBuffer();
} elseif (substr($access, -3, 3) == '.bz2') {
// @TODO Fix content-type here
sendHeader('Content-Type: text/plain');
- } else {
- // Restore old content
- outputHtml($OUTPUT);
+ // Clean content
+ clearOutputBuffer();
+ } else {
// Output message
loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT', $access));
return;
outputHtml('<ol>');
// Read all files
- $files = getArrayFromDirectory(getConfig('logs_base'), 'access');
-
- // And walk through them
- foreach ($files as $file) {
+ foreach (getArrayFromDirectory(getConfig('logs_base'), 'access') as $file) {
// Cut dirname away
$file = basename($file);
* -------------------------------------------------------------------- *
* File : install.php *
* -------------------------------------------------------------------- *
- * *
- * ------------------------------------------------ *
- * / PLEASE READ THIS! / BITTE LESEN SIE DIESES! / *
- * ------------------------------------------------- *
- * *
- * -------------------------------------------------------------------- *
- * Short description : Installation script. Please delete this file *
- * after successfully installation or ANYONE can re-setup *
- * your mail exchange script!!! *
+ * Short description : Installation script. *
* -------------------------------------------------------------------- *
- * Kurzbeschreibung : Installationsscript. Bitte loeschen Sie diese *
- * Datei nach der fertiggestellten Installation oder JEDER *
- * kann Ihr Mailtausch-Script eventuell neu einstellen. *
+ * Kurzbeschreibung : Installationsscript. *
* -------------------------------------------------------------------- *
* $Revision:: $ *
* $Date:: $ *
--- /dev/null
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL Start: 07/22/2010 *
+ * =================== Last change: 07/22/2010 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : network-check.php *
+ * -------------------------------------------------------------------- *
+ * Short description : Check script for network extension *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : V-Check Script fuer Erweiterung network *
+ * -------------------------------------------------------------------- *
+ * $Revision:: $ *
+ * $Date:: $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Load security stuff here
+require('inc/libs/security_functions.php');
+
+// Set module
+$GLOBALS['module'] = 'network-check';
+$GLOBALS['output_mode'] = -1;
+
+// Load the required file(s)
+require('inc/config-global.php');
+
+// Set content type
+setContentType('text/plain');
+
+// Load header
+loadIncludeOnce('inc/header.php');
+
+// @TODO Add processing of request here
+
+// Load footer
+loadIncludeOnce('inc/footer.php');
+
+// [EOF]
+?>
-Diese Erweiterung bietet eine allgemeine Anbindungsmöglichkeit an diverese
-Werbenetzwerken an, um z.B. deren Mails zu versenden. Später sollen
-noch weitere Dinge, wie Textlinks oder Popups folgen. Sollte ein
-Werbenetzwerk hier fehlen, melden Sie sich bitte <a target="_blank"
- href="http://forum.mxchange.org/topic-462.html" rel="external">im Forum</a> an.
-Mein Team und ich binden es dann bald im Mailer-Projekt ein.
+<div class="para">
+ Ein {?mt_word?} lebt von Sponsoren (sei es direkt angemeldete - dazu nutzen
+ Sie bitte ext-sponsor - oder über Werbenetzwerke angeworbene), da auch
+ irgentwo die Kosten (Domain-, Serverkosten und mehr) gedeckt werden
+ müssen.
+</div>
+
+<div class="para">
+ Beispielsweise sind Sie bei 20 (oder gar mehr) Werbenetzwerken angemeldet.
+ Dass Sie dort nicht überall manuell die Links mit Werbetext und
+ Betreffzeile rauskopieren können, da es zu mühevoll wär, ist
+ vollkommen klar. Genau hier hilft Ihnen diese Erweiterung weiter, indem es
+ die Werbtexte, Klick-URL (die Sie bewerben sollen) und vieles mehr von den
+ einzelnen Werbenetzwerken über das Interface abfragt.
+</div>
+
+<div class="para">
+ Diese Erweiterung ist allgemeingültig und sollte somit zu
+ möglichst allen Werbenetzwerken kompatibel sein. Sie brauchen also nur
+ Ihre Interface-Zugangsdaten (meistens Ihre User-Id, Seiten-Id und
+ Interface-Passwort) im Adminmenü eintragen und schon können die
+ Kampagnen aus dem Werbenetzwerk zu diesem {?mt_word?} übertragen
+ werden, Sie machen dazu nur wenige Klicks und brauchen keine Werbetexte oder
+ URLs umständlich kopieren.
+</div>
+
+<div class="para">
+ <strong>Noch in Planung:</strong> Einige Werbenetzwerke bietet die
+ Möglichkeit eines V-Checks an. Dabei wird überprüft, ob auch
+ die beworbene URL aufgerufen wurde und wird dann an Ihren {?mt_word?} bei
+ korrektem Aufruf zurückgemeldet.
+</div>
+
+<div class="para">
+ Sollte ein Werbenetzwerk (nur welche mit Interface werden unterstützt)
+ fehlen, melden Sie es bitte <a target="_blank"
+ href="http://forum.mxchange.org/topic-462.html" rel="external">in diesem
+ Forum</a>. Mein Team und ich binden es dann bald im Mailer-Projekt ein.
+</div>