11
silver74
Re: search module for intranet to send pm's and mails
  • 2005/6/15 12:49

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


UP



12
silver74
Re: search module for intranet to send pm's and mails
  • 2005/6/14 19:23

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


Yes i try it and i find it's not so bad but if you have 1000 persones in 20 different groups its very difficult to select the good persons.

i search something to select somepeoples in some groups and when i select my liste of persons i send only to this persons.

Resized Image



13
silver74
search module for intranet to send pm's and mails
  • 2005/6/14 18:56

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


Hello,

i search something to send pm's or mails,i now i can send pm's or mails with xoops.But i need too send many messages to some peoples in diffrent group list.Excactli i search something where i can pick some peoples frome different groops to send my message.But the problem is how can i make this?



14
silver74
Re: how to create the same new blocs seems likly xoops.org?
  • 2005/3/18 18:15

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


up



15
silver74
how to create the same new blocs seems likly xoops.org?
  • 2005/3/16 9:50

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


Hello,

i need to create for a website a nearly same interface of blocs liks xoops.org.I youse the module spotlight 2.2 an the module news 1.3.But i dont find how i can create the blocs.
I will show the las new in a big bloc,seem spotlike and 4 small blocs only with the title upside.What mudule xoops.org is youse to make this? Please help i searche since 4 days,but i find nothing.



16
silver74
Re: how to "install" WYSIWYG editor for custom blocks?
  • 2005/3/14 11:26

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


edidit the file blockform.php (modules/system/admin/blocksadmin)

with that:
Quote:
<?php
// $Id: blockform.php,v 1.8 2003/03/10 13:32:05 okazu Exp $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <https://xoops.org/> //
// ------------------------------------------------------------------------ //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //

include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
include_once XOOPS_ROOT_PATH."/class/wysiwyg/formwysiwygtextarea.php";
$form = new XoopsThemeForm($block['form_title'], 'blockform', 'admin.php');
if (isset($block['name'])) {
$form->addElement(new XoopsFormLabel(_AM_NAME, $block['name']));
}
$side_select = new XoopsFormSelect(_AM_BLKTYPE, "bside", $block['side']);
$side_select->addOptionArray(array(0 => _AM_SBLEFT, 1 => _AM_SBRIGHT, 3 => _AM_CBLEFT, 4 => _AM_CBRIGHT, 5 => _AM_CBCENTER, ));
$form->addElement($side_select);
$form->addElement(new XoopsFormText(_AM_WEIGHT, "bweight", 2, 5, $block['weight']));
$form->addElement(new XoopsFormRadioYN(_AM_VISIBLE, 'bvisible', $block['visible']));
$mod_select = new XoopsFormSelect(_AM_VISIBLEIN, "bmodule", $block['modules'], 5, true);
$module_handler =& xoops_gethandler('module');
$criteria = new CriteriaCompo(new Criteria('hasmain', 1));
$criteria->add(new Criteria('isactive', 1));
$module_list =& $module_handler->getList($criteria);
$module_list[-1] = _AM_TOPPAGE;
$module_list[0] = _AM_ALLPAGES;
ksort($module_list);
$mod_select->addOptionArray($module_list);
$form->addElement($mod_select);
$form->addElement(new XoopsFormText(_AM_TITLE, 'btitle', 50, 255, $block['title']), false);
if ( $block['is_custom'] ) {
$textarea = new XoopsFormWysiwygTextArea(_AM_CONTENT, 'bcontent', $block['content'], 15, 70);
$textarea->setDescription('<span style="font-size:x-small;font-weight:bold;">'._AM_USEFULTAGS.'</span><br /><span style="font-size:x-small;font-weight:normal;">'.sprintf(_AM_BLOCKTAG1, '{X_SITEURL}', XOOPS_URL.'/').'</span>');
$form->addElement($textarea, true);
$ctype_select = new XoopsFormSelect(_AM_CTYPE, 'bctype', $block['ctype']);
$ctype_select->addOptionArray(array('H' => _AM_HTML, 'P' => _AM_PHP, 'S' => _AM_AFWSMILE, 'T' => _AM_AFNOSMILE));
$form->addElement($ctype_select);
} else {
if ($block['template'] != '') {
$tplfile_handler =& xoops_gethandler('tplfile');
$btemplate =& $tplfile_handler->find($GLOBALS['xoopsConfig']['template_set'], 'block', $block['bid']);
if (count($btemplate) > 0) {
$form->addElement(new XoopsFormLabel(_AM_CONTENT, '<a href="'.XOOPS_URL.'/modules/system/admin.php?fct=tplsets&op=edittpl&id='.$btemplate[0]->getVar('tpl_id').'">'._AM_EDITTPL.'</a>'));
} else {
$btemplate2 =& $tplfile_handler->find('default', 'block', $block['bid']);
if (count($btemplate2) > 0) {
$form->addElement(new XoopsFormLabel(_AM_CONTENT, '<a href="'.XOOPS_URL.'/modules/system/admin.php?fct=tplsets&op=edittpl&id='.$btemplate2[0]->getVar('tpl_id').'" target="_blank">'._AM_EDITTPL.'</a>'));
}
}
}
if ($block['edit_form'] != false) {
$form->addElement(new XoopsFormLabel(_AM_OPTIONS, $block['edit_form']));
}
}
$cache_select = new XoopsFormSelect(_AM_BCACHETIME, 'bcachetime', $block['cachetime']);
$cache_select->addOptionArray(array('0' => _NOCACHE, '30' => sprintf(_SECONDS, 30), '60' => _MINUTE, '300' => sprintf(_MINUTES, 5), '1800' => sprintf(_MINUTES, 30), '3600' => _HOUR, '18000' => sprintf(_HOURS, 5), '86400' => _DAY, '259200' => sprintf(_DAYS, 3), '604800' => _WEEK, '2592000' => _MONTH));
$form->addElement($cache_select);
if (isset($block['bid'])) {
$form->addElement(new XoopsFormHidden('bid', $block['bid']));
}
$form->addElement(new XoopsFormHidden('op', $block['op']));
$form->addElement(new XoopsFormHidden('fct', 'blocksadmin'));
$button_tray = new XoopsFormElementTray('', '&nbsp;');
if ($block['is_custom']) {
$button_tray->addElement(new XoopsFormButton('', 'previewblock', _PREVIEW, "submit"));
}
$button_tray->addElement(new XoopsFormButton('', 'submitblock', _SUBMIT, "submit"));
$form->addElement($button_tray);
?>



17
silver74
search french translation of "document management system"
  • 2005/3/10 16:43

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


Hello,

i search the french translation file of the module dms "document management system".
Everyone can tellme how i can find this?



18
silver74
Re: How to run xsas under win2k?
  • 2005/2/26 14:29

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


nobody can help me?

Please,only one



19
silver74
Re: How to run xsas under win2k?
  • 2005/2/24 10:41

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


a little up this



20
silver74
How to run xsas under win2k?
  • 2005/2/23 15:36

  • silver74

  • Just popping in

  • Posts: 21

  • Since: 2004/4/2 2


Hello,

i dont now why xsas does not function any longer under my win2k, i haves testet some days before and it work perfectly.
But now when i want run xsas he dont create w: and he dont turns on MySQL and apache.I have only a message "Cannot acced to w:http://....."After i can see the control pannel,but when i click on xoops2 i dont cant go to the XOOPS website.

I dont now what i have change unintentionally on my configuration.Please help me to change this.




TopTop
« 1 (2) 3 »



Login

Who's Online

161 user(s) are online (94 user(s) are browsing Support Forums)


Members: 0


Guests: 161


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits