comwave Posted July 22, 2004 Report Share Posted July 22, 2004 Hallo Zusammen, nachdem ich das Admin-Verzeichnis neu hochgeladen habe (aus Sicherung) bekomme ich nun vor dem eigentlichen Adminmen? folgende Meldungen angezeigt: // control registration array var spaw_editors = new Array(); // returns true if editor is already registered function SPAW_editor_registered(editor) { var found = false; for(i=0;i'+this[editor+'_rEdit'].document.body.innerHTML+' '; else this[editor+'_rEdit'].document.body.innerHTML = ' '+this[editor+'_rEdit'].document.body.innerHTML+' '; } sender.selectedIndex = 0; SPAW_update_toolbar(editor, true); } function SPAW_font_change(editor, sender) { fontname = sender.options[sender.selectedIndex].value; window.frames[editor+'_rEdit'].focus(); this[editor+'_rEdit'].document.execCommand('fontname', false, fontname); sender.selectedIndex = 0; SPAW_update_toolbar(editor, true); } function SPAW_fontsize_change(editor, sender) { fontsize = sender.options[sender.selectedIndex].value; window.frames[editor+'_rEdit'].focus(); this[editor+'_rEdit'].document.execCommand('fontsize', false, fontsize); sender.selectedIndex = 0; SPAW_update_toolbar(editor, true); } function SPAW_paragraph_change(editor, sender) { format = sender.options[sender.selectedIndex].value; window.frames[editor+'_rEdit'].focus(); this[editor+'_rEdit'].document.execCommand('formatBlock', false, format); sender.selectedIndex = 0; SPAW_update_toolbar(editor, true); } function SPAW_table_create_click(editor, sender) { if (window.frames[editor+'_rEdit'].document.selection.type != "Control") { // selection is not a control => insert table var nt = showModalDialog('http://www.comwave.de/admin/includes/classes/spaw/dialogs/table.php?lang=' + document.all['SPAW_'+editor+'_lang'].value + '&theme=' + document.all['SPAW_'+editor+'_theme'].value, null, 'dialogHeight:250px; dialogWidth:366px; resizable:no; status:no'); if (nt) { window.frames[editor+'_rEdit'].focus(); var newtable = document.createElement('TABLE'); try { newtable.width = (nt.width)?nt.width:''; newtable.height = (nt.height)?nt.height:''; newtable.border = (nt.border)?nt.border:''; if (nt.cellPadding) newtable.cellPadding = nt.cellPadding; if (nt.cellSpacing) newtable.cellSpacing = nt.cellSpacing; newtable.bgColor = (nt.bgColor)?nt.bgColor:''; // create rows for (i=0;i 1) { // increase rowspan cr.cells(i).rowSpan++; } else { var newc = cr.cells(i).cloneNode(); newr.appendChild(newc); } } // increase rowspan for cells that were spanning through current row for (i=0; i (cr.rowIndex - i)) tempr.cells(j).rowSpan++; } } } SPAW_update_toolbar(editor, true); } // insertRow function SPAW_formCellMatrix(ct) { var tm = new Array(); for (i=0; i 1) { ct.rows(i).cells(tm[realIndex]).colSpan++; } else { var newc = ct.rows(i).insertCell(tm[realIndex]+1) var nc = ct.rows(i).cells(tm[realIndex]).cloneNode(); newc.replaceNode(nc); } } } } SPAW_update_toolbar(editor, true); } // insertColumn function SPAW_table_cell_merge_right_click(editor, sender) { var ct = SPAW_getTable(editor); // current table var cr = SPAW_getTR(editor); // current row var cd = SPAW_getTD(editor); // current row if (cd && cr && ct) { // get "real" cell position and form cell matrix var tm = SPAW_formCellMatrix(ct); for (j=0; j0 && (tm[cr.rowIndex+ccrs][crealIndex-1]!=tm[cr.rowIndex+ccrs][crealIndex])))) { ncrs = ct.rows(cr.rowIndex+ccrs).cells(ncellIndex).rowSpan?ct.rows(cr.rowIndex+ccrs).cells(ncellIndex).rowSpan:1; nccs = ct.rows(cr.rowIndex+ccrs).cells(ncellIndex).colSpan?ct.rows(cr.rowIndex+ccrs).cells(ncellIndex).colSpan:1; // proceed only if current and next cell colspans are equal if (cccs == nccs) { // increase rowspan of current cell and append content of the next cell to current cd.innerHTML += ct.rows(cr.rowIndex+ccrs).cells(ncellIndex).innerHTML; ct.rows(cr.rowIndex+ccrs).deleteCell(ncellIndex); cd.rowSpan = ccrs+ncrs; } } } } SPAW_update_toolbar(editor, true); } // mergeDown function SPAW_table_row_delete_click(editor, sender) { var ct = SPAW_getTable(editor); // current table var cr = SPAW_getTR(editor); // current row var cd = SPAW_getTD(editor); // current cell if (cd && cr && ct) { // if there's only one row just remove the table if (ct.rows.length<=1) { ct.removeNode(true); } else { // get "real" cell position and form cell matrix var tm = SPAW_formCellMatrix(ct); // decrease rowspan for cells that were spanning through current row for (i=0; i (cr.rowIndex - i)) tempr.cells(j).rowSpan--; } } curCI = -1; // check for current row cells spanning more than 1 row for (i=0; i1 && (cr.rowIndex+1)1)?cr.cells(curCI).colSpan:1; for (j=i; j<(i+cs);j++) { tm[cr.rowIndex+1][j] = nrCI; nj = j; } for (j=nj; j1) ct.rows(i).cells(tm[realIndex]).colSpan--; else ct.rows(i).deleteCell(tm[realIndex]); } } } } SPAW_update_toolbar(editor, true); } // deleteColumn // split cell horizontally function SPAW_table_cell_split_horizontal_click(editor, sender) { var ct = SPAW_getTable(editor); // current table var cr = SPAW_getTR(editor); // current row var cd = SPAW_getTD(editor); // current cell if (cd && cr && ct) { // get "real" cell position and form cell matrix var tm = SPAW_formCellMatrix(ct); for (j=0; j1) { // split only current cell // find where to insert a cell in the next row i = realIndex; while (tm[cr.rowIndex+1] == -1) i++; if (i == tm[cr.rowIndex+1].length) ni = ct.rows(cr.rowIndex+1).cells.length; else ni = tm[cr.rowIndex+1]; ---------------------------------------------------------------------------------- Geht noch ein paar Zeilen :-( so weiter. Wer kann mir weiterhelfen, wie ich diese Hinweise bzw. Fehlermeldungen wegbekomme. Vielen Dank. Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 HI. Hast Du das Adminmen? mit den Daten aus der RAR des Shops ?berschrieben?? Wenn ja dan hast du die configure.org.php und die configure.php, in der deine Datenbank bei Installieren eingetragen wird ?berschrieben. greetz Seven Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Hallo Seven-Art. Danke f?r die schnelle Antwort. Ich habe die ganzen Files vom Shop einfach per FTP runtergeladen und einige Tage sp?ter wieder hochgeladen. Jetzt bekomme ich diese Meldungen. configure.php besitzt weiterhin die richtigen Daten zur Datenbankanbindung. Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 Hast du mal eine DB Sicherung gemacht bevor du das ge?ndert hast ??? Wenn ja nimm mal PHPmyAdmin und spiel diese mal wieder ein . !!! Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Hi. Eine Datenbanksicherung habe ich bisher nicht gemacht. Grund f?r den Upload waren heute pl?tzlich aufgetretene Fehlermeldungen im Adminbereich wie z.B. Fatal error: main(): Failed opening required 'DIR_FS_INCxtc_get_tax_rate.inc.php' (include_path='.:/usr/local/lib/php') in /homepages/8/d28564164/htdocs/admin/new_attributes_config.php on line 22 obwohl ich an den Sourcen nichts ge?ndert habe. Bin im Moment etwas ratlos. Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 Fatal error: main(): Failed opening required 'DIR_FS_INCxtc_get_tax_rate.inc.php' (include_path='.:/usr/local/lib/php') in /homepages/8/d28564164/htdocs/admin/new_attributes_config.php on line 22 hi das bedeutet das er die Datei xtc_get_tax_rate.inc.php nicht findet. Grund da fehlt der /... Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Das sieht alles richtig aus. Verwunderlich ist z.B. auch, dass bei Men? >Kunden< die W?hrungen auftauchen und umgekehrt bei >W?hrungen< die Kunden. Wir haben auch gerade festgestellt, dass Men?punkt manchmal gehen und manchmal nicht. Ohne ?nderungen am Code (ausser Stylesheet) d?rfte das ja eigentlich nicht passieren. Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 Ich denke es w?re das Beste auf dem FTP ein neues Verzeichnis anzulegen, und den Shop komplett neu installieren in der Originalfassng und dann die Template wieder aktivieren die Ihr habt. Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Gibt es auch noch eine andere M?glichkeit, ausser einer Neuinstallation ? Ist doch mit ziemlich viel arbeit verbunden :-( Und ich frage mich nat?rlich f?r was ich dann eine Sicherung per FTP gemacht habe, wenn ich diese nicht einfach wieder uploaden kann ?? Sind im Moment ziemlich ratlos!?! Link to comment Share on other sites More sharing options...
Guest HHGAG Posted July 22, 2004 Report Share Posted July 22, 2004 Versuchs mit dem Backup, wenn's nicht klappen sollte poste dann die Fehlermeldung. Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Fehlermeldung(en) sind oben beschrieben Backup des admin ordners wurde mit FTP upgeloaded. welches backup meinst du ? gibt es noch weitere ??? Link to comment Share on other sites More sharing options...
Guest HHGAG Posted July 22, 2004 Report Share Posted July 22, 2004 Hast Du in den configure.php's bzw in der admin/includes/configure.php was ver?ndert? Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 nein, keine ?nderungen. wir haben auch nachgesehen ob die daten zur datenbankanbindung richtig sind usw.. passt alles !! Link to comment Share on other sites More sharing options...
Guest HHGAG Posted July 22, 2004 Report Share Posted July 22, 2004 Benutzerrechte f?r das /inc/ Verzeichnis richtig? Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 Hi Wie habt Ihr die Daten hochgeladen ?? Welchen Modus im FTP ?? Ladet einfach mal den Adminbereich nochmal neu hoch vom Original aber speichert vorher die 2 configure daten und die .org.php im Order include/ Seven Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 wie m?ssen die benutzerrechte f?r das inc/ verzeichnis genau sein ?? ?bertragung per FTP war bin?r auto Link to comment Share on other sites More sharing options...
Guest HHGAG Posted July 22, 2004 Report Share Posted July 22, 2004 Minimum 644 Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Problem erledigt! :bounce: Wir haben einen neuen FTP-Client benutzt, statt WISE-FTP diesmal FileZilla und alles funktioniert wieder. Link to comment Share on other sites More sharing options...
Seven-Art Posted July 22, 2004 Report Share Posted July 22, 2004 Na dann ist ja alles wieder in Ordnung. :pint: Hat dann also doch am Upload gelegen. !!! greetz Seven Link to comment Share on other sites More sharing options...
comwave Posted July 22, 2004 Author Report Share Posted July 22, 2004 Ja l?uft alles wieder !! Grosses Lob an die Community !! So viel schnelle Hilfe bekommt man sonst nie !! Vielen Dank !! Link to comment Share on other sites More sharing options...
Guest HHGAG Posted July 22, 2004 Report Share Posted July 22, 2004 Machen wir gerne =) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.