Bitte dringend vorher ALLES lesen!StarterModulesPack v2.00 mit XOOPS 2.0.16 und ein paar Hacks welche unten Beschrieben werden. In ENGLISCH + DEUTSCH verfügbar. Bisher hatten wir nur Modulpakete, aber es wird neben dem Framework und den Xoopseditoren auch weitere Sachen benötigt, deshalb haben wir zur Erleichterung das komplette Xoops ausgeliefert. Das ist für die Endanwender einfacher, trotzdem empfehle ich dieses Paket "nur" den erfahrenen Usern an!
Hintergrund:
Ab der XOOPS-Version 2.0.14 werden keine Module mehr mitgeliefert. Das hat zur Auswirkung, dass besonders Neueinsteiger möglicherweise etwas schwer tun mit XOOPS. Aus diesem Grund haben wir uns entschlossen ein sogenanntes StarterModulesPack zu schnüren und möchten es hier in der Version 2.00 vorstellen. Der Inhalt der Module und die Änderungen werden unten genau beschrieben. Selbstverständlich halten wir das Modulpaket immer auf dem Laufenden. NEU ab Version 2.00 wird es komplett mit der aktuellen Xoops-Version ausgeliefert.
Beschreibung:
Dieses Packet enthält Module für den allgemeinen Gebrauch von XOOPS. Damit kann z.B. eine private Homepage erstellt werden. Außerdem sind schon ein paar Hack eingebaut, welche unten noch beschrieben werden.
ACHTUNG:
Bitte in jedem Modulverzeichnis nach einer README ausschau halten und vor einer Installation diese zuerst lesen, weil jedes Modul individuell ist.
ZUSAMMENFASSUNG - SUMMARY
- XOOPS 2.0.16 mit extra Hacks
- Frameworks 1.10 (für CBB, Article, Tag) incl. German
- class-xoopseditor 1.10 (dhtmlext, dhtmltextarea, FCKeditor, koivi, textarea) incl. German
- TAG 0.60 (Modul zum darstellen von TAGs) dieses Modul zuerst installieren, erst danach "CBB" und "Article"!!!
- CBB 3.08 (Forum: Readme beachten, deutsches Imagesset geändert)
- Article 1.00 (News-Modul)
- Liaise 1.26 (Kontakt-Modul incl. Securityimage)
- DH-Info 1.6 (Content-Modul incl. Navigation)
- LogCounterX 2.70a (Statistik + Counter)
- ModXoopsInfo 1.20 (Infos über XOOPS + SERVER)
- MyDownloads 1.10 (Download-Modul)
- MyLinks 1.10 (Link-Modul incl. Anti-SPAM)
- XoopsPoll 1.01 (Umfrage-Modul geänderte Version: mit Logauswertung, echter Wahlmodus [Ergebnis wird nicht angezeigt], nach Abstimmung sieht der User nur das Ergebnis)
- News 1.50 (News-Modul) (FCKeditor)
- andere favicon.ico
HISTORY:
==================
Version 2.00
==================
UPDATE:
- class-xoopseditor 1.10 incl. German
- Frameworks 1.10 incl. German
- CBB 3.08 (NEW: Images-Set [GIF + PNG] in ENGLISCH + DEUTSCH)
- Article 1.00
NEW:
- news-Modul 1.50 (mit FCKeditor Funktion)
- favicon.ico
DELETE:
- Impressum 2.20 (You can take the DH-Info Modul. Dafür kann das DH-Info Modul benutzt werden.)
- news-Modul 1.51
HACKS:
1. User Registation Notification - Hack by kahumbu -
Thread:
- created regnotify.tpl in language/english/mail_template/
- register.php file hack:
[
code]
// Start of Hack
$xoopsMailer->setTemplate('regnotify.tpl');
$xoopsMailer->assign('USERNAME', $myts->oopsStripSlashesGPC($uname));
$xoopsMailer->assign('USEREMAIL', $myts->oopsStripSlashesGPC($email));
$xoopsMailer->assign('USERIP', $myts->oopsStripSlashesGPC($ip=$_SERVER['REMOTE_ADDR'] )); //for php.ini with "register globals off"
// End of Hack
[/
code]
and
Line263: // Remed for Hack above
[
code]
$xoopsMailer->setBody(sprintf(_US_HASJUSTREG, $uname));
[/
code]2. Email Notification of PM - Hack by SmartFactory
3. WYSWYG Editors in News WYSWYG editors work in News Module - Hack by McDonald and Stange -
Thread:
4. Set the default editor to dhtml for Article and CBB
5. /userinfo.php:
Added the following line to prevent
Anonymous users from viewing user profiles:
[
code]
$xoopsUser or redirect_header('index.php', 3, _NOPERM);
[/
code]
6. /modules/system/blocks/system_blocks.php:
Changed line 38 so the "Who's Online" block will accurately update and show who is really online :
From:
[
code]
if (mt_rand(1, 100) < 11) {
[/
code]
to
[
code]
if (mt_rand(1, 100) < 90) {
[/
code]
7. /language/english/global.php:
Changed lines 160, 161, 162 date format to n/j/Y
Updated Hacks
- /modules/xmspotlight/blocks/xmspotlight_block_news.php:
- lines 10, 11 renamed the functions to news_getmoduleoption for news 1.50
Thanks to McDonald and Stange for the following hacks :
Thread:
- line 182 added to solve "The Scoop, Extended Text" issue -
[
code]
$editor_configs['caption'] = $caption; // added to solve "The Scoop, Extended Text"
[/
code]
- lines 187, 188 added "xoopseditor" to the path
- lines 198, 199 added "xoopseditor" to the path and changed spelling of editor from fck... to FCK... to correct path
- line 201 remarked and added line 202 to get FCK editor working
[
code]
$editor = new XoopsFormFckeditor($editor_configs);
[/
code]
- lines 211, 212 added "xoopseditor" to the path
- lines 239 - 247 remarked and added lines 248 - 258 to get Kovi edotor working
[
code]
case "koivi":
if(!$x22) {
if ( is_readable(XOOPS_ROOT_PATH . '/class/xoopseditor/koivi/formwysiwygtextarea.php')) {
include_once(XOOPS_ROOT_PATH . '/class/xoopseditor/koivi/formwysiwygtextarea.php');
//modified per
hack Here:
//$editor = new XoopsFormWysiwygTextArea($caption, $name, $value, '100%', '400px', '');
$editor = new XoopsFormWysiwygTextArea($editor_configs);
}
} else {
$editor = new XoopsFormEditor($caption, 'koivi', $editor_configs);
}
[/
code]
/class/xoopseditor/koivi/include/functions.inc.php:
- moved line 32 to 52
[
code]
move this /* before the first function in the file include/functions.inc.php to right after the getLanguage function
[/
code]
/class/xoopseditor/koivi/formwysiwygtextarea.php:
- line 199 added
[
code]
include_once( getLanguage( $this->getUrl() ) );
[/
code]
INSTALLATIONS ANLEITUNG
- Extract this package and uplaod it to your web directory. Goto the URL of the files (
www.domain.com or
www.domain.com/directory, etc) and follow the install instructions.
- Once installed, the only module that will be listed as installed is "System" module. To install any of the other listed modules, click on them and follow the instructions.
WARNUNG:
- This is NOT an upgrade package.
- Always backup your database and existing website before making any changes.
- This package is the 2.0.16 that can be downloaded from
www.xoops.org along with modules listed on xoops. I am only providing a single install package for your convenience.
SUPPORT:
General Support for Hacks:
http://www.saeportal.comTechnical Support for Xoops and Modules:
http://www.xoops.org/ +
http://www.myxoops.org/Special Thanks to:
http://www.saeportal.com/Download-Link über
Sourceforge:
7,6 MB