|
|
Latest News |
Latest Threads |
|
 |
56.467 Posts & 4.945 Themen in 78 Foren |
|
|
|
 |
Forensuche |
|
Suchbegriff |
Benutzerauswahl |
Ergebnisse anzeigen |
 |
 |
ASCE Forum Attachment V1.0 22 Beiträge in diesem Thema |
|
|
 |
|
|
 |
|
 |
13.01.2013 - 16:37 Uhr |
|
|
|
Hey,
das die Änderungen an den Dateien wirklich übernommen wurden und sie in richtiger Form auf dem FTP liegen habe ich geprüft und kann ich bestätigen. Die vermisste Variable ist nach wie vor hier lokalisiert:
… ./../pkinc/publictpl/content/articles.htm
Für die php-Datei müsste es dann so aussehen, richtig?:
bbcode.php
Hier klicken zum aufklappen 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | | Quellcode <?php
# PHPKIT WCMS | Web Content Management System
#
#
# YOU ARE NOT AUTHORISED TO CREATE ILLEGAL COPIES OF THIS
# FILE AND/OR TO REMOVE THIS INFORMATION
#
# SIE SIND NICHT BERECHTIGT, UNRECHTMÄSSIGE KOPIEN DIESER
# DATEI ZU ERSTELLEN UND/ODER DIESE INFORMATIONEN ZU ENTFERNEN
#
# This file / the PHPKIT software is no freeware! For further
# information please visit our website or contact us via email:
#
# Diese Datei / die PHPKIT Software ist keine Freeware! Für weitere
# Informationen besuchen Sie bitte unsere Website oder kontaktieren uns per E-Mail:
#
# email : info@phpkit.com
# website : http://www.phpkit.com
# licence : http://www.phpkit.com/licence
# copyright : Copyright (c) 2002-2009 mxbyte gbr | http://www.mxbyte.com
return array(
$CQeditLnk
array(
'tag' => 'hr',
'html' => '<hr />',
'type' => 'single',
),
array(
'tag' =>'list=1',
'html' =>'<ol type="1">{text}</ol>',
'type' => 'list',
),
array(
'tag' => 'list=a',
'html' => '<ol type="a">{text}</ol>',
'type' => 'list',
),
array(
'tag' => 'list',
'html' => '<ul>{text}</ul>',
'type' => 'list',
),
array(
'tag' => 'b',
'html' => '<b>{text}</b>',
'type' => '',#empty=default
),
array(
'tag' => 'i',
'html' => '<i>{text}</i>',
'type' => '',#empty=default
),
array(
'tag' => 'u',
'html' => '<u>{text}</u>',
'type' => '',#empty=default
),
array(
'tag' => 'd',
'html' => '<strike>{text}</strike>',
'type' => '',#empty=default
),
array(
'tag' => 'h2',
'html' => '<h2>{text}</h2>',
'type' => '',#empty=default
),
array(
'tag' => 'h3',
'html' => '<h3>{text}</h3>',
'type' => '',#empty=default
),
array(
'tag' => 'h4',
'html' => '<h4>{text}</h4>',
'type' => '',#empty=default
),
array(
'tag' => 'p',
'html' => '<p>{text}</p>',
'type' => '',#empty=default
),
array(
'tag' => 'sub',
'html' => '<sub>{text}</sub>',
'type' => '',#empty=default
),
array(
'tag' => 'sup',
'html' => '<sup>{text}</sup>',
'type' => '',#empty=default
),
array(
'tag' => 'left',
'html' => '<div style="text-align:left">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'center',
'html' => '<div style="text-align:center">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'right',
'html' => '<div style="text-align:right">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'block',
'html' => '<div style="text-align:justify">{text}</div>',
'type' => '',#empty=default
),
#Code Parser der KNW Community ANFANG
/*
array(
'tag' => 'code',
'html' => '<code>{text}</code>',
'type' => '',#empty=default
),
*/
array(
'tag' => 'code',
'html' => '{text}',
'type' => 'parser',#empty=default
),
array(
'tag' => 'php',
'html' => '{text}',
'type' => 'parser',#empty=default
),
#Code Parser der KNW Community ENDE
array(#@TODO: Revise the HTML-Code an single div-container with headline is much smarter
'tag' => 'quote',
'html' => '<table class="quote" width="98%" cellpadding="4" cellspacing="1" align="center"><tr><td class="quote"><b>'.pkGetLang('quote').'</b><br /><font class="quote">{text}</font></td></tr></table><br />',
'type' => '',#empty=default
),
array(
'tag' => 'white',
'html' => '<font style=\"color: #FFFFFF\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'gray',
'html' => '<font style=\"color: #CCCCCC\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'dimgray',
'html' => '<font style=\"color: #333333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'navy',
'html' => '<font style=\"color: #003399\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'royalblue',
'html' => '<font style=\"color: #0099FF\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'red',
'html' => '<font style=\"color: #FF3333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'orange',
'html' => '<font style=\"color: #FF7F00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'yellow',
'html' => '<font style=\"color: #FFFF00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'green',
'html' => '<font style=\"color: #00FF00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'white',
'html' => '<font style=\"color: #333333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'color',
'html' => '<span style="color:{option};">{text}</span>',
'type' => 'double',
),
array(
'tag' => 'email',
'html' => '<a href="mailto:{text}">{text}</a>',
'type' => '',#empty=default
),
array(
'tag' => 'email',
'html' => '<a href="mailto:{option}">{text}</a>',
'type' => 'double',
),
#IMG Fader Modifikation www.kit-coding.de
array(
'tag' => 'img',
'html' => '<img border="0" alt="{imagecap}" src="{image}" longdesc="{imagebig}" />',
'type' => 'img'
),
array(
'tag' => 'imgr',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="right" longdesc="{imagebig}" />',
'type' => 'img',
),
array(
'tag' => 'imgl',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="left" longdesc="{imagebig}" />',
'type' => 'img',
),
#IMG Fader Modifikation www.kit-coding.de
// Spoiler BBCode by PimpYourKiT.de
array(
'tag' => 'spoiler',
'html' => '{text}',
'type' => 'spoiler',
),
// Spoiler BBCode by PimpYourKiT.de
array(
'tag' => 'url',
'html' => '<a href="{option}">{text}</a>',
'type' => 'url',
),
);
?> | |  |
Bedeutet direkt im Kopf das die Codezeile an erster Stelle stehen soll? So:
articles.htm
LG, mono
|
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von mono - 13.01.2013 - 16:38 Uhr |
|
|
|
|
|
|
|
 |
