1301
Mamba
ModuleInstaller 1.03 Final Released
  • 2020/5/24 8:09

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


ModuleInstaller 1.03 Final is released

ModuleInstaller is a XOOPS module to install and uninstall XOOPS Modules in bulk, instead of doing it one by one.

DOWNLOAD: https://github.com/XoopsModules25x/moduleinstaller/releases

FORK: https://github.com/XoopsModules25x/moduleinstaller/


REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7+
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



1302
zyspec
Re: Chess module
  • 2020/5/24 6:25

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


@miktre,

I made a few minor changes so the module will install. You can now create new games. I have not done any extensive testing but it appears that most features are working.

Drag-and-drop chess piece movement doesn't work (yet) and there are several formatting issues on page display but it looks like most of the functionality of the module is now working.

Please take a look at it and let us know what you find.

Download my latest changes at https://github.com/zyspec/chess



1303
kakos
Re: Nice PHP Tutorials, Examples, and Overviews, plus tons of FREE books
  • 2020/5/23 22:39

  • kakos

  • Friend of XOOPS

  • Posts: 78

  • Since: 2002/6/6 2


Too much stuff
thanks for this Mamba



1304
Mamba
Nice PHP Tutorials, Examples, and Overviews, plus tons of FREE books
  • 2020/5/23 19:05

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Very nice Tutorials, Examples, and Overviews of PHP, HTML, CSS, MySQL, plus tons of free books to read and learn:

1) Goalkicker:
PHP: https://books.goalkicker.com/PHPBook/
Others: https://books.goalkicker.com/

2) DevTut
PHP: https://devtut.github.io/php/
Others: https://devtut.github.io/

3) William Durand presentations
PHP: http://edu.williamdurand.fr/php-slides/#slide1
PHP Extended: http://edu.williamdurand.fr/php-slides/extended.html
Git, GitHub & Open Source: https://slides.williamdurand.fr/git-and-github-and-open-source/#/
Docker: https://slides.williamdurand.fr/deploying-with-docker/#/
From STUPID to SOLID Code!: https://williamdurand.fr/2013/07/30/from-stupid-to-solid-code/
Rapid Application Development & Deployment: https://slides.williamdurand.fr/rapid-app-development-and-deployment/

4) 50 Free eBooks for Web Designers & Developers
https://speckyboy.com/free-web-design-ebooks/

5) Tons of FREE books from Springer (incl. machine learning, AI, data analysis, and statistics with R):
https://github.com/BaseMax/FreeSpringerBook

So much to learn, so little time!!!!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



1305
miktre
Re: Chess module
  • 2020/5/22 19:56

  • miktre

  • Just popping in

  • Posts: 8

  • Since: 2020/4/1 1


create new game page missing game preponderances choice
Game type:

You may optionally provide a board setup position, using FEN (Forsyth-Edwards Notation). If omitted, the standard board setup will be used.
FEN setup:

after chosing and submit I get Confirm your game preferences
Game type:
*error*

I installed new shoutout module works great so far



1306
Mamba
extGallery 1.14 Beta 2 is released for testing and contributions
  • 2020/5/22 8:46

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


extGallery 1.14 Beta 2 is released for testing and contributions

DOWNLOAD: https://github.com/XoopsModules25x/extgallery/releases

FORK: https://github.com/XoopsModules25x/extgallery/


REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7+
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



1307
Mamba
Shoutbox 5.10 RC-1 released for testing
  • 2020/5/22 1:32

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


Shoutbox 5.10 RC-1 is released for testing and contributions

Shoutbox is an XOOPS module that provides an interactive block and pop-up window for visitors to post and view messages.

DOWNLOAD: https://github.com/mambax7/shoutbox/releases/

FORK: https://github.com/XoopsModules25x/shoutbox/

CHANGELOG:

- namespaces, class autoloading
- PHP 7 updates)
- reverse scrolling option

REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7+
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



1308
Mamba
Re: Change scrolling direction in Shoutbox
  • 2020/5/22 0:49

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


I've added the scrolling as an option in Preferences.

Check it out at in Shoutbox 5.10 RC-1:

https://github.com/mambax7/shoutbox/releases/

In the future, you can do it this way:
in xoops_version.php add a new Preference:
$modversion['config'][] = [
    
'name'        => 'scroll_type',
    
'title'       => '_MI_SHOUTBOX_TITLE47',
    
'description' => '_MI_SHOUTBOX_DESC47',
    
'formtype'    => 'select',
    
'valuetype'   => 'int',
    
'options'     => ['_MI_SHOUTBOX_OP47_TL' => 0'_MI_SHOUTBOX_OP47_TA' => 1],
    
'default'     => 1,
];


In /language/english/modinfo.php add translations for the new preference:
define('_MI_SHOUTBOX_TITLE47''Scrolling direction');
define('_MI_SHOUTBOX_DESC47''Should the new message be added on top or at the bottom?');
define('_MI_SHOUTBOX_OP47_TL''Bottom');
define('_MI_SHOUTBOX_OP47_TA''Top');


in shoutframe.php check for the new preference:
$scrollDirection $helper->getConfig('scroll_type');
if (!empty(
$shouts)) {
    if (
=== $scrollDirection) {
        
$xoopsTpl->assign('shouts'array_reverse($shouts));
    } else {
        
$xoopsTpl->assign('shouts'$shouts);
    }
}


Of course, you would have to update the module to make it work.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



1309
Lupin
Change scrolling direction in Shoutbox
  • 2020/5/21 14:01

  • Lupin

  • Just popping in

  • Posts: 92

  • Since: 2007/6/1 2


In the "stand alone" version of this module I can choose in wich direction I read messages.

In the Xoops module, I can only have last message first ... but it is just a little problematic if user must follow a discussion...
I found a way to change the shouts reading : (shoutframe.php line 79 )
if (!empty($shouts)) {     $xoopsTpl->assign('shouts'array_reverse($shouts)); }


Buy I should change the scrollbar starting from below ... How can I do?
Better try a different way?

TY

Pino



1310
alain01
Re: Chess module
  • 2020/5/20 13:07

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


ok,
just my 2 cents ideas...

Try to use assessment to test knowledge of the flora and fauna near this famous beach

Fun survey (xoopspol or other modules)

You can organize a photo contest with the excellent wggallery module.
1 - You impose a theme
2 - People offer photos of this beach for the competition with the imposed theme
3 - You close the proposals
4 - You open the contest for 1 week (or 1 month) by activating the votes only at that time for this album "contest"
5 - You offer a mini gift to the first 3
Many advantages:
- Lots of publicity around this event
- Many people will register to vote (good for you site)
- You can probably reuse the photos for your site, if they are free of rights


NB - Google traduction...




TopTop
« 1 ... 128 129 130 (131) 132 133 134 ... 29425 »



Login

Who's Online

508 user(s) are online (316 user(s) are browsing Support Forums)


Members: 0


Guests: 508


more...

Donat-O-Meter

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

Latest GitHub Commits