Jump to content

[solved] Admin Seiten unvollständig oder kaputt?


Recommended Posts

Hi, meine Installation funktiniert im Großen und Ganzen, aber es gibt in der Adminoberfläche Seiten, die nicht vollständig angezeigt werden.

 

Wenn ich tools - import aufrufe, also die Seite, die CSV Dateien importieren soll, dann wird die Seite nur bis nach dem Menü dargestellt. Der Rest ist einfach weiss.

 

Auch der Quellcode bricht mittendrin ab, und zwar nach der Zeile <div id="content">

 

Ich hatte das Problem schon öfter. Habs bisher immer durch Neuinstallation gelöst, aber auf Dauer ist das extrem lästig.

 

Hat jemand eine Idee, wie ich das in Ordnung bringen kann, bzw. woran das liegen kann.

 

Gruß

Ralf

Link to comment
Share on other sites

Danke für die Tips. Hat aber leider das Problem nicht gelöst.

 

Mehr Info:

Prestashop sagt unter Konfigurationsinformation:

Erforderliche Parameter: OK

Optionale Parameter: OK

 

Ordnerrechte habe ich geprüft, alles ok.

 

Nicht mit der Liste der Serveranforderungen übereinstimmende Werte bzw. zu kleine Werte habe ich per htaccess geändert.

 

aktuelle php info hier:

http://apa-numismatik.de/info.php

 

Es ist nur eine einzige Seite betroffen, bezogen auf alle Links der 1. und 2. Ebene das Admin Menüs:

die tools-import Seite.

 

So schaut das aus:

dashboard.jpg

Link to comment
Share on other sites

Habe Fehlermeldungen aktiviert und bekomme diese Meldung:

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in path/prestashop/admin/tabs/AdminImport.php on line 102

 

Hier sind die Zeilen 101 ff aus der entsprechenden Datei.

 

'default_on' => array('label' => $this->l('Default'))

'image_position' => array('label' => $this->l('Image position'),

'help' => $this->l('Position of the product image to use for this combination. If you use this field, leave image URL empty.')),

'image_url' => array('label' => $this->l('Image URL')),

);

 

Link to comment
Share on other sites

Welche extra Module hast du ? Da ist irgendein Modul nicht kompatibel, welches sich in die Tabreiter hineingeschrieben hat, oder nicht ordentlich hineinschreiben konnte.

 

Mal alle externe, also nicht original Prestashopmodule abschalten, bzw. deinstallieren, oder am Besten die config.inc.php anpassen, dass alle Fehler angezeigt werden (der Server muss diese Funktion aber erlauben).

 

/config/config.inc.php sollte dann so aussehen.

 

/* Debug only */
@ini_set('display_errors', 'on');
define('_PS_DEBUG_SQL_', true);
$start_time = microtime(true);
/* Compatibility warning */
define('_PS_DISPLAY_COMPATIBILITY_WARNING_', on);

 

 

 

Dann werden alle Fehler angezeigt auch im BO und hier kannst du dann ansetzen.

Link to comment
Share on other sites

Tja, sorry aber es liegt an diesem Modul. Deine Fehler sind absolut nicht nachvollziehbar, in keinem der 6 Prestashops die ich betreibe (alles Originale und mit zertifizierten Modulen von Prestashop selbst). Bitte wende dich an Silbersaiten.

Link to comment
Share on other sites

Problem gelöst. In der oben gezeigten Syntax fehlte eine Klammer.

 

Richtig muß der Code wohl heißen, Zeile 86 bis 105:

self::$required_fields = array('id_product', 'options');

$this->available_fields = array(

'no' => array('label' => $this->l('Ignore this column')),

'id_product' => array('label' => $this->l('Product ID').'*'),

'options' => array('label' => $this->l('Options (Group:Value)').'*'),

'reference' => array('label' => $this->l('Reference')),

'supplier_reference' => array('label' => $this->l('Supplier reference')),

'ean13' => array('label' => $this->l('EAN13')),

'upc' => array('label' => $this->l('UPC')),

'wholesale_price' => array('label' => $this->l('Wholesale price')),

'price' => array('label' => $this->l('Price')),

'ecotax' => array('label' => $this->l('Ecotax')),

'quantity' => array('label' => $this->l('Quantity')),

'weight' => array('label' => $this->l('Weight')),

'base_net' => array('label' => $this->l('Base net')),

'default_on' => array('label' => $this->l('Default')),

'image_position' => array('label' => $this->l('Image position')),

'help' => $this->l('Position of the product image to use for this combination. If you use this field, leave image URL empty.'),

'image_url' => array('label' => $this->l('Image URL')),

);

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...