1061
goffy
Re: wgGallery 1.15 RC2 ready for testing
  • 2021/4/22 6:19

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi

Quote:
XoopsModules\Wggallery\exif_read_data()
do you have enabled the 'exif' extension in your php? If not please enabled it or deactivate the 'Save meta data (exif)' in module preferences.

Quote:
for the cloning feature..cloning the module is successful after click the submit button but there is no successful cloning message

are you using an adapted template set in your theme for wggallery? maybe you have to replace the admin templates there



1062
liomj
Re: wgGallery 1.15 RC2 ready for testing
  • 2021/4/22 2:31

  • liomj

  • Just popping in

  • Posts: 96

  • Since: 2012/4/10


Quote:

goffy wrote:
Hi

wgGallery 1.15 RC2 is ready for testing: https://github.com/XoopsModules25x/wggallery

I have added some new features to wgGallery:
- single image upload (especially for liomj :) )
- added batch upload (via ftp) in admin area


Thank you goffy for this new feature

i tried to upload the single image and batch upload

Error : Error: Call to undefined function XoopsModules\Wggallery\exif_read_data()
Error: Error: Call to undefined function XoopsModules/Wggallery/exif_read_data() in file /modules/wggallery/class/ImagesHandler.php line 270

XOOPS Version XOOPS 2.5.11-Beta1
PHP Version 7.4.16
mySQL Version 5.7.34


for the cloning feature..cloning the module is successful after click the submit button but there is no successful cloning message

Resized Image



1063
alain01
Bootstrap stable version 5 soon
  • 2021/4/21 12:52

  • alain01

  • Just can't stay away

  • Posts: 541

  • Since: 2003/6/20


Hi,
Bootstrap is close to being in stable version, version 5.

For designers who work on Bootstrap 4,
with BT5, some parameters change cause there is now RTL features (Right to Left)

So,
all paramters with "left" and "right" become : "start" and "end"
Quote:
Horizontal direction sensitive variables, utilities and mixins are renamed with more logical names — start and end in lieu of left and right.
Examples :
Renamed .dropdown-menu-*-left and .dropdown-menu-*-right to .dropdown-menu-*-start and .dropdown-menu-*-end.
Renamed .carousel-item-left and .carousel-item-right to .carousel-item-start and .carousel-item-end.
Renamed .float-left and .float-right to .float-start and .float-end.
Renamed .border-left and .border-right to .border-start and .border-end.
Renamed .rounded-left and .rounded-right to .rounded-start and .rounded-end.
Renamed .ml-* and .mr-* to .ms-* and .me-*.
Renamed .pl-* and .pr-* to .ps-* and .pe-*.
Renamed .text-left and .text-right to .text-start and .text-end.
Renamed $navbar-brand-margin-right to $navbar-brand-margin-end.

Other things:

Javascript :
Data attributes for all JavaScript plugins are now namespaced to help distinguish Bootstrap functionality from third parties and your own code. For example, we use data-bs-toggle instead of data-toggle.

badge, rounded, breadcrumbs, group buttons, carousel, form...

All is here !



1064
Mamba
Re: wgGallery 1.15 RC2 ready for testing
  • 2021/4/21 0:10

  • Mamba

  • Moderator

  • Posts: 11455

  • Since: 2004/4/23


Thank you for sharing!
Support XOOPS => DONATE
Use 2.5.11 | Docs | Modules | Bugs



1065
goffy
wgGallery 1.15 RC2 ready for testing
  • 2021/4/19 20:26

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi

wgGallery 1.15 RC2 is ready for testing: https://github.com/XoopsModules25x/wggallery

I have added some new features to wgGallery:
- single image upload (especially for liomj :) )
- added batch upload (via ftp) in admin area
- added clone feature

if you find a bug or if you have additional ideas for this module please report here or create an issue at https://github.com/XoopsModules25x/wggallery/issues



1066
goffy
Re: Last activities / multi modules
  • 2021/4/19 18:06

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi

you can create a custom block, content type "PHP Script"

then add the code for getting data
Quote:

$myts = \MyTextSanitizer::getInstance();
$itemsAll = $newItems = [];
$sort ='datesub';
$order = 'DESC';
$limit = 5;
$start = 0;


/*my first publisher clone*/
$helper = \XoopsModules\Publisher1\Helper::getInstance();
$itemHandler = $helper->getHandler('Item');
$itemsObj = $itemHandler->getItems($limit, $start, [\XoopsModules\Publisher1\Constants::PUBLISHER1_STATUS_PUBLISHED], -1, $sort, $order, '', true);
$totalItems = count($itemsObj);

if ($itemsObj && $totalItems > 0) {
foreach ($itemsObj as $iValue) {
$newItems['source'] ='Publisher1: ';
$newItems['itemid'] = $iValue->itemid();
$newItems['itemlink'] = $iValue->getItemLink(false, $options[3] ?? 65);
$itemsAll[] = $newItems;
}
}
unset($itemsObj, $itemHandler);

/*my second publisher clone*/
$helper = \XoopsModules\Publisher2\Helper::getInstance();
$itemHandler = $helper->getHandler('Item');
$itemsObj = $itemHandler->getItems($limit, $start, [\XoopsModules\Publisher2\Constants::PUBLISHER2_STATUS_PUBLISHED], -1, $sort, $order, '', true);
$totalItems = count($itemsObj);

if ($itemsObj && $totalItems > 0) {
foreach ($itemsObj as $iValue) {
$newItems['source'] ='Publisher2: ';
$newItems['itemid'] = $iValue->itemid();
$newItems['itemlink'] = $iValue->getItemLink(false, $options[3] ?? 65);
$itemsAll[] = $newItems;
}
}
unset($itemsObj, $itemHandler);

/*output of result*/
foreach($itemsAll as $item) {
echo '

' . $item['source'] . $item['itemlink'] . '

';
}


in this example the name of the clones are 'Publisher1' and 'Publisher2'

replace the names by your names of the clones and/or add for each additional publisher clone the adapted code

let me know if it works :)



1067
Lou86
Last activities / multi modules
  • 2021/4/18 9:06

  • Lou86

  • Just popping in

  • Posts: 1

  • Since: 2021/3/18


Hi,

As I'm using 3 instances of Publisher, I would love to have some blocs (as Latest news or Recent articles) able to list content from the 3 modules. Having the 3 modules separated is a bless for my use but having one list with all contents ordered by post time and not separated by module would be a must.

Do you know if there is already a way to do that? Or have I to make it myself?

Thanks for your help



1068
Mamba
Re: Danish translation for 2.5
  • 2021/4/12 3:59

  • Mamba

  • Moderator

  • Posts: 11455

  • Since: 2004/4/23


Awesome!!! Thank you!!!
Support XOOPS => DONATE
Use 2.5.11 | Docs | Modules | Bugs



1069
culex
Re: Danish translation for 2.5
  • 2021/4/11 17:09

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I have just added Danish Translation for Xoops Core 2.5.11 in github..

Core files are here (better late than never)
https://github.com/XoopsLanguages/danish

And a single zip is here
http://www.culex.dk/downloadfiles/xoops-2.5.11-danish_danish.zip



1070
culex
Re: index.html vs. index.php
  • 2021/4/11 17:06

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I always use index.php is used in modules where there are not index.php page prior.. I think both types is working in image/css/js folders.

Quote:

goffy wrote:
Hi

I see that in some modules the developers use index.php instead of index.html

is there a special reason for this?




TopTop
« 1 ... 104 105 106 (107) 108 109 110 ... 29443 »



Login

Who's Online

180 user(s) are online (119 user(s) are browsing Support Forums)


Members: 0


Guests: 180


more...

Donat-O-Meter

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

Latest GitHub Commits