11
Skype-Fr
Pb delete member into Profile
  • 2015/11/3 12:41

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi all,

From XOOPS 2.5.7 - PHP 5.5.22 - Profile 1.86

In user profile, account auto delete is not enable because :
"Sorry, you do not have the permission..."

while authorization system setting is ON !!

Could you help me ?

Gerard (french).



12
Skype-Fr
Re: Pb block with MyMenus 1.41 on X2.5.7
  • 2015/8/4 14:26

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Oh Yes !!! It works ...

Thank very much



13
Skype-Fr
Pb block with MyMenus 1.41 on X2.5.7
  • 2015/8/4 11:38

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi all,

MyMenus 1.41 , Xoops 2.5.7 , Php 5.6.6

I made first menu ... Ok, my menu block is visible.
but after, I can't display an other menu block !!

I made second menu ... ok but I can't see any new menu block !!!

What do I do ?
Regards, Gilles



14
Skype-Fr
Re: CKeditor by default
  • 2015/8/4 11:27

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi Mamba,

Thank, but
Only I can use CKeditor with a specific module after changing code ! (Eguide mod)
I can't use it by default ..

However, it is good because now my TinyMCE is Ok (I re-uploaded this pack editor and all is right).

Gilles



15
Skype-Fr
CKeditor by default
  • 2015/7/21 15:34

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi all ...

By default, I would like to use CKeditor (last version 4.5.1) with Xoops 2.5.7 (php 5.6) ..

I uploaded CKeditor and unzip into class/xoopseditor/ckeditor/,
I can see it with administration system settings but if I choose CKeditor, it does not display in modules.

How do I do ?

Regards.
Gilles




16
Skype-Fr
Re: replace Fckeditor by CKeditor
  • 2014/5/13 11:15

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


my previous config.js is not compatible with IE8.

Good config is :

CKEDITOR.editorConfig = function( config ) {
    
config.language 'fr'// your country
    
config.uiColor '#888888';
    
//config.extraPlugins = 'autogrow';
    
config.height 550;
    
//config.width = 540;
    
config.skin 'kama';
    
//config.skin = 'office2013';

config.toolbar = [
    [ 
'mode''document''doctools' ],  [ 'Source''-''Save''Preview''Print' ],
    [ 
'clipboard''undo' ],['Undo''Redo' ],[ 'Cut''Copy''Paste''PasteText''PasteFromWord'],
    
'/',
    [ 
'find''selection''spellchecker' ],['SelectAll''-''Scayt' ],
    [ 
'Image''Flash''Table''HorizontalRule''Smiley' ],
    [ 
'Link''Unlink''Anchor' ],
    
'/',
    [ 
'basicstyles''cleanup' ],[ 'Bold''Italic''Underline''Strike''-''RemoveFormat' ],
    [ 
'list''indent''blocks''align''bidi' ],[ 'NumberedList''BulletedList''-''Outdent''Indent''-''CreateDiv''-''JustifyLeft''JustifyCenter''JustifyRight''JustifyBlock' ],
    
'/',
    [ 
'Styles''Format''Font''FontSize' ],
    [ 
'TextColor''BGColor' ],
    [ 
'Maximize''ShowBlocks' 
];

};



17
Skype-Fr
Re: replace Fckeditor by CKeditor
  • 2014/5/10 21:11

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


All right !

It is very easy :

<script type="text/javascript" src="<{$xoops_url}>/class/xoopseditor/ckeditor/ckeditor.js"></script>

<
textarea id="summary" name="summary" wrap="virtual" cols="60" rows="40"><{$summary|escape}></textarea>

<
script type="text/javascript">
CKEDITOR.replace'summary' );
</
script>


Here, my config file [config.js]