WEBI Unberechenbares Urgestein |
 |
|
|
|
|
|
|
|
|
 |
13.01.2013 - 17:16 Uhr |
|
|
|
Bei der articles.htm wäre es richtig, die untere Variable könnte man jedoch schonmals entfernen, um sich die doppelte Arbeit, sollte es denn funktionieren, schenken zu können. In der bbcode.php hat diese Variable jedoch nichts verloren, denn da erhälst du ja einen anderen Code. Diesen hier:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | | PHP-Quelltext #IMG Fader Modifikation www.kit-coding.de
array(
'tag' => 'img',
'html' => '<img border="0" alt="{imagecap}" src="{image}" longdesc="{imagebig}" />',
'type' => 'img'
),
array(
'tag' => 'imgr',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="right" longdesc="{imagebig}" />',
'type' => 'img',
),
array(
'tag' => 'imgl',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="left" longdesc="{imagebig}" />',
'type' => 'img',
),
#IMG Fader Modifikation www.kit-coding.de | |  |
Die gesamten Dateien sollten ersteinmal wie folgt aussehen:
bbcode.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | | PHP-Quelltext <?php
# PHPKIT WCMS | Web Content Management System
#
#
# YOU ARE NOT AUTHORISED TO CREATE ILLEGAL COPIES OF THIS
# FILE AND/OR TO REMOVE THIS INFORMATION
#
# SIE SIND NICHT BERECHTIGT, UNRECHTMÄSSIGE KOPIEN DIESER
# DATEI ZU ERSTELLEN UND/ODER DIESE INFORMATIONEN ZU ENTFERNEN
#
# This file / the PHPKIT software is no freeware! For further
# information please visit our website or contact us via email:
#
# Diese Datei / die PHPKIT Software ist keine Freeware! Für weitere
# Informationen besuchen Sie bitte unsere Website oder kontaktieren uns per E-Mail:
#
# email : info@phpkit.com
# website : http://www.phpkit.com
# licence : http://www.phpkit.com/licence
# copyright : Copyright (c) 2002-2009 mxbyte gbr | http://www.mxbyte.com
return array(
#IMG Fader Modifikation www.kit-coding.de
array(
'tag' => 'img',
'html' => '<img border="0" alt="{imagecap}" src="{image}" longdesc="{imagebig}" />',
'type' => 'img'
),
array(
'tag' => 'imgr',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="right" longdesc="{imagebig}" />',
'type' => 'img',
),
array(
'tag' => 'imgl',
'html' => '<img border="0" alt="{imagecap}" src="{image}" align="left" longdesc="{imagebig}" />',
'type' => 'img',
),
#IMG Fader Modifikation www.kit-coding.de
array(
'tag' => 'hr',
'html' => '<hr />',
'type' => 'single',
),
array(
'tag' =>'list=1',
'html' =>'<ol type="1">{text}</ol>',
'type' => 'list',
),
array(
'tag' => 'list=a',
'html' => '<ol type="a">{text}</ol>',
'type' => 'list',
),
array(
'tag' => 'list',
'html' => '<ul>{text}</ul>',
'type' => 'list',
),
array(
'tag' => 'b',
'html' => '<b>{text}</b>',
'type' => '',#empty=default
),
array(
'tag' => 'i',
'html' => '<i>{text}</i>',
'type' => '',#empty=default
),
array(
'tag' => 'u',
'html' => '<u>{text}</u>',
'type' => '',#empty=default
),
array(
'tag' => 'd',
'html' => '<strike>{text}</strike>',
'type' => '',#empty=default
),
array(
'tag' => 'h2',
'html' => '<h2>{text}</h2>',
'type' => '',#empty=default
),
array(
'tag' => 'h3',
'html' => '<h3>{text}</h3>',
'type' => '',#empty=default
),
array(
'tag' => 'h4',
'html' => '<h4>{text}</h4>',
'type' => '',#empty=default
),
array(
'tag' => 'p',
'html' => '<p>{text}</p>',
'type' => '',#empty=default
),
array(
'tag' => 'sub',
'html' => '<sub>{text}</sub>',
'type' => '',#empty=default
),
array(
'tag' => 'sup',
'html' => '<sup>{text}</sup>',
'type' => '',#empty=default
),
array(
'tag' => 'left',
'html' => '<div style="text-align:left">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'center',
'html' => '<div style="text-align:center">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'right',
'html' => '<div style="text-align:right">{text}</div>',
'type' => '',#empty=default
),
array(
'tag' => 'block',
'html' => '<div style="text-align:justify">{text}</div>',
'type' => '',#empty=default
),
#Code Parser der KNW Community ANFANG
/*
array(
'tag' => 'code',
'html' => '<code>{text}</code>',
'type' => '',#empty=default
),
*/
array(
'tag' => 'code',
'html' => '{text}',
'type' => 'parser',#empty=default
),
array(
'tag' => 'php',
'html' => '{text}',
'type' => 'parser',#empty=default
),
#Code Parser der KNW Community ENDE
array(#@TODO: Revise the HTML-Code an single div-container with headline is much smarter
'tag' => 'quote',
'html' => '<table class="quote" width="98%" cellpadding="4" cellspacing="1" align="center"><tr><td class="quote"><b>'.pkGetLang('quote').'</b><br /><font class="quote">{text}</font></td></tr></table><br />',
'type' => '',#empty=default
),
array(
'tag' => 'white',
'html' => '<font style=\"color: #FFFFFF\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'gray',
'html' => '<font style=\"color: #CCCCCC\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'dimgray',
'html' => '<font style=\"color: #333333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'navy',
'html' => '<font style=\"color: #003399\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'royalblue',
'html' => '<font style=\"color: #0099FF\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'red',
'html' => '<font style=\"color: #FF3333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'orange',
'html' => '<font style=\"color: #FF7F00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'yellow',
'html' => '<font style=\"color: #FFFF00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'green',
'html' => '<font style=\"color: #00FF00\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'white',
'html' => '<font style=\"color: #333333\">{text}</font>',
'type' => '',#empty=default
),
array(
'tag' => 'color',
'html' => '<span style="color:{option};">{text}</span>',
'type' => 'double',
),
array(
'tag' => 'email',
'html' => '<a href="mailto:{text}">{text}</a>',
'type' => '',#empty=default
),
array(
'tag' => 'email',
'html' => '<a href="mailto:{option}">{text}</a>',
'type' => 'double',
),
// Spoiler BBCode by PimpYourKiT.de
array(
'tag' => 'spoiler',
'html' => '{text}',
'type' => 'spoiler',
),
// Spoiler BBCode by PimpYourKiT.de
array(
'tag' => 'url',
'html' => '<a href="{option}">{text}</a>',
'type' => 'url',
),
);
?> | |  |
Im Grunde genommen auch eher sinnfrei, da wie bereits erwähnt, die Position des Passagen bei der Deinstallation irrelevant ist. Dennoch eventuell die Passagen mit denen, aus den Fehlermeldungen ersetzen, sollte doch irgendetwas Fehlerhaft / verfremdet sein. Was ich aber derzeit in keinster Weise feststellen kann.
|
|
|
|
|
|
|
 |
