Thread Verfasser: bigtobi
Thread ID: 1068
Thread Info
Es gibt 16 Beiträge zu diesem Thema, und es wurde 7265 Mal angesehen.  Ausserdem wurden Dateien angehängt.
 Thema drucken
pro_download_panel Fehler!
bigtobi
Guten Tag ich habe ein Problem mit der Infusion pro_download_panel 8.5 hoffe das mir jemand weiter helfen kann weill ich nicht weis wie ich das Problem lösen kann.

zu meinen Problem! foögende Fehler stehen bei mir im Log und die möchte ich gerne wen es geht behoben haben.

Log 1
include/theme_funcs.php
Non-static method pdpCore::format_number() should not be called statically Zeile: 197

Details
Fehler: Non-static method pdpCore::format_number() should not be called statically Zeile: 197
Datei: pro_download_panel/include/theme_funcs.php Auf Seite: infusions/pro_download_panel/download.php


1    <?php
2    /***************************************************************************
3     *   Professional Download System                                          *
4     *                                                                         *
5     *   Copyright (C) pirdani                                                 *
6     *   pirdani@hotmail.de                                                    *
7     *   http://pirdani.de/                                                    *
8     *                                                                         *
9     *   Copyright (C) 2005 EdEdster (Stefan Noss)                             *
10     *   http://edsterathome.de/                                               *
11     *                                                                         *
12     *   Copyright (C) 2006-2008 Artur Wiebe                                   *
13     *   wibix@gmx.de                                                          *
14     *   http://wibix.de/                                                      *
15     *                                                                         *
16     *   This program is free software; you can redistribute it and/or modify  *
17     *   it under the terms of the GNU General Public License as published by  *
18     *   the Free Software Foundation; either version 2 of the License, or     *
19     *   (at your option) any later version.                                   *
20     ***************************************************************************/
21    require_once('include/common.php');
22    require_once('include/theme_funcs.php');
23    
24    
25    if(isset($_GET['catid']) && isNum($_GET['catid'])) {
26        $catid = $_GET['catid'];
27    } else {
28        unset($catid);
29    }
30    if($download->id) {
31        $catid = $download->data['cat_id'];
32    }
33    
34    
35    
36    /****************************************************************************
37     * FUNCS
38     */
39    function pdp_count_dl($cats, $cat_id)
40    {
41        $count = $cats[$cat_id]['count_downloads'];
42    
43        foreach($cats as $new_cat_id => $data) {
44            if($data['parentcat']==$cat_id
45                && checkgroup($data['access']))
46            {
47                $count += pdp_count_dl($cats, $new_cat_id);
48            }
49        }
50    
51        return $count;
52    }
53    
54    function pdp_count_cats($cat)
55    {
56        global $pdp;
57    
58        $count = 0;
59        $res = dbquery("SELECT cat_id, cat_access"
60            ." FROM ".DB_PDP_CATS.""
61            ." WHERE top_cat='".$cat."'");
62        while($data = dbarray($res)) {
63            if($pdp->settings['hide_cats']
64                && !checkgroup($data['cat_access'])) {
65                continue;
66            }
67            $count += pdp_count_cats($data['cat_id']) + 1;
68        }
69        return $count;
70    }
71    
72    
73    
74    /****************************************************************************
75     * GUI
76     */
77    if($download->id) {
78        if($download->status==PDP_PRO_OFF) {
79            show_info(str_replace('%s', $download->id, $locale['PDP023']));
80        } elseif($download->status!=PDP_PRO_ON) {
81            show_info($locale['pdp_pro_status_long'][$download->status]);
82        }
83    }
84    
85    
86    
87    opentable($pdp->settings['title']);
88    pdp_menu();
89    
90    $pdp_title = $pdp->settings['title'];
91    
92    
93    /***************************************************************************
94     *  CATS                                                                   *
95     ***************************************************************************/
96    $access_group = NULL;
97    if(isset($catid)) {
98        $all_cats = array();
99    
100        $res = dbquery("SELECT cat_name, top_cat, cat_id, cat_access,
101            cat_sorting, cat_desc, count_downloads
102            FROM ".DB_PDP_CATS."
103            ORDER BY cat_order ASC");
104        while($data = dbarray($res)) {
105            $all_cats[$data['cat_id']] = array(
106                'name'            => $data['cat_name'],
107                'parentcat'        => $data['top_cat'],
108                'access'        => $data['cat_access'],
109                'sorting'        => $data['cat_sorting'],
110                'desc'            => $data['cat_desc'],
111                'count_downloads'    => $data['count_downloads'],
112            );
113        }
114        if($catid && !isset($all_cats[$catid])) {
115            fallback(FUSION_SELF.'?catid=0');
116        }
117    
118    
119        // get path to the cat
120        $localid = $catid;
121        $path = array();
122        while($localid) {
123            $topcat = $all_cats[$localid];
124            if($localid==$catid) {
125                $access_group = (checkgroup($topcat['access'])
126                    ? NULL
127                    : $topcat['access']);
128                $pdp_sorting = 'dl_'.$topcat['sorting'];
129            }
130    
131            $path[] = array(
132                'id'    => $localid,
133                'name'    => $topcat['name'],
134            );
135    
136            $localid = $topcat['parentcat'];
137        }
138        $path[] = array(
139            'id'    => 0,
140            'name'    => $locale['PDP820'],
141        );
142        $path = array_reverse($path);
143    
144        // get child cats in current cat
145        $cats = array();
146    
147        if(!$download->id) {
148            foreach($all_cats as $id => $data) {
149                if($data['parentcat']!=$catid) {
150                    continue;
151                }
152                if(!checkgroup($data['access'])
153                    && $pdp->settings['hide_cats']) {
154                    continue;
155                }
156                $cnt_cats = pdp_count_cats($id);
157                $cnt_downs = pdp_count_dl($all_cats, $id);
158    
159                $cats[$id] = array(
160                    'name'        => $data['name'],
161                    'cnt_downs'    => $cnt_downs,
162                    'cnt_cats'    => $cnt_cats,
163                    'desc'        => parseubb($data['desc']),
164                );
165            }
166        }
167    
168        if(isset($all_cats[$catid])) {
169            $pdp_title .= ' - '.$all_cats[$catid]['name'];
170        }
171    
172        pdp_render_cats($catid, $download->id, $path, $cats);
173        unset($path, $cats);
174    
175        if(!is_null($access_group)) {
176            if($pdp->settings['hide_cats']) {
177                fallback("error.php?type=access");
178            }
179            show_info('<img src="icons/lock.png" alt="'.$locale['pdp_locked'].'" /> '.str_replace('%s', getgroupname($access_group),
180                    $locale['PDP215']));
181        }
182    }
183    
184    
185    
186    /***************************************************************************
187     *  DOWNLOADS                                                              *
188     */
189    if(is_null($access_group) && !$download->id && (!isset($catid) || $catid!=0)) {
190        $rowstart = 0;
191        if(isset($_GET['rowstart']) && isNum($_GET['rowstart'])) {
192            $rowstart = $_GET['rowstart'];
193        }
194    
195        $downs = array();
196        if(isset($catid)) {
197            $get = array(
198                'type'    => 'cat',
199                'data'    => $catid,
200            );
201        } else {
202            $get = array(
203                'type'    => 'none',
204            );
205        }
206        $count = pdpCore::get_downloads($get,
207            $pdp_sorting, $rowstart, $pdp->settings['per_page'],
208            false, $downs);
209    
210        $link = FUSION_SELF."?".(isset($catid)
211            ? 'catid='.$catid.'&amp;'
212            : '');
213    
214        pdp_render_downs($downs, $rowstart, $pdp->settings['per_page'],
215            $count, $link);
216        unset($downs);
217    }
218    
219    
220    if(is_null($access_group) && $download->id) {
221        $pdp_title .= ' - '.$download->data['dl_name'];
222        include('did.php');
223    } else {
224        closetable();
225    }
226    
227    
228    pdp_add_to_title($pdp_title);
229    
230    
231    require_once('include/die.php');
232    ?>
233



Log 2
pro_download_panel/download.php
Non-static method pdpCore::get_downloads() should not be called statically Zeile: 208

Details
Fehler: Non-static method pdpCore::get_downloads() should not be called statically Zeile: 208
Datei: infusions/pro_download_panel/download.php Auf Seite: infusions/pro_download_panel/download.php


1    <?php
2    /***************************************************************************
3     *   Professional Download System                                          *
4     *                                                                         *
5     *   Copyright (C) pirdani                                                 *
6     *   pirdani@hotmail.de                                                    *
7     *   http://pirdani.de/                                                    *
8     *                                                                         *
9     *   Copyright (C) 2005 EdEdster (Stefan Noss)                             *
10     *   http://edsterathome.de/                                               *
11     *                                                                         *
12     *   Copyright (C) 2006-2008 Artur Wiebe                                   *
13     *   wibix@gmx.de                                                          *
14     *   http://wibix.de/                                                      *
15     *                                                                         *
16     *   This program is free software; you can redistribute it and/or modify  *
17     *   it under the terms of the GNU General Public License as published by  *
18     *   the Free Software Foundation; either version 2 of the License, or     *
19     *   (at your option) any later version.                                   *
20     ***************************************************************************/
21    require_once('include/common.php');
22    require_once('include/theme_funcs.php');
23    
24    
25    if(isset($_GET['catid']) && isNum($_GET['catid'])) {
26        $catid = $_GET['catid'];
27    } else {
28        unset($catid);
29    }
30    if($download->id) {
31        $catid = $download->data['cat_id'];
32    }
33    
34    
35    
36    /****************************************************************************
37     * FUNCS
38     */
39    function pdp_count_dl($cats, $cat_id)
40    {
41        $count = $cats[$cat_id]['count_downloads'];
42    
43        foreach($cats as $new_cat_id => $data) {
44            if($data['parentcat']==$cat_id
45                && checkgroup($data['access']))
46            {
47                $count += pdp_count_dl($cats, $new_cat_id);
48            }
49        }
50    
51        return $count;
52    }
53    
54    function pdp_count_cats($cat)
55    {
56        global $pdp;
57    
58        $count = 0;
59        $res = dbquery("SELECT cat_id, cat_access"
60            ." FROM ".DB_PDP_CATS.""
61            ." WHERE top_cat='".$cat."'");
62        while($data = dbarray($res)) {
63            if($pdp->settings['hide_cats']
64                && !checkgroup($data['cat_access'])) {
65                continue;
66            }
67            $count += pdp_count_cats($data['cat_id']) + 1;
68        }
69        return $count;
70    }
71    
72    
73    
74    /****************************************************************************
75     * GUI
76     */
77    if($download->id) {
78        if($download->status==PDP_PRO_OFF) {
79            show_info(str_replace('%s', $download->id, $locale['PDP023']));
80        } elseif($download->status!=PDP_PRO_ON) {
81            show_info($locale['pdp_pro_status_long'][$download->status]);
82        }
83    }
84    
85    
86    
87    opentable($pdp->settings['title']);
88    pdp_menu();
89    
90    $pdp_title = $pdp->settings['title'];
91    
92    
93    /***************************************************************************
94     *  CATS                                                                   *
95     ***************************************************************************/
96    $access_group = NULL;
97    if(isset($catid)) {
98        $all_cats = array();
99    
100        $res = dbquery("SELECT cat_name, top_cat, cat_id, cat_access,
101            cat_sorting, cat_desc, count_downloads
102            FROM ".DB_PDP_CATS."
103            ORDER BY cat_order ASC");
104        while($data = dbarray($res)) {
105            $all_cats[$data['cat_id']] = array(
106                'name'            => $data['cat_name'],
107                'parentcat'        => $data['top_cat'],
108                'access'        => $data['cat_access'],
109                'sorting'        => $data['cat_sorting'],
110                'desc'            => $data['cat_desc'],
111                'count_downloads'    => $data['count_downloads'],
112            );
113        }
114        if($catid && !isset($all_cats[$catid])) {
115            fallback(FUSION_SELF.'?catid=0');
116        }
117    
118    
119        // get path to the cat
120        $localid = $catid;
121        $path = array();
122        while($localid) {
123            $topcat = $all_cats[$localid];
124            if($localid==$catid) {
125                $access_group = (checkgroup($topcat['access'])
126                    ? NULL
127                    : $topcat['access']);
128                $pdp_sorting = 'dl_'.$topcat['sorting'];
129            }
130    
131            $path[] = array(
132                'id'    => $localid,
133                'name'    => $topcat['name'],
134            );
135    
136            $localid = $topcat['parentcat'];
137        }
138        $path[] = array(
139            'id'    => 0,
140            'name'    => $locale['PDP820'],
141        );
142        $path = array_reverse($path);
143    
144        // get child cats in current cat
145        $cats = array();
146    
147        if(!$download->id) {
148            foreach($all_cats as $id => $data) {
149                if($data['parentcat']!=$catid) {
150                    continue;
151                }
152                if(!checkgroup($data['access'])
153                    && $pdp->settings['hide_cats']) {
154                    continue;
155                }
156                $cnt_cats = pdp_count_cats($id);
157                $cnt_downs = pdp_count_dl($all_cats, $id);
158    
159                $cats[$id] = array(
160                    'name'        => $data['name'],
161                    'cnt_downs'    => $cnt_downs,
162                    'cnt_cats'    => $cnt_cats,
163                    'desc'        => parseubb($data['desc']),
164                );
165            }
166        }
167    
168        if(isset($all_cats[$catid])) {
169            $pdp_title .= ' - '.$all_cats[$catid]['name'];
170        }
171    
172        pdp_render_cats($catid, $download->id, $path, $cats);
173        unset($path, $cats);
174    
175        if(!is_null($access_group)) {
176            if($pdp->settings['hide_cats']) {
177                fallback("error.php?type=access");
178            }
179            show_info('<img src="icons/lock.png" alt="'.$locale['pdp_locked'].'" /> '.str_replace('%s', getgroupname($access_group),
180                    $locale['PDP215']));
181        }
182    }
183    
184    
185    
186    /***************************************************************************
187     *  DOWNLOADS                                                              *
188     */
189    if(is_null($access_group) && !$download->id && (!isset($catid) || $catid!=0)) {
190        $rowstart = 0;
191        if(isset($_GET['rowstart']) && isNum($_GET['rowstart'])) {
192            $rowstart = $_GET['rowstart'];
193        }
194    
195        $downs = array();
196        if(isset($catid)) {
197            $get = array(
198                'type'    => 'cat',
199                'data'    => $catid,
200            );
201        } else {
202            $get = array(
203                'type'    => 'none',
204            );
205        }
206        $count = pdpCore::get_downloads($get,
207            $pdp_sorting, $rowstart, $pdp->settings['per_page'],
208            false, $downs);
209    
210        $link = FUSION_SELF."?".(isset($catid)
211            ? 'catid='.$catid.'&amp;'
212            : '');
213    
214        pdp_render_downs($downs, $rowstart, $pdp->settings['per_page'],
215            $count, $link);
216        unset($downs);
217    }
218    
219    
220    if(is_null($access_group) && $download->id) {
221        $pdp_title .= ' - '.$download->data['dl_name'];
222        include('did.php');
223    } else {
224        closetable();
225    }
226    
227    
228    pdp_add_to_title($pdp_title);
229    
230    
231    require_once('include/die.php');
232    ?>
233


Ich sage schon mal Dnke und hoffe das mir jemand helfen kann.
bigtobi hat folgende Datei angehängt:
Du hast nicht die Berechtigung die Anhäge dieses Themas zu sehen.

Bearbeitet von bigtobi am 02. Oktober 2016 23:02:23
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
SuNflOw
Um dir zu helfen bräuchte ich die Datei mit der Klasse 'pdpCore'.
________________________________________________
I got my swim trunks and my Flippie-Floppies *-*
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
Hi ich habe die benötigten Dateien rausgesucht, hoffe das sind die richtigen.

würde mich freuen wenn mir da jetzt wer helfen kann.
bigtobi hat folgende Datei angehängt:
Du hast nicht die Berechtigung die Anhäge dieses Themas zu sehen.

Bearbeitet von bigtobi am 03. Oktober 2016 17:05:01
Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
Rolly8-HL
Das sind doch nur die wo die Fehler auftreten was er sucht ist sicherlich die \pro_download_panel\include "core.php"
Gruß Rolly8-HL
Was für Andere Wichtig ist muss für mich nicht genauso Wichtig sein!
Bin Dickkopf Unbelehrbar mache aus Protest nicht das was andere für Richtig halten!
Das gibt einem zu Denken oder?
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
ok hier ist auch die core.php

dann sage ich mal danke das ihr mir bis jetzt so gut geholfen habt, und nun heist es warten.

Zusammengefügt am 10. Oktober 2016 um 18:57:!38:
Hallo ich wolte nochmal fragen ob mir hier nun wer helfen kann oder nicht! weul sich nichts tut.

ist nicht böse gemeint.
bigtobi hat folgende Datei angehängt:
Du hast nicht die Berechtigung die Anhäge dieses Themas zu sehen.

Bearbeitet von bigtobi am 10. Oktober 2016 16:57:38
Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
Rolly8-HL
Bin mir nicht Sicher ob ich da was darüber gelesen habe
http://www.php-fusion.co.uk/forum/vie...d_id=27296
Ist mir aber irgendwo schon mal aufgefallen.
Gruß Rolly8-HL
Was für Andere Wichtig ist muss für mich nicht genauso Wichtig sein!
Bin Dickkopf Unbelehrbar mache aus Protest nicht das was andere für Richtig halten!
Das gibt einem zu Denken oder?
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
Entschuldigung nicht böse nehmen aber das ist alles in Englisch und ich kann kein Englisch, wenn da also die lösung enthalten ist Bitte übersetzen.

Zusammengefügt am 02. November 2016 um 14:!36:57:
Hallo zusammen ich gehe mal davon aus das keiner mir helfen kann, da bis heute keine Lösung erschienen ist, falls doch freue ich mich darüber.
Bearbeitet von bigtobi am 02. November 2016 13:36:57
Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
John Doe
Zuerst einmal: Es gibt Plugins für verschiedene Browser, die helfen schon mal beim Übersetzen. Alternativ gibt es verschiedene Seiten, die ebenfalls Texte übersetzen. Damit wärst du schon weiter gekommen. Man muss halt nur wollen!

Nun zu deinem Problem:

1. öffne die infusions/pro_download_panel/include/core.php

2. suche die Zeile:

function get_downloads($get, $sorting, $rowstart, $limit,


ersetze diese mit:

static function get_downloads($get, $sorting, $rowstart, $limit,


3. suche die Zeile:

function format_number($number) {


ersetze diese mit:

static function format_number($number) {


Damit sollte es gelöst sein.
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
Rolly8-HL
Auch ich spreche kein Englisch und habe so damit meine Probleme muss mir also alles vom Netz Übersetzen lassen.
Aber jetzt wo Du es mit der "static" angesprochen hast fällt es mir wieder ein warum ich auf dieser Seite war.

Hoffe das es Die Lösung ist.
Gruß Rolly8-HL
Was für Andere Wichtig ist muss für mich nicht genauso Wichtig sein!
Bin Dickkopf Unbelehrbar mache aus Protest nicht das was andere für Richtig halten!
Das gibt einem zu Denken oder?
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
Hatt super geklappt, aber jetzt ist ein weiterer Fehler aufgetaucht sehe Bild, kann auch sein das Der Fehler zuvor schon da war und ich in nicht gesehen habe.
Hier das Bild


Finde leider keinen Danke Button sonnst hätte ich den geklickt.

Zusammengefügt am 03. Juni 2017 um 14:03:19:
Hallo ich habe weiterhin diesen Fehler, wie bekomme ich den weg was muss ich tun? ziele 111
bigtobi hat folgende Datei angehängt:
Du hast nicht die Berechtigung die Anhäge dieses Themas zu sehen.

Bearbeitet von bigtobi am 03. Juni 2017 12:03:19
Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
John Doe
Ersetz mal:

while(@ob_end_clean());


mit:

while (ob_get_level() > 0) { ob_end_clean(); };
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
danke aber jetzt zeigt es das an vielleicht war der Fehler ja auch schon vorher so ich weis das es dof ist immer mit was anderen zu kommen aber andere freuen sich dann wen es geht ohne Fehler.
bigtobi hat folgende Datei angehängt:
Du hast nicht die Berechtigung die Anhäge dieses Themas zu sehen.

Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
John Doe
Den Eintrag kannste vernachlässigen, wenn denn alles funktioniert.
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
Rolly8-HL
Soweit wie mir bekannt ist, ist eine profile.tpl.php eine ausgelagerte Datei Deiner Theme und hat mit dem Standard der Fusion so nichts mit zu tun.
Diese Art von Dateien haben ihre eigenen Gesetze.
Gruß Rolly8-HL
Was für Andere Wichtig ist muss für mich nicht genauso Wichtig sein!
Bin Dickkopf Unbelehrbar mache aus Protest nicht das was andere für Richtig halten!
Das gibt einem zu Denken oder?
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
bigtobi
Danke aber wie kann ich diesen Fehler beheben?

ich weis ja nicht woran das Liegt aber ich bekomme jeden Tag etliche E-Mails von irgendwo her die von meinem Kontakt Formular geschrieben wurden obwohl ich das auf meiner Seite schon ausgeblendet habe.

Hier mal ein Beispiel

Zitat

Eine neue Kontaktanfrage wurde am 04.06.2017 um 18:25 Uhr gestellt.

Name: Nip
Email: zufar.kislovskiy.83e@mail.ru

Anliegen: Youtube

Kontakttext:



Der Absender hat folgende IP: 212.122.89.226


oder die Mail

Zitat

Eine neue Kontaktanfrage wurde am 04.06.2017 um 17:!31 Uhr gestellt.

Name: Victorlap
Email: vatuchin3@gmail.com

Anliegen: Algemeine Frage

Kontakttext:
<a href=https://volvopremium.ru/>Обслуживание и ремонт легковых автомобилей Volvo,сервис volvo , автосервис Вольво , volvo сервис, сервис вольво москва, сервис Вольво в Москве ,вольво сервис москва,ремонт вольво москва,техцентр вольво,автосервис volvo , Автосервис Volvo в Москве, обслуживание Вольво, ремонт Volvo, автосервис Volvo Вольво,сервис Volvo , специализированный сервис Вольво , сервис Вольво в Москве,техническое обслуживание автомобилей Вольво,АВТОСЕРВИС ВОЛЬВО – АВТОСЕРВИС VOLVO В МОСКВЕ И МОСКОВСКОЙ ОБЛАСТИ,ремонт Вольво в Москве, автосервис Volvo, автосервис Вольво, сервис Вольво,Volvo сервис</a>


<a href=https://volvopremium.ru/uslugi-stranitsa/tehnicheskoe-obsluzhivanie-volvo/> то вольво, то volvo, то автомобилей Вольво, то автомобилей Volvo,
Техническое обслуживание Volvo,Вольво техническое обслуживание Volvo,Вольво регулярный сервис ,Услуги по техническому обслуживанию Вольво,обслуживание volvo, техническое обслуживание Volvo,техническое обслуживание вольво,Обслуживание и ремонт легковых автомобилей Volvo </a>

<a href=https://volvopremium.ru/to_volvo> то вольво, то volvo, то автомобилей Вольво, то автомобилей Volvo,Техническое обслуживание Volvo,обслуживание вашего Volvo,обслуживание вашего Вольво,обслуживания автомобилей Вольво, стоимость то вольво,стоимость то xc 60 xc 90 и других моделей Вольво,стоимость работ по вашему автомобилю Volvo,стоимость ТО Volvo,стоимость ТО Volvo,Обслуживание и ремонтлегковых автомобилей Volvo</a>

<a href=https://volvopremium.ru/zamena-remnya-grm/>Замена ремня ГРМ Вольво Volvo xc90 xc60 xc70 s60 s80 s40,замена ремня ГРМ Вольво S40, замена ремня ГРМ Вольво S60, замена ремня ГРМ Вольво s80, замена ремня ГРМ Вольво xc60, замена ремня ГРМ Вольво xc70 и замена ремня ГРМ Вольво xc90, ремня ГРМ на Вольво ,замену ремня ГРМ Вольво ,замену ремней ГРМ на легковых автомобилях Вольво</a>


<a href=https://volvopremium.ru/zamena-masla-akpp-volvo-volvo/>Замена масла акпп Вольво (Volvo), замени масло в коробке со скидкой,Замена масла акпп Вольво (Volvo),Вольво (Volvo) замена масла в АКПП,Замена масла в акпп Вольво, масло в коробку вольво, замена масла акпп вольво, замена масла в акпп вольво, замена масла в акпп volvo, замена масла акпп volvo</a>


<a href=https://volvopremium.ru/volvo-volvo-zamena-masla-v-akpp-so-skidkoj-25/>Замена масла акпп Вольво (Volvo), замени масло в коробке со скидкой,Замена масла акпп Вольво (Volvo),Вольво (Volvo) замена масла в АКПП,Замена масла в акпп Вольво, масло в коробку вольво, замена масла акпп вольво, замена масла в акпп вольво, замена масла в акпп volvo, замена масла акпп volvo</a>


Der Absender hat folgende IP: 193.201.224.29

Meinen YouTube Channel findet ihr hierhttp://www.youtube.com/zeldafun2000
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
John Doe
Was hat denn jetzt das Kontakt Formulad mit dem PDP zu tun? Das Kontaktformular ist doch eine ganz andere Baustelle!

Wenn du es, wie du schreibst, nicht brauchst, bennenne die contac.php doch einfach um. Oder ändere einfach mal Captcha Typ, oder erweitere es mit zusätzlichen Sicherheitsfragen...

Möglichkeiten zur Absicherung gibt es einige, ist allerdings auch ein anderes Thema als jetzt dieses fürs PDP und sollte gesondert behandelt werden.
Information:
PHP Version: Nicht ausgewählt •  MySQL Version: Nicht ausgewählt •  PHP-Fusion: Nicht ausgewählt
 
Springe ins Forum: