17. Mai 2012 02:50:54
Navigation
· Startseite
· Artikel
· Forum
· Gästebuch
· Links
· Fotogalerie
· News Kategorien
· FAQ
· Link us
· Suche
· Impressum
PHP-Fusion
· Downloads
· Roadmap/Bugtracker
· PHP-Fusion Suche
Fun
· Games
· Witze
· Quiz (in development)
Downloads

Neue Downloads

· Gray_Theme (Nic...
· Blue_Flash
· Profile.php V7....
· ShoutBox V2.2
· Forum Extension...

Top 5 Downloads

· PHP-Fusion: Inf... [35099]
· PHP-Fusion: Inf... [34412]
· PHP-Fusion: Inf... [19598]
· PHP-Fusion: Inf... [18727]
· PHP-Fusion: Inf... [14894]
Partner
geld-verdienen-88x31
Neueste Artikel
· EN: How to change th...
· Inhalt der Registrie...
· Favicon in PHP-Fusio...
· Wie kann man die Anz...
· Globale Variablen un...
Game Events
Latest scores
Schlumpf2602
Scored 120 Points
In nineballibpg
feuerwehr
Scored 470 Points
In pacman
bobbel
Scored 400 Points
In goldminer
bobbel
Scored 629 Points
In bubble_shoot
calimero
Scored 734 Points
In helicopter
Latest Champions
calimero
Is the New Champion
In helicopter
with 734 Points.
Basti
Is the New Champion
In Glumballs
with 24276 Points.
Basti
Is the New Champion
In 983
with 640 Points.
C@rlos
Is the New Champion
In 3dgolf9hole_1
with 45 Points.
Jante
Is the New Champion
In 2dknockout
with 10 Points.
Arcade Best
# Name Scores
 AlbaBin 19
 Megalega 9
 ThePostman 9
 ritchi 6
 djbigbaer 5
 Wildfire 5
 Basti 3
 Shamania 3
 Pippilotta 3
 PHPexpert 3
Benutzer Online
· Gäste Online: 9

· Mitglieder Online: 0

· Registrierte Mitglieder: 2,602
· Neustes Mitglied: Schlumpf2602
letzte User
· coco2102:57:47
· Seehund03:00:41
· Nancy05:20:40
· Webbi05:54:53
· Gaboe18:39:53
· FantasyGirl 1 Tag
· Giuseppe 1 Tag
· Blackcat 1 Tag
· schnecke 1 Tag
· Daddy 1 Tag

Thread ansehen: Problem mit meinem Professional_Download_System
basti2web.de - Basti´s Website » PHP-Fusion - Content Management System » PHP-Fusion: Infusionen & Mods/Hacks
Wer ist hier? 2 Gäste
Aktuelle Bewertung: (Insgesamt: 0 Bewertungen)  
 Drucke Thread
Problem mit meinem Professional_Download_System
dackel
Hallo ich hab da mal nen Problem mit meinem Professional_Download_System für php-Fusion v7.00.05
Ich komme auf die Seite des Moderator/Log,aber leider sehe ich da nur den Hintergrund also sprich keine Textfelder etc
Hier ein Bild

s7.directupload.net/images/110812/temp/54jufvdi.jpg

Ich hab schon in der edit_admin.php gesucht,aber leider nix gefunden
Ich poste mal den code rein vielleicht findet ihr ja den Fehler

Download Code  Code
<?php /*************************************************************************** * Professional Download System * * * * Copyright (C) pirdani * * * * http://pirdani.de/ * * * * Copyright (C) 2005 EdEdster (Stefan Noss) * * http://edsteratho... * * * * Copyright (C) 2006-2008 Artur Wiebe * * * * http://wibix.de/ * * * * 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. * ***************************************************************************/ require_once('include/common.php'); if(!iPDP_MOD) { fallback('download.php'); } if(!$download->id) { fallback('download.php'); } require_once('include/edit.php'); /* * GET */ // get latest timestamp $query_id = dbquery("SELECT log_timestamp FROM ".DB_PDP_LOG." WHERE download_id='".$download->id."' ORDER BY log_timestamp DESC LIMIT 1"); if(dbrows($query_id)) { $last_updated = dbarray($query_id); $last_updated = array_shift($last_updated); } else { $last_updated = 0; } // get all sub-dirs in the upload directory $upload_file_dirs = array(); if(!empty($pdp->settings['upload_file'])) { $path = $pdp->settings['upload_file']; $handle = opendir($path); while(false !== ($dir=readdir($handle))) { if(substr($dir, 0, 1)=='.' || !is_dir($path.$dir)) { continue; } $upload_file_dirs[] = $dir.'/'; } closedir($handle); } /**************************************************************************** * ACTION */ if(isset($_POST['set_status'])) { if($last_updated > $_POST['last_updated']) { fallback(FUSION_SELF.'?did='.$download->id.'&errno='.PDP_EUPDATED); } $status = stripinput($_POST['value']); if(!isset($locale['PDP904'])) { fallback(FUSION_SELF."?did=".$download->id); } $ok = $download->set_status($status, true); if($status==PDP_PRO_ON) { $download->inform_subscribers(); } if($ok) { $download->log_event(PDP_EV_STATUS, 0); fallback(FUSION_SELF."?did=".$download->id); } } elseif(isset($_POST['resetlog'])) { if($last_updated > $_POST['last_updated']) { fallback(FUSION_SELF."?did=".$download->id."&errno=".PDP_EUPDATED); } $ok = dbquery("DELETE FROM ".DB_PDP_LOG."" ." WHERE download_id='".$download->id."'"); if($ok) { $download->log_event(PDP_EV_CLEARLOG, 0); fallback(FUSION_SELF."?did=".$download->id); } } elseif(isset($_POST['resetbroken'])) { $ok = dbquery("UPDATE ".DB_PDP_DOWNLOADS." SET dl_broken_count='0' WHERE download_id='".$download->id."'"); if($ok) { $download->log_event(PDP_EV_RESETBROKEN, 0); fallback(FUSION_SELF."?did=".$download->id); } } elseif(isset($_POST['resetvisitors'])) { $ok = dbquery("UPDATE ".DB_PDP_DOWNLOADS." SET count_visitors='0' WHERE download_id='".$download->id."'"); if($ok) { $download->log_event(PDP_EV_RESETVISITORS, 0); fallback(FUSION_SELF.'?did='.$download->id); } } elseif(isset($_POST['setcount'])) { if(!isNum($_POST['count'])) { fallback(FUSION_SELF."?did=".$download->id); } $ok = dbquery("UPDATE ".DB_PDP_DOWNLOADS."" ." SET dl_count='".$_POST['count']."'" ." WHERE download_id='".$download->id."'"); if($ok) { $download->log_event(PDP_EV_CHEAT, 0); fallback(FUSION_SELF."?did=".$download->id); } } elseif(isset($_POST['set_max_pics'])) { $ok = dbquery("UPDATE ".DB_PDP_DOWNLOADS." SET max_pics='".intval($_POST['max_pics'])."' WHERE download_id='".$download->id."'"); if($ok) { fallback(FUSION_SELF.'?did='.$download->id); } } elseif(isset($_POST['set_dir_files'])) { if($_POST['dir_files']!="" && !in_array($_POST['dir_files'], $upload_file_dirs)) { fallback(FUSION_SELF.'?did='.$download->id); } $ok = dbquery("UPDATE ".DB_PDP_DOWNLOADS." SET dir_files='".$_POST['dir_files']."' WHERE download_id='".$download->id."'"); if($ok) { fallback(FUSION_SELF.'?did='.$download->id); } } /**************************************************************************** * GUI */ if(isset($_GET['errno'])) { pdp_process_errno($_GET['errno']); } opentable($locale['PDP450']); echo ' <a rel="nofollow" href="admin/del_download.php?did='.$download->id.'">' .$locale['PDP880'].'</a> <hr />'; $sel_status = ''; foreach($locale['PDP904'] as $val => $title) { $sel_status .= '<option value="'.$val.'"' .($val==$download->status ? ' selected="selected"' : '' ).'>'.$title.'</option>'; } $sel_dir_files = '<option value="">'.$locale['pdp_none'].'</option>'; foreach($upload_file_dirs as $dir) { $sel_dir_files .= ' <option value="'.$dir.'"' .($dir==$download->data['dir_files'] ? ' selected="selected"' : '' ).'>'.$dir.'</option>'; } echo ' <form action="'.FUSION_SELF.'?did='.$download->id.'" method="post"> <input type="hidden" name="last_updated" value="'.$last_updated.'"> <table width="100%" border="0" class="fusion-settings"> <colgroup> <col width="33%" /> <col width="*" /> <col width="*" /> </colgroup> <tbody> <tr> <td align="right">'.$locale['PDP454'].':</td> <td>'.ff_db_count("(*)", DB_PDP_LOG, "(download_id='".$download->id."')").'</td> <td><input type="submit" class="button" name="resetlog" value="'.$locale['pdp_delete'].'"></td> </tr> <tr> <td align="right">'.$locale['pdp_status'].':</td> <td><select class="textbox" name="value">'.$sel_status.'</select></td> <td><input type="submit" class="button" name="set_status" value="'.$locale['PDP453'].'"></td> </tr> <tr> <td align="right">'.$locale['pdp_reset_visitors'].':</td> <td>'.$download->data['count_visitors'].'</td> <td><input type="submit" class="button" name="resetvisitors" value="'.$locale['PDP456'].'"></td> </tr> <tr> <td align="right">'.$locale['PDP455'].':</td> <td>'.$download->data['dl_broken_count'].'</td> <td><input type="submit" class="button" name="resetbroken" value="'.$locale['PDP456'].'"></td> </tr> <tr> <td align="right">'.$locale['PDP458'].':</td> <td><input type="text" class="textbox" name="max_pics" size="3" value="'.$download->data['max_pics'].'"></td> <td><input type="submit" class="button" name="set_max_pics" value="'.$locale['PDP453'].'"></td> </tr> <tr> <td align="right">'.$locale['PDP457'].':</td> <td><input type="text" class="textbox" name="count" size="7" value="'.$download->data['dl_count'].'" /></td> <td><input type="submit" class="button" name="setcount" value="'.$locale['PDP453'].'" /></td> </tr> <tr> <td align="right">'.$locale['PDP061'].':</td> <td>'.ff_db_count("(*)", DB_PDP_NOTIFY, "(download_id='".$download->id."')").'</td> <td></td> </tr> </tbody> </table> <fieldset> <legend>'.$locale['pdp_dir_files'].':</legend> '.$pdp->settings['upload_file'].' <select name="dir_files">'.$sel_dir_files.' </select> <input type="submit" class="button" name="set_dir_files" value="'.$locale['PDP453'].'" /> </fieldset> </form> <hr />'; $query_id = dbquery("SELECT log_timestamp, log_type, user_name, log.user_id, log_errno FROM ".DB_PDP_LOG." AS log LEFT JOIN ".DB_USERS." AS fu USING(user_id) WHERE download_id='".$download->id."' ORDER BY log_timestamp DESC"); if(!dbrows($query_id)) { echo '<p>'.$locale['PDP451'].'</p>'; } else { echo ' <ul>'; } while($data = dbarray($query_id)) { echo ' <li>'.showdate('shortdate', $data['log_timestamp']) .' <a rel="nofollow" href="profile.php?id='.$data['user_id'].'">' .$data['user_name'].'</a>' .' - <strong>'.$locale['PDP903'][$data['log_type']] .'</strong> - '.$locale['PDP900'][$data['log_errno']] .'</li>'; } if(dbrows($query_id)) { echo ' </ul>'; } closetable(); require_once('include/die.php'); ?>


Zuletzt bearbeitet von dackel am 24.08.2011 04:53:55
 
zoc
Hi ...
1. ich habe den Doppelpost mal gelöscht.
2. bitte mal anderes Theme ausprobieren
3. welche Version vom PDP (1.8.5 ?) ich nehme an, das Du das Tool vom wibix meinst
4. wenn alles nix hilft, dann bitte beim wibix nachfragen
SignatureDeveloper and Tester COMBRIX CMS ...
 
http://www.wuschelkiste.de/fusion/
Google Adsence
Posted on 17.05.2012 02:50:54
Bot Agent

Posts: n^x
Joined: Always

IP: localhost  
dackel
nein es funktioniert garnet mehrauf gar keinem theme
 
Springe ins Forum:
Similar Threads
Thema Forum Antworten Letzter Beitrag
Shoutbox problem PHP-Fusion: Allgemein 1 15.04.2012 22:00:35
Grosses Login Problem PHP-Fusion: Allgemein 2 15.04.2012 21:59:32
Problem mit FusionBoard 3.0 PHP-Fusion: Infusionen & Mods/Hacks 1 04.07.2010 16:40:10
PM Problem PHP-Fusion: Basti's Infusionen & Mods 2 01.07.2010 13:39:49
Problem mit "whats new panel" PHP-Fusion: Allgemein 10 23.03.2010 04:25:36
Share this thread
URL:
BB-Code:
HTML:
AddThis:
Share |
Login
Benutzername

Passwort



Noch kein Mitglied?
Registriere dich jetzt.

Passwort vergessen?
Jetzt ein neues Passwort zuschicken lassen.
Sprachen
Sponsor
Shoutbox
Gästen ist das schreiben von Mitteilungen nicht erlaubt.


User Avatar
Mix Explosion Andy
11.05.2012 10:01
Ich kenne mich mit PHP Fusion leider nicht so aus. Von daher suche ich immer Leute, die mir bereit sind meine Radioseite aufzubauen.

User Avatar
Mix Explosion Andy
11.05.2012 10:00
Ich muss jetzt mal ein riesen Lob an den Pagebetreiber los werden. Echt HAMMER die Page

No User Avatar
Data
07.04.2012 17:18
Frohes Osterfest Grin

User Avatar
Basti
31.03.2012 11:01
Gästebuch wurde aufgeräumt Smile

User Avatar
zoc
05.03.2012 19:39
Tja Janni. Hab ihn schon angeschrieben, aber noch keine Reaktion. Ab und an räum ich mal ein bisschen auf, aber mehr nicht ;-)

No User Avatar
Janilein
28.02.2012 19:44
Basti, du solltest dich echt mal um dein Gästebuch hier auf der Seite kümmern. Shock

No User Avatar
reggeraktion
19.12.2011 14:14
also auf meiner webseite habe ich mittels einer htaccess datei alle chinesischen ips geblockt, seitdem war schluss Smile

User Avatar
zoc
10.11.2011 14:14
Und wieder spammt China, diesmal 124.160.102.138. Basti, tu was ... China einfach komplett sperren. Ist eh ne Diktatur, das macht nix Smile

User Avatar
DJ_Nightlife68
24.10.2011 16:09
tach leute Wink

User Avatar
Dobermann
18.10.2011 20:17
Auch mal Nabend sagen und danke Basti, deine Infos und Downloads haben mir sehr geholfen , weiter so und LOB für deine Arbeit

Seitenaufbau: 0.14 Sekunden - 83 Queries 3,889,205 eindeutige Besuche