11
Kumar
RSS Centerproblem with utf-8
  • 2008/2/25 18:24

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


I tried to use rsscenter to fetch some malayalam language utf-8 blogs. Every thing worked fine but the blogtitle and content are shown as ????????????????????????????.

Please help
Thanks



12
Kumar
Re: realty module integration - help
  • 2008/1/7 2:19

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


You can submit this module athttps://xoops.org/modules/news/submit.php

Also try sf.net



13
Kumar
Re: Classifieds 1.0 Final Released 1-6-08
  • 2008/1/6 18:07

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Cant Install

Invalid default value for 'date'

Unable to install classifieds. Error(s):



14
Kumar
www.Xoopsaddons.org hacked?
  • 2008/1/4 3:48

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Today the xoopsaddons.org displays the following message.

XOOPS Addons has been closedfollowing a hack from a callous individual.

It will hopefully return at a later date.

XOOPS Addons Team


Recently i have downloaded lots of modules from xoopsaddons.
Is it secure using the modules?



15
Kumar
Re: Is it safe using mxdirectory_V3_0_1_RC1_tripmon?
  • 2007/8/11 3:56

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


I have added the following code to functions.php (adapted from news module)
function &yellow_getWysiwygForm($caption$name$value ''$width '100%'$height '400px'$supplemental='')
{
    
$editor false;
    
$x22=false;
    
$xv=str_replace('XOOPS ','',XOOPS_VERSION);
    if(
substr($xv,2,1)=='2') {
        
$x22=true;
    }
    
$editor_configs=array();
    
$editor_configs['name'] =$name;
    
$editor_configs['value'] = $value;
    
$editor_configs['rows'] = 35;
    
$editor_configs['cols'] = 60;
    
$editor_configs['width'] = '100%';
    
$editor_configs['height'] = '400px';


    switch(
strtolower(yellow_getmoduleoption('form_options'))) {
        case 
'spaw':
            if(!
$x22) {
                if (
is_readable(XOOPS_ROOT_PATH '/class/xoopseditor/spaw/formspaw.php'))    {
                    include_once(
XOOPS_ROOT_PATH '/class/xoopseditor/spaw/formspaw.php');
                    
$editor = new XoopsFormSpaw($caption$name$value);
                }
            } else {
                
$editor = new XoopsFormEditor($caption'spaw'$editor_configs);
            }
            break;

        case 
'fck':
            if(!
$x22) {
                if ( 
is_readable(XOOPS_ROOT_PATH '/class/xoopseditor/FCKeditor/formfckeditor.php'))    {
                    include_once(
XOOPS_ROOT_PATH '/class/xoopseditor/FCKeditor/formfckeditor.php');
                    
$editor = new XoopsFormFckeditor($caption$name$value);
                }
            } else {
                
$editor = new XoopsFormEditor($caption'fckeditor'$editor_configs);
            }
            break;

        case 
'htmlarea':
            if(!
$x22) {
                if ( 
is_readable(XOOPS_ROOT_PATH '/class/xoopseditor/htmlarea/formhtmlarea.php'))    {
                    include_once(
XOOPS_ROOT_PATH '/class/xoopseditor/htmlarea/formhtmlarea.php');
                    
$editor = new XoopsFormHtmlarea($caption$name$value);
                }
            } else {
                
$editor = new XoopsFormEditor($caption'htmlarea'$editor_configs);
            }
            break;

        case 
'dhtml':
            if(!
$x22) {
                
$editor = new XoopsFormDhtmlTextArea($caption$name$value1050$supplemental);
            } else {
                
$editor = new XoopsFormEditor($caption'dhtmltextarea'$editor_configs);
            }
            break;

        case 
'textarea':
            
$editor = new XoopsFormTextArea($caption$name$value);
            break;

        case 
'tinyeditor':
            if ( 
is_readable(XOOPS_ROOT_PATH.'/class/xoopseditor/tinyeditor/formtinyeditortextarea.php')) {
                include_once 
XOOPS_ROOT_PATH.'/class/xoopseditor/tinyeditor/formtinyeditortextarea.php';
                
$editor = new XoopsFormTinyeditorTextArea(array('caption'=> $caption'name'=>$name'value'=>$value'width'=>'100%''height'=>'400px'));
            }
            break;

        case 
'koivi':
            if(!
$x22) {
                if ( 
is_readable(XOOPS_ROOT_PATH '/class/xoopseditor/formwysiwygtextarea.php')) {
                    include_once(
XOOPS_ROOT_PATH '/class/xoopseditor/formwysiwygtextarea.php');
                    
$editor = new XoopsFormWysiwygTextArea($caption$name$value'100%''450px''');
                }
            } else {
                
$editor = new XoopsFormEditor($caption'koivi'$editor_configs);
            }
            break;
        }
        return 
$editor;
}



