WordPress: Wartungsmodus nicht beendet / What to do when the maintenance mode is not terminated in WordPress?

13. April 2016 at 18:35

Wordpress logo

What to do when the maintenance mode is not terminated in WordPress?

Thank God it’s very easy to exit the maintenance mode manually. All you need is FTP access to the website (which already leads many to a non-detachable hurdle. Here the WordPress supporters of trust or the webhost ask).

Step 1: Connect with an FTP program (for example, FileZilla) to the web server
Step 2: Go to the root directory of WordPress installation
Step 3: Delete the file .maintenance
Step 4: Enjoy that page works again
retry update: Step 5

You see, it is not lost when a WP update stops time.

Please share this article von facebook & google plus or where you want, thank you!

Was tun, wenn der Wartungsmodus in WordPress nicht beendet wird?

Gottseidank ist es sehr einfach den Wartungsmodus manuell zu beenden. Man benötigt lediglich FTP Zugriff auf die Webseite (wobei das bei vielen schon zu einer nicht lösbaren Hürde führt. Hier den WordPress-Unterstützer des Vertrauens oder den Webhoster fragen).

Schritt 1: Verbinden mit einem FTP-Programm (z.B. FileZilla) auf den Webserver
Schritt 2: Wechseln in das Hauptverzeichnis der WordPress-Installation
Schritt 3: Löschen der Datei .maintenance
Schritt 4: Freuen, dass die Seite wieder funktioniert
Schritt 5: Update erneut versuchen

Man sieht, es ist nicht alles verloren, wenn ein WP-Update mal stehen bleibt.

Please share this article von facebook & google plus or where you want, thank you!

Magento: Change Attribute Type – Select to Multiselect

13. September 2013 at 17:51

Ihr möchtet den Attribute Type von Select auf Multiselect ändern?

so geht’s

$installer = $this;
$this->startSetup();
//$installer->updateAttribute('catalog_product', 'attributename', array('type' => 'varchar', 'input' => 'multiselect'));
$entityTypeId = $installer->getEntityTypeId('catalog_product', 'attributename');
$idAttributeOldSelect = $this->getAttribute($entityTypeId, 'attributename', 'attribute_id');
$installer->updateAttribute($entityTypeId, $idAttributeOldSelect, array(
    'frontend_input' => 'multiselect',
    'backend_type' => 'varchar'
));
$this->endSetup();

Magento: Admin_User Passwort per SQL in der Datenbank ändern

10. Januar 2013 at 11:19

Mit dem folgenden SQL-Update-Script ist es möglich das Passwort eines Admin_Users direkt in der Datenbank zu ändern.

Dabei ist zu beachten, dass der String „qX“ nicht geändert werden kann, den String „password“ mit dem neuen Passwort ersetzen.

UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin';

 

 

Zendstudio Update auf 8.0.1

24. Mai 2011 at 11:11

Es gibt ein neues ZendStudio Update auf version 8.0.1, folgende wichtige Änderungen gab es:

[fixed] In large PHP files (over 2000 lines) code parsing was very slow.
[fixed] Built-In PHP executables crashed on Warning or Error during local run/debug.
[fixed] JavaScript Validator threw Java Null Pointer Exception.
[fixed] Error „Unsupported Content Type“ occurred when opening a PHP file from the SVN Repositories or CVS Repositories view.
[fixed] Using the keyboard shortcut Toggle Breakpoint (Ctrl+Shift+B) resulted in a breakpoint of a wrong type (JS instead of PHP). NB: the fix will work only after workspace reset.
[fixed] Hyperlinks in tooltips were not working.
[fixed] Code Formatter used to remove the leading backslash in namespaced paths.
[fixed] When opening the Project Properties through the main menu (Project | Properties) the Remote Server Support page was not available.
[fixed] Refactor/Rename keyboard shortcut (Shift+Alt+R) was not working due to a conflict.

[improvement] Remote Server Support does not perform full re-scan of the remote resources, unless necessary.
[improvement] The Remote Search page has been removed from the Search dialog, because this functionality does not exist.
[improvement] Added keyboard shortcuts for file upload/download in Remote Server Support (Shift+Alt+P,U and Shift+Alt+P,D).
[improvement] PHP 5.3 is the new workspace default.

[update] Zend Framework Example Project (Guestbook) has been updated to the latest version from the Zend Framework project site.

Sollte bei euch nicht der Auto-Update anspringen, geht wie folgt vor:

  1. Go to Help | Install New Software
  2. Set Work With field to: http://zend.com/studio/8.0.1/update and hit enter
  3. Hit Select All, click Next and follow the instructions

ZendStudio Eclipse Update Site

23. September 2010 at 12:43

Sollte ein Update nicht möglich sein da keine Server bei „Available Software Sites“ angezeigt wird, fügt die folgenden hinzu:

Zend Studio Eclipse Update Site
http://downloads.zend.com/studio/updates

http://downloads.zend.com/studio-eclipse/updates/8_0/

http://downloads.zend.com/pdt

Den Upgrade-Guide mit weiteren Infos ihr hier

WordPress 3.0 veröffentlicht – die Neuerungen im Überblick

18. Juni 2010 at 10:04

Wordpress logoSeit gestern (17.06.2010) ist WordPress in Version 3.0 erhältlich. Das Major-Release der Blogsoftware ist das mittlerweile 13. seit Beginn des Projekts. Neu ist das mit gebrachte Standard Theme Twenty Ten, welches einige neue API-Funktionen nutzt.

Laut dem Infos des Projektes haben Insgesamt 218 Personen an WordPress 3.0 mitgearbeitet. Neben dem neuen  Theme Twenty Ten gibt es zahlreiche neue API-Funktionen, z.B. die Möglichkeit eigene Hintergründe, Kopfzeilen, Kurzlinks, Menüs, Beitragstypen und Taxonomien festzulegen. Im neuen Theme kann der Aufruf dieser exemplarisch angeschaut werden.

Weitere Neuerungen sind:

  • mehrere Plugins auf einen Schlag aktualisiert werden
  • die Multi-User-Version WordPress MU mit WordPress verschmolzen, so dass mit WordPress 3.0 nun auch mehrere Blogs aus einer Installation betrieben werden können
  • Für Nutzer wartet WordPress 3.0 mit einem vereinfachten Interface und einer kontextbasierten Hilfe auf allen Seiten auf.
  • Insgesamt wurden bei der Entwicklung von WordPress 3.0 rund 1.217 Bugs beseitigt beziehungsweise Funktionen ergänzt.

WordPress 3.0 steht ab sofort unter wordpress.org/download zum Download bereit.