Differences

This shows you the differences between two versions of the page.

deutsch:installation:installieren [2010/11/07 12:55]
Knut Heermann (flip-flop)
deutsch:installation:installieren [2018/06/03 18:09] (current)
Line 11: Line 11:
**Die letzte Version //(Release)// ist immer hier verfügbar:**\\ **Die letzte Version //(Release)// ist immer hier verfügbar:**\\
-[[http://code.google.com/p/phpwcms/downloads/list|Stabile Entwicklerversion]]\\+[[http://code.google.com/p/phpwcms/downloads/list|Stabile Entwicklerversion]] **(Empfohlen)** \\
-> [[http://code.google.com/p/phpwcms/source/list|Committed Changes]] -> to\\ -> [[http://code.google.com/p/phpwcms/source/list|Committed Changes]] -> to\\
/* ->-> [[http://jgbm.de/checkout.phtml|The actual stable developer version (incl. Committed Changes)]] **(commended)**\\ */ /* ->-> [[http://jgbm.de/checkout.phtml|The actual stable developer version (incl. Committed Changes)]] **(commended)**\\ */
/* ->-> Thanks to Jürgen (DF6IH)\\ */ /* ->-> Thanks to Jürgen (DF6IH)\\ */
-->-> [[http://www.phpwcms-docu.de/download-dev-versions.phtml|Docu: DEV - Version ZIP Format]] **(Empfohlen)** \\+->-> [[http://www.phpwcms-docu.de/download-dev-versions.phtml|Docu: DEV - Version ZIP Format]] \\
<note tip>Ich empfehle allerdings immer die [[http://www.phpwcms-docu.de/download-dev-versions.phtml|Docu: DEV - Version ZIP Format]] zu verwenden, da diese Version ebenso als stabil zu betrachten ist und die letzten Neuerungen beinhaltet. <note tip>Ich empfehle allerdings immer die [[http://www.phpwcms-docu.de/download-dev-versions.phtml|Docu: DEV - Version ZIP Format]] zu verwenden, da diese Version ebenso als stabil zu betrachten ist und die letzten Neuerungen beinhaltet.
Line 55: Line 55:
Alle anderen oben genannten Dateien können auf 644, Verzeichnisse auf 755 gesetzt werden. Sollte das System so nicht laufen hilft es manchmal die Rechte für die Verzeichnisse template und inc_css auf 766 zu setzen. Wenn Sie weitere Probleme beim Zugriff haben, versuchen Sie alle Dateien und Verzeichnisse auf 777 zu setzen **//(nicht empfohlen)//**. Alle anderen oben genannten Dateien können auf 644, Verzeichnisse auf 755 gesetzt werden. Sollte das System so nicht laufen hilft es manchmal die Rechte für die Verzeichnisse template und inc_css auf 766 zu setzen. Wenn Sie weitere Probleme beim Zugriff haben, versuchen Sie alle Dateien und Verzeichnisse auf 777 zu setzen **//(nicht empfohlen)//**.
-===== Start Semiautomatik Setup-Prozess =====+===== Starte den halbautomatischen Setup-Prozess =====
FIXME Übersetzen FIXME Übersetzen
-After you have successful copied phpwcms installation files to your webserver start the first time semi-automatic setup process by using the following link:+Nach dem erfolgreichen Hochladen der phpwcms-Installationsdateien auf den Webserver wird der Installationsprozess über den folgenden Link gestartet:
-%%http://www.mydomain.com/path_2_phpwcms/setup/index.php%%+%%http://www.example.com/path_2_phpwcms/setup/index.php%%
On top of the setup index page is an info field that gives information to the system, server software, PHP version and the path in which phpwcms is installed. If you have a PHP version <4.2.1 you should not continue – recommend PHP version >4.3.0. To continue you have to agree the GPL licence – then click button to go to step 1 of phpwcms setup script. On top of the setup index page is an info field that gives information to the system, server software, PHP version and the path in which phpwcms is installed. If you have a PHP version <4.2.1 you should not continue – recommend PHP version >4.3.0. To continue you have to agree the GPL licence – then click button to go to step 1 of phpwcms setup script.
Line 114: Line 114:
\\ \\
-===== Update nach 401/403 von älteren Versionen ===== 
- 
-Vorgehensweise nach Installation r403 V1.4.7 wenn das Update von einer älteren Version nicht funktioniert:   
- 
- 
-  * Script nach /template/inc_script/frontend_render/update_401_403.php kopieren. 
-  * Das Frontend einmal aufrufen 
-  * Diese Script aus /frontend_render/ löschen !! 
- 
-\\ 
- 
- 
-<code php> 
-<?php 
- 
-/* --------------- 401 */ 
- // check if article description field exists 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_article LIKE 'article_description'", 'COUNT_SHOW'); 
-  
- if(empty($result)) { 
- return _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_article ADD article_description VARCHAR(255) NOT NULL DEFAULT ''", 'ALTER'); 
- } 
- 
- 
-/* ---------------- 403 */ 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_articlecontent LIKE 'acontent_tab'", 'COUNT_SHOW'); 
-  
- if(empty($result)) { 
- $result = _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_articlecontent ADD acontent_tab VARCHAR(255) NOT NULL DEFAULT ''", 'ALTER'); 
- } 
-  
- // check if new structure level class field exists 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_articlecat LIKE 'acat_class'", 'COUNT_SHOW'); 
-  
- if(empty($result)) { 
- $result = _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_articlecat ADD acat_class VARCHAR(255) NOT NULL DEFAULT ''", 'ALTER'); 
- } 
-  
- // check if new structure level keywords field exists 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_articlecat LIKE 'acat_keywords'", 'COUNT_SHOW'); 
-  
- if(empty($result)) { 
- $result = _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_articlecat ADD acat_keywords VARCHAR(255) NOT NULL DEFAULT ''", 'ALTER'); 
- } 
-  
- // upgrade sysvalue fields 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_sysvalue LIKE 'sysvalue_vartype'"); 
- if(isset($result[0]['Type']) && $result[0]['Type'] == 'varchar(100)') { 
- $result = _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_sysvalue CHANGE sysvalue_vartype sysvalue_vartype VARCHAR(255) NOT NULL DEFAULT ''", 'ALTER'); 
- } 
- $result = _dbQuery("SHOW COLUMNS FROM ".DB_PREPEND."phpwcms_sysvalue LIKE 'sysvalue_value'"); 
- if(isset($result[0]['Type']) && $result[0]['Type'] == 'text') { 
- $result = _dbQuery("ALTER TABLE ".DB_PREPEND."phpwcms_sysvalue CHANGE sysvalue_value sysvalue_value MEDIUMTEXT NOT NULL", 'ALTER'); 
- } 
- 
- $revision = '403'; 
- @write_textfile(PHPWCMS_TEMP.'r'.$revision.'.checked.tmp', date('Y-d-m H:i:s')); 
- 
-?> 
- 
-</code> 
deutsch/installation/installieren.1289130919.txt.gz · Last modified: 2018/06/03 18:07 (external edit)
www.planmatrix.de www.chimeric.de Creative Commons License Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0