Verfasst: Mi 19. Sep 2007, 13:38
Hat jemand von Euch schon das Download-Modul von rok° unter 6.8.15 MR zum laufen gebracht?
Würde mich über Feedback freuen.
MfG
Würde mich über Feedback freuen.
MfG
Das Diskussionsforum zum Open Source Content Management System
https://forum.contenido.org/
= Modrewrite - die erweiterung von stese welche hieroglyphische URLS in suchmaschinenfreundliche (spoken) URLS umwandelt.rok°! hat geschrieben:MR?
Hallo rok°,rok°! hat geschrieben:Muss dafür eine vorgegebene regexp genutzt werden, die überall in Contenido angewendet wird, oder darfs eine sein, die speziell dafür gedacht ist? (Wenn ersteres, dann bitte mal hier posten.)
Code: Alles auswählen
//echo "filename: $file : filetype: " . filetype($dirname . $file) . "\n";
Code: Alles auswählen
$subdir_path = '<strong>Pfad:</strong> <a href="'.$_SERVER['PHP_SELF'] . '?idart=' . $_REQUEST['idart'] . '&idcat=' . $_REQUEST['idcat'] . '">Downloads</a>';Leider ?kreativsteffi hat geschrieben:Muss jetzt leider doch versuchen ein anderes Modul einzubauen, weil ich ohne Beschreibung nicht leben kannDanke trotzdem für deine Antwort
Code: Alles auswählen
?><?php
/***********************************************
* CONTENIDO MODUL - INPUT
*
* Modulname : Download All v 1.0
* Author(s) : Marcel Bensch, info@marcelbensch.de
* Copyright : Marcel Bensch, www.marcelbensch.de
* Created : 23.04.2007
************************************************/
#Selected Download directory
$cms_dirname = "CMS_VALUE[1]";
$specificfolder = "CMS_VALUE[2]";
if ($cms_dirname == '' || $cms_dirname == '0') {
$cms_dirname = '--- Bitte wählen ---';
}
#Get paths
$sql = "SELECT
htmlpath, frontendpath
FROM
".$cfg["tab"]["clients"]."
WHERE
idclient = ".$client." ";
$db->query($sql);
if ($db->next_record()) {
$htmlpath = $db->f('htmlpath');
$frontendpath = $db->f('frontendpath');
}
#Choose image folder
echo '<table cellpadding="0" cellspacing="0" border="0">
<tr><td class="text_medium" style="padding:5px;"> <label>
<input name="CMS_VAR[2]" type="checkbox" value="1"';
if ( $specificfolder == "1") { echo 'checked';}
echo '/>Nur Dateien aus speziellem Verzeichnis anzeigen</label></td></tr>
<tr><td class="text_medium" style="padding:5px">';
echo '<select name="CMS_VAR[1]" style="width:200px">';
#Get upload directories
$sql = "SELECT DISTINCT
dirname
FROM
".$cfg["tab"]["upl"]."
WHERE
idclient='$client'
ORDER BY
dirname";
$db->query($sql);
$selected = false;
while ($db->next_record()) {
$dirname = $db->f('dirname');
if ($cms_dirname != $dirname) {
echo '<option value="'.$dirname.'"> '.$dirname.'</option>';
} else {
$selected = true;
echo '<option value="'.$dirname.'" selected="selected"> '.$dirname.'</option>';
}
}
if (!$selected) {
echo '<option value="0" selected="selected">'.i18n("Bitte wählen").'</option>';
} else {
echo '<option value="0">'.i18n("Bitte wählen").'</option>';
}
echo '</select> <input type="image" src="images/submit.gif">';
echo '</td></tr>';
echo '</table>';
?><?phpCode: Alles auswählen
<?php
/************************************************************************
* CONTENIDO MODUL - OUTPUT
*
* Modulname : Download All v 1.0
* Author(s) : Marcel Bensch, info@marcelbensch.de
* Copyright : Marcel Bensch, www.marcelbensch.de
* Created : 23.04.2007
*************************************************************************/
//Variablen werden festgelegt
$dirname = "CMS_VALUE[1]";
$specificfolder = "CMS_VALUE[2]";
$fileicon = array(
'*' => 'images/icons/file.gif',
'bz2' => 'images/icons/rarfile.gif',
'c' => 'images/icons/cfile.gif',
'cpp' => 'images/icons/cppfile.gif',
'doc' => 'images/icons/docfile.gif',
'exe' => 'images/icons/exefile.gif',
'h' => 'images/icons/hfile.gif',
'htm' => 'images/icons/htmfile.gif',
'html' => 'images/icons/htmfile.gif',
'gif' => 'images/icons/imgfile.gif',
'gz' => 'images/icons/zipfile.gif',
'jpg' => 'images/icons/imgfile.gif',
'js' => 'images/icons/jsfile.gif',
'm' => 'images/icons/mfile.gif',
'mp3' => 'images/icons/mpgfile.gif',
'mpg' => 'images/icons/mpgfile.gif',
'pdf' => 'images/icons/pdffile.gif',
'png' => 'images/icons/imgfile.gif',
'ppt' => 'images/icons/pptfile.gif',
'rar' => 'images/icons/rarfile.gif',
'swf' => 'images/icons/swffile.gif',
'txt' => 'images/icons/txtfile.gif',
'xls' => 'images/icons/xlsfile.gif',
'zip' => 'images/icons/zipfile.gif',
);
// Abfrage ob ein spezielles Verzeichnis verwendet wird
if ( $specificfolder == '1' ) {
$dir = $dirname;
} else { $dirname = '0';}
// Datenbankabfrage generieren
if ($dirname == "0") {
$sql = "SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY idupl";
} else {
$sql = "SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = '$dirname' ORDER BY idupl";
}
//Datenbank abfragen
$db->query($sql);
//Tabelle und Überschriften generieren
echo '<table width="600" cellspacing="5"><tr style="color:white; background-color:#00377d; font-face:verdana; size: 10pt; font-weight:bold;">
<td> Typ </td>
<td> Name </td>
<td> Beschreibung </td>
<td> Größe </td>
</tr>';
// Daten aus Datenbank auslesen
while ($db->next_record()) {
$filename = $db->f('filename'); //--> Dateiname wird ausgelesen
$description = $db->f('description'); //--> Dateibeschreibung wird ausgelesen
$description = urldecode($description); //--> Dateibeschreibung wird in HTML konvertiert
$filetype = $db->f('filetype'); //--> Dateityp wird ausgelesen
$size_ = $db->f('size'); //--> Dateigröße wird ausgelesen
$dirs = $db->f('dirname'); //--> Es werden die Verzeichnisse des Querys ausgelesen für den Fall, das kein spezielles definiert wurde
// Dateigröße wird gerundet und als kb oder MB ausgeben
$size = round($size_/1000, 2);
if ($size >= 1000) { $size = round($size/1000, 2); $printsize = $size.' MB'; }
else { $printsize = $size.' kb';}
// Es wird überprüft ob ein spezielles Verzeichnis angegeben wurde,
// dann wird selektiert nach Dateien aus dem Datenbanksystem und Dateien
// aus dem normalen Filesystem und dann werden die Links generiert
if ($dirname == '0'){
if ($dirs == 'dbfs:/'){
$linktarget = 'dbfs.php?file=dbfs:/';
} else {$linktarget = 'upload/'.$dirs;}
} else {
if ($dir == 'dbfs:/'){
$linktarget = 'dbfs.php?file=dbfs:/';}
else { $linktarget = 'upload/'.$dir;}
}
// Der Code für den letztendlichen download wird ausgegeben
echo '<tr><td valign="top"><img src="'.$fileicon[$filetype].'"/></td> <!-- Icon wird ausgegeben -->
<td valign="top"><a href="'.$linktarget.$filename.'">'.$filename.'</a></td> <!-- Dateiname mit Link wird ausgegeben -->
<td valign="top">'.$description.'</td> <!-- Dateibeschreibung wird ausgegeben --->
<td valign="top">'.$printsize.'</td>',"\n"; //Dateigröße wird ausgegeben
}
// Die Tabelle wird abgeschlossen
echo '</tr></table>';
// Der Query wird geleert und die Datenbankverbindung geschlossen
$db->free();
?> 
Nein eigentlich keine. Das Modul läuft so eigentlich wie es auf den Shots zu sehen ist.kreativsteffi hat geschrieben:Hat irgendwer ne Idee, warum das nicht geht?
Bitte hilf dir erstmal selber.kreativsteffi hat geschrieben:Bitte helft mir!
Code: Alles auswählen
[10-Sep-2007 20:27:40] PHP Warning: Cannot modify header information - headers already sent by (output started at /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php:315) in /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php on line 406
[11-Sep-2007 07:37:39] PHP Warning: Cannot modify header information - headers already sent by (output started at /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php:315) in /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php on line 406
[11-Oct-2007 04:55:37] PHP Warning: Cannot modify header information - headers already sent by (output started at /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php:315) in /homepages/40/d82849008/htdocs/vaj-online/con/cms/front_content.php on line 406
[13-Oct-2007 02:44:30] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=585ba68f11c6248afca47626e6a501a5 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY filename
[13-Oct-2007 02:44:30] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=585ba68f11c6248afca47626e6a501a5 next_record called with no query pending in Module ID 50.
[13-Oct-2007 02:44:36] /con/contenido/external/backendedit/front_content.php?changeview=prev&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&lang=1&contenido=585ba68f11c6248afca47626e6a501a5 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY filename
[13-Oct-2007 02:44:36] /con/contenido/external/backendedit/front_content.php?changeview=prev&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&lang=1&contenido=585ba68f11c6248afca47626e6a501a5 next_record called with no query pending in Module ID 50.
[13-Oct-2007 02:45:07] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=585ba68f11c6248afca47626e6a501a5 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY filename
[13-Oct-2007 02:45:07] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=585ba68f11c6248afca47626e6a501a5 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:21:49] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY filename
[14-Oct-2007 01:21:49] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:22:31] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[14-Oct-2007 01:22:31] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:23:31] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[14-Oct-2007 01:23:31] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:23:53] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[14-Oct-2007 01:23:53] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:24:22] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[14-Oct-2007 01:24:22] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[14-Oct-2007 01:24:34] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[14-Oct-2007 01:24:34] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[17-Oct-2007 14:46:11] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[17-Oct-2007 14:46:11] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[17-Oct-2007 14:49:48] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[17-Oct-2007 14:49:48] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[17-Oct-2007 14:52:02] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[17-Oct-2007 14:52:02] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[17-Oct-2007 15:28:54] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[17-Oct-2007 15:28:54] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[17-Oct-2007 15:30:16] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[17-Oct-2007 15:30:16] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 01:44:38] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[18-Oct-2007 01:44:38] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 01:44:51] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[18-Oct-2007 01:44:51] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 01:54:24] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[18-Oct-2007 01:54:24] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 01:55:04] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[18-Oct-2007 01:55:04] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 01:59:37] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY filename
[18-Oct-2007 01:59:37] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 02:43:41] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[18-Oct-2007 02:43:41] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[18-Oct-2007 02:52:07] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[18-Oct-2007 02:52:07] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[19-Oct-2007 00:55:29] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[19-Oct-2007 00:55:29] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[19-Oct-2007 00:57:03] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[19-Oct-2007 00:57:03] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[19-Oct-2007 00:57:12] /con/cms/front_content.php MySQL error 1146: Table 'db216835896.etb_cat_art' doesn't exist
SELECT idart FROM etb_cat_art WHERE idcat=''
[19-Oct-2007 00:57:12] /con/cms/front_content.php next_record called with no query pending in Module ID 53.
[19-Oct-2007 00:57:12] /con/cms/front_content.php MySQL error 1146: Table 'db216835896.etb_art_lang' doesn't exist
SELECT idartlang FROM etb_art_lang WHERE idart = '' AND idlang = '1'
[19-Oct-2007 00:57:12] /con/cms/front_content.php next_record called with no query pending in Module ID 53.
[19-Oct-2007 00:57:12] /con/cms/front_content.php MySQL error 1146: Table 'db216835896.etb_content' doesn't exist
SELECT value FROM etb_content WHERE idartlang = '' AND idtype = '1' AND typeid = '1'
[19-Oct-2007 00:57:12] /con/cms/front_content.php next_record called with no query pending in Module ID 53.
[19-Oct-2007 00:57:12] /con/cms/front_content.php MySQL error 1146: Table 'db216835896.etb_content' doesn't exist
SELECT value FROM etb_content WHERE idartlang = '' AND idtype = '2' AND typeid = '1'
[19-Oct-2007 00:57:12] /con/cms/front_content.php next_record called with no query pending in Module ID 53.
[03-Nov-2007 16:58:36] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY idupl
[03-Nov-2007 16:58:36] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 16:59:54] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 16:59:54] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:00:32] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:00:32] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:01:42] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=ea28f9900af9a1b7926c3398a2b5a584 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:01:42] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=ea28f9900af9a1b7926c3398a2b5a584 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:02:32] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:02:32] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:03:16] /con/cms/front_content.php?idcat=31 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY idupl
[03-Nov-2007 17:03:16] /con/cms/front_content.php?idcat=31 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:08:02] /con/cms/front_content.php?idcat=31 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bildergalerie/' ORDER BY idupl
[03-Nov-2007 17:08:02] /con/cms/front_content.php?idcat=31 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:08:10] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:08:10] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:12:19] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY idupl
[03-Nov-2007 17:12:19] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:12:42] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'dbfs:/' OR dirname LIKE 'dbfs:/%' OR dirname = 'downloads/' OR dirname LIKE 'downloads/%' ORDER BY idupl
[03-Nov-2007 17:12:42] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:14:58] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:14:58] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:15:06] /con/cms/front_content.php?idcat=31 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'fotogalerie/2006/doku06/' ORDER BY idupl
[03-Nov-2007 17:15:06] /con/cms/front_content.php?idcat=31 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:17:58] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY idupl
[03-Nov-2007 17:17:58] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[03-Nov-2007 17:23:21] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY idupl
[03-Nov-2007 17:23:21] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:17:38] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=192a929d326dcd0d5591b93d67e12c35 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[04-Nov-2007 04:17:38] /con/contenido/external/backendedit/front_content.php?changeview=edit&client=1&lang=1&action=con_editart&idartlang=12&idart=12&idcat=30&tmpchangelang=&contenido=192a929d326dcd0d5591b93d67e12c35 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:18:03] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[04-Nov-2007 04:18:03] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:18:41] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY filename
[04-Nov-2007 04:18:41] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:21:40] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY filename
[04-Nov-2007 04:21:40] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:25:36] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'Presse/Presseinfos/' ORDER BY filename
[04-Nov-2007 04:25:36] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:25:46] /con/cms/front_content.php?idcat=31 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'fotogalerie/2006/doku06/' ORDER BY filename
[04-Nov-2007 04:25:46] /con/cms/front_content.php?idcat=31 next_record called with no query pending in Module ID 50.
[04-Nov-2007 04:38:50] /con/cms/front_content.php?idcat=30 MySQL error 1146: Table 'db216835896.con_upl' doesn't exist
SELECT filename, description, filetype, size, dirname FROM con_upl WHERE dirname = 'bilder/' ORDER BY filename
[04-Nov-2007 04:38:50] /con/cms/front_content.php?idcat=30 next_record called with no query pending in Module ID 50.
Deswegen:kreativsteffi hat geschrieben:Bei mir gibt es keine Tabellen mit con_blabla, die heißen alle cms_blabla
Wie kann das sein?
Code: Alles auswählen
z.B.: ...
if ($dirname == "0") {
$sql = "SELECT filename, description, filetype, size, dirname FROM con_upl ...
usw.