CKEDITOR.editorConfig = function( config ) {
    
// Define changes to default configuration here. For example:
    
config.language 'fr';
    
config.uiColor '#888888';
    
config.height 550;
    
//config.width = 540;

    // Toolbar configuration generated automatically by the editor based on config.toolbarGroups.
    
config.toolbar = [
        { 
name'document'groups: [ 'mode''document''doctools' ], items: [ 'Source''-''Save''Preview''Print' ] },
        { 
name'clipboard'groups: [ 'clipboard''undo' ], items: [ 'Cut''Copy''Paste''PasteText''PasteFromWord''-''Undo''Redo' ] },
        
'/',
        { 
name'editing'groups: [ 'find''selection''spellchecker' ], items: ['SelectAll''-''Scayt' ] },
        { 
name'insert'items: [ 'Image''Flash''Table''HorizontalRule''Smiley' ] },
        { 
name'links'items: [ 'Link''Unlink''Anchor' ] },
        
'/',
        { 
name'basicstyles'groups: [ 'basicstyles''cleanup' ], items: [ 'Bold''Italic''Underline''Strike''-''RemoveFormat' ] },
        { 
name'paragraph'groups: [ 'list''indent''blocks''align''bidi' ], items: [ 'NumberedList''BulletedList''-''Outdent''Indent''-''CreateDiv''-''JustifyLeft''JustifyCenter''JustifyRight''JustifyBlock' ] },
        
'/',
        { 
name'styles'items: [ 'Styles''Format''Font''FontSize' ] },
        { 
name'colors'items: [ 'TextColor''BGColor' ] },
        { 
name'tools'items: [ 'Maximize''ShowBlocks' ] },
        { 
name'others'items: [ '-' ] },
    ];
    
    
// Toolbar groups configuration.
    
config.toolbarGroups = [
        { 
name'document'groups: [ 'mode''document''doctools' ] },
        { 
name'clipboard'groups: [ 'clipboard''undo' ] },
        { 
name'editing'groups: [ 'find''selection''spellchecker' ] },
        { 
name'forms' },
        
'/',
        { 
name'basicstyles'groups: [ 'basicstyles''cleanup' ] },
        { 
name'paragraph'groups: [ 'list''indent''blocks''align''bidi' ] },
        { 
name'links' },
        { 
name'insert' },
        
'/',
        { 
name'styles' },
        { 
name'colors' },
        { 
name'tools' },
        { 
name'others' },
        { 
name'about' }
    ];
};


Regards
Gilles



18
Skype-Fr
replace Fckeditor by CKeditor
  • 2014/5/6 21:19

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi all,

I 'm needing to use CKeditor into this code (eguide mod) :
"admin.html"

<script type="text/javascript" src="<{$xoops_url}>/class/xoopseditor/fckeditor/fckeditor.js"></script>
<
script type="text/javascript">
function 
fckeditor_exec(targetwidthheighturl) {
    var 
area_width width;
    var 
area_height height;
    var 
xoops_url url;
    var 
oFCKeditor = new FCKeditortargetarea_widtharea_height, ("<{$use_fckeditor}>"=="Basic")?"Default":"Basic" );
    
oFCKeditor.BasePath xoops_url "/class/xoopseditor/fckeditor/";
    
oFCKeditor.Config["CustomConfigurationsPath"] = xoops_url "/class/xoopseditor/fckeditor/fckconfig.js" ;
    
oFCKeditor.ReplaceTextarea();
}
fckeditor_exec("summary""98%""450""<{$xoops_url}>");
</
script>


Could you help me ...

Gilles



19
Skype-Fr
Re: disclamer with lift
  • 2009/11/14 13:12

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Vertical lift because my disclamer text is too long !

But, I don't find something in css.




20
Skype-Fr
disclamer with lift
  • 2009/11/14 11:47

  • Skype-Fr

  • Just popping in

  • Posts: 28

  • Since: 2006/4/27


Hi all,

About XOOPS site v 2.3.3

(registrer form) I would like display the disclamer text with a vertical lift.

thanks ...

Gilles




TopTop
« 1 (2) 3 »



Login

Who's Online

221 user(s) are online (127 user(s) are browsing Support Forums)


Members: 0


Guests: 221


more...

Donat-O-Meter

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

Latest GitHub Commits