function 
yellow_getmoduleoption($option$repmodule='yellow_module')
{
    global 
$xoopsModuleConfig$xoopsModule;
    static 
$tbloptions= Array();
    if(
is_array($tbloptions) && array_key_exists($option,$tbloptions)) {
        return 
$tbloptions[$option];
    }

    
$retval false;
    if (isset(
$xoopsModuleConfig) && (is_object($xoopsModule) && $xoopsModule->getVar('dirname') == $repmodule && $xoopsModule->getVar('isactive'))) {
        if(isset(
$xoopsModuleConfig[$option])) {
            
$retval$xoopsModuleConfig[$option];
        }
    } else {
        
$module_handler =& xoops_gethandler('module');
        
$module =& $module_handler->getByDirname($repmodule);
        
$config_handler =& xoops_gethandler('config');
        if (
$module) {
            
$moduleConfig =& $config_handler->getConfigsByCat(0$module->getVar('mid'));
            if(isset(
$moduleConfig[$option])) {
                
$retval$moduleConfig[$option];
            }
        }
    }
    
$tbloptions[$option]=$retval;
    return 
$retval;
}


and xoops_version.php with

/**
 * Editor to use
 */
$modversion['config'][37]['name'] = 'form_options';
$modversion['config'][37]['title'] = "_MI_YELLOW_FORM_OPTIONS";
$modversion['config'][37]['description'] = '_MI_YELLOW_FORM_OPTIONS_DESC';
$modversion['config'][37]['formtype'] = 'select';
$modversion['config'][37]['valuetype'] = 'text';
$modversion['config'][37]['options'] =
 array(    
_MI_YELLOW_FORM_DHTML=>'dhtml',
            
_MI_YELLOW_FORM_COMPACT=>'textarea',
            
_MI_YELLOW_FORM_SPAW=>'spaw',
        
_MI_YELLOW_FORM_HTMLAREA=>'htmlarea',
            
_MI_YELLOW_FORM_KOIVI=>'koivi',
            
_MI_YELLOW_FORM_FCK=>'fck',
        
_MI_YELLOW_FORM_TINYEDITOR=>'tinyeditor'
            
);
$modversion['config'][37]['default'] = 'dhtml';


updated the module and changed submit.php

//$modlinkform->addElement(new XoopsFormDhtmlTextArea(_MD_DESCRIPTIONC , 'moddesc' , null , 8, 50), false);
     
$editor=yellow_getWysiwygForm(_MD_DESCRIPTIONC'moddesc'$moddesc1560'moddesc_hidden');
$modlinkform->addElement($editor,true);


The form displayed fine with the selected editor but the data was not saved to the database.

any help please

Thanks



16
Kumar
Re: Is it safe using mxdirectory_V3_0_1_RC1_tripmon?
  • 2007/8/10 16:41

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Thank you verymuch for the kind information.
Hope to see new release of this great useful module soon...
However i decided to use this in a production site and interested in using TinyEditor in description and coupon description fields. Is there any solution/snippet available for this.
Thanks



17
Kumar
Re: Is it safe using mxdirectory_V3_0_1_RC1_tripmon?
  • 2007/8/10 7:23

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Thanks for the replies.
zyspec, can you please comment on any upcoming/stable release of mxdirectory or about current dev status.



18
Kumar
Is it safe using mxdirectory_V3_0_1_RC1_tripmon?
  • 2007/8/9 16:38

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Is it safe using mxdirectory_V3_0_1_RC1_tripmon on production site?



19
Kumar
Re: Community[myspace,orkut,facebook] Style User Profile System
  • 2007/8/6 16:26

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


Congratulation attock...Great Work!!
Hope this module will become a milestone in XOOPS dev history.
Waiting to here from devs...



20
Kumar
News article filtering
  • 2007/7/28 10:16

  • Kumar

  • Just popping in

  • Posts: 61

  • Since: 2005/8/8 1


How can i filter the view of articles in News 1.5 only to a specified period(say current date -7 days, except archive page).

thanks




TopTop
« 1 (2) 3 4 5 6 »



Login

Who's Online

189 user(s) are online (134 user(s) are browsing Support Forums)


Members: 0


Guests: 189


more...

Donat-O-Meter

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

Latest GitHub Commits