|
 |
14.01.2013 - 01:35 Uhr |
|
|
|
Hey,
es hat sich nichts verändert. Wenn es möglich ist den Fader "per Hand" zu deinstallieren, würde ich das gerne versuchen. Vorher möchte ich noch sicherstellen, ob ich das Addons richtig eingebaut habe. In den Anleitungsinformationen zum Fader steht:
Hier klicken zum aufklappen
Adminbereich -> Konfiguration -> Meta-Angaben -> Eigene Headerangaben
Vergewissern sie sich das dort nur 1 mal die Zeile vorkommt:
Das Wort "jquery-" UND eine Versionsnummer dahinter, die abweichend von dieser ist, ist zu löschen,
wenn die Version aus dem Addon hier neuer ist wie die Ihre.
<script type="text/javascript" src="fx/fullsize/jquery-1.7.1.js"></script>
Füge in das Feld direkt unter <head> folgendes ein und klicken Sie auf speichern:
<script type="text/javascript" src="fx/fullsize/jquery-1.7.1.js"></script>
Füge ganz unten in das Feld folgendes ein und klicken Sie auf speichern:
<!-- IMG Fader http://www.kit-coding.de -->
<link href="fx/fullsize/fullsize.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="fx/fullsize/jquery.fullsize.minified.js"></script>
<script type="text/javascript">
<!--
jQuery(document).ready(function(){
jQuery("img").fullsize();
});
//-->
</script>
<!-- IMG Fader http://www.kit-coding.de -->
=======================================================================
pkinc/admintpl/site.htm
Vergewissern sie sich das dort nur 1 mal die Zeile vorkommt:
Das Wort "jquery-" UND eine Versionsnummer dahinter, die abweichend von dieser ist, ist zu löschen,
wenn die Version aus dem Addon hier neuer ist wie die Ihre.
<script type="text/javascript" src="fx/fullsize/jquery-1.7.1.js"></script>
Füge in das Feld direkt unter <head> folgendes ein und klicken Sie auf speichern:
<script type="text/javascript" src="fx/fullsize/jquery-1.7.1.js"></script>
Bei mir habe ich in das Feld unter "eigene Headerangabe" folgendes eingetragen:
Hier klicken zum aufklappen
<!-- IMG Fader http://www.kit-coding.de -->
<script type="text/javascript" src="fx/fullsize/jquery-1.7.1.js"></script>
<!-- IMG Fader http://www.kit-coding.de -->
<!-- JQuery Start -->
<script src="http://code.jquery.com/jquery-1.7.2.js" type="text/javascript"></script>
<!-- JQuery Ende -->
<!-- Spoiler BBCode by PimpYourKiT.de -->
<script src="fx/default/bbcode/spoiler/spoiler.js" type="text/javascript"></script>
<link href="fx/default/bbcode/spoiler/spoiler.css" rel="stylesheet" type="text/css" />
<!-- Spoiler BBCode by PimpYourKiT.de -->
<!-- IMG Fader http://www.kit-coding.de -->
<link href="fx/fullsize/fullsize.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="fx/fullsize/jquery.fullsize.minified.js"></script>
<script type="text/javascript">
<!--
jQuery(document).ready(function(){
jQuery("img").fullsize();
});
//-->
</script>
<!-- IMG Fader http://www.kit-coding.de -->
Und die site.htm sieht so aus:
Ist das soweit richtig?
LG, mono
|
|
|
|
|
|
|
 |
|
 |
14.01.2013 - 04:24 Uhr |
|
|
|
hi,
also ich hatte auch so ein ähnliches Problem.
ich hatte die komplette db von der 1.6.5 Version übernommen und gedacht wenn ich alles über das asce script installiere macht er eh neue Tabellen in die db.
leider war das auch nicht der fall und mir wurden ähnliche fehler gemeldet, bzw es wurden nicht alle einträge in die db geschrieben und Dateien wurden nicht oder nur teilweise abgeändert.
vielleicht liegt da ja das Problem.
ich hatte es folgendermaßen gelöst.
ich habe nach installieren eines scriptes über asce dieses wieder komplett deinstalliert (Full-deinstall), somit werden dann ja auch die entsprechenden tabbelen in der db gelöscht.
und dann erneut installiert, und siehe da..... es ging, ohne irgendwelche fehler Meldungen und es wurden daraufhin auch alle Dateien editiert.
vielleicht hilft euch das ja weiter bei dem Problem.
mfg
|
|
|
|
|
|
|
 |
|
 |
15.01.2013 - 18:22 Uhr |
|
|
|
Hi Gizmo,
danke für deine Hilfe. Meinst du dass ich die betroffenen Addons über das ASCE deinstallieren soll? Denn das funktioniert ja leider nicht...
LG, mono
|
|
|
|
|
|
|
 |
|
 |
20.01.2013 - 16:41 Uhr |
|
|
|
Bezüglich deines IMG Fader Problems reicht es nicht den Spoiler BBCode dort herauszulöschen, denn evtl hast du auch ein paar Leerzeichen dabei gelöscht oder verschoben. Kopiere den Code 1:1 aus der Install.xml manuell heraus und ersetze den gesamten Abschnitt. Dann sollte die Deinstallation auch wieder funktionieren. Und bezüglich der articles.htm machste einfach das selbe und fügst das fehlende an die Stelle wie es in der XML nachzulesen ist. Das sollte ebenfalls funktionieren.
|
|
|
|
|
|
|
 |
|
|
 |
Ähnliche Themen |
|
|
|
|
|
|
|
|