21
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 athttps://github.com/zyspec/chess



22
zyspec
Re: Assessment 2.01 Alpha 1 available for testing
  • 2020/5/3 14:57

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


You might try using something like xForms. It would allow you to create the questions and collect answers but you'd have to manually evaluate the results.

There's an updated version in my repository. I think everything's working but I still need to make a few minor adjustments and test it before it's 'released'. If you decide to try it let us know if you find any issues or have any other suggestions so we can get them fixed.

You can find xForms athttps://github.com/zyspec/xforms if you're interested.



23
zyspec
Re: Latest Newbbex Module ?
  • 2020/4/18 14:09

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


@mjoel,

Can I ask what features newbbex module has that newbb does not? At this point it would probably be easier to have a developer add the features you care about to newbb than to try and update newbbex. The newbbex code hasn't been updated in 8.5 years.



24
zyspec
Re: Yogurt, social networking module ready for testing and some spicing up :)
  • 2020/3/30 6:01

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


1. in notes - in ./class/NotesHelper.php change line 230 from:
$myts = new MyTextSanitizer();

to:
$myts = new \MyTextSanitizer();

2. There are several problems with the template definitions in ./xoops_version.php

change line 431 from:
['file' => 'yogurt_Notebook.tpl''description' => _MI_YOG_PICTURE_TEMPLATENOTEBOOKDESC],

to:
['file' => 'yogurt_notebook.tpl''description' => _MI_YOG_PICTURE_TEMPLATENOTEBOOKDESC],


change line 433 from:
['file' => 'Seutubo.tpl''description' => _MI_YOG_PICTURE_TEMPLATESEUTUBODESC],

to:
['file' => 'yogurt_seutubo.tpl''description' => _MI_YOG_PICTURE_TEMPLATESEUTUBODESC],


change line 435 from:
['file' => 'Tribes.tpl''description' => _MI_YOG_PICTURE_TEMPLATETRIBESDESC],

to:
['file' => 'yogurt_tribes.tpl''description' => _MI_YOG_PICTURE_TEMPLATETRIBESDESC],


You'll then need to either update or reinstall the module for the references to the template changes to be updated

3. To solve the problem when trying to view other profile by using
http://localhost/11/modules/yogurt/index.php?uid=2 with the Class 'XoopsModules\Yogurt\Yogurt\Visitors' not found

Go to ./class/VisitorsHandler.php and any place you find
new Yogurt\Visitors()
replace it with
new Visitors()


I haven't had time to look at everything you found but hopefully this will get you past these problems and on to finding some more....



25
zyspec
Re: How to implement a notification for comments
  • 2020/3/28 15:15

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Thanks @goffy!

It's always great to have examples how to implement a feature.



26
zyspec
Re: Time for an upgrade/update host no longer supporting older php
  • 2020/3/21 20:07

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


I see... the same problem exists on line 127...

change:


Quote:

heh26 wrote:
Parse error: syntax error, unexpected '='

modules/happy_linux/class/time.php on line 127
[$usec$sec] = explode(' 'microtime());

to:
list($usec$sec) = explode(' 'microtime());


public function get_microtime()
{
[$usec, $sec] = explode(' ', microtime());
$time = (float)$sec + (float)$usec;

return $time;

Thank you for the reaction, of course, I can change, but it did nothing. I still can't use the module. Regards, Rafał.



27
zyspec
Re: Time for an upgrade/update host no longer supporting older php
  • 2020/3/21 17:38

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


@heh 26,

I think you should be able to change ./class/time.php line 69 from:
[$count$time_now$time_elapse$time_lap] = $this->get_lap_time();

to:
list($count$time_now$time_elapse$time_lap) = $this->get_lap_time();



28
zyspec
Re: latest xoops modules
  • 2020/3/16 16:20

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Most of the modules that are kept up to date are in the GitHub repository athttps://github.com/XoopsModules25

Some of these have been 'forked' and may require a little searching to get the most up to date version until the forks are 'pulled' back into the master.

There are some other modules that individual developers have in their personal GitHub repositories too.

As @alain01 said - if you can tell us what you want to do we might be able to guide you towards the best module(s) to get you started.



29
zyspec
Re: paid xoops dev/consultant
  • 2020/3/12 4:09

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Ok, makes sense. Most of what you're seeing looks like it's compatibility problem with your current version of PHP.

Can you tell us:

* What PHP version you're server currently has installed.
* What version of XOOPS you have installed. The easiest way to find this is to go to your xoops folder and then open ./include/version.php

* Which modules "might be" installed. Without digging into the database a "close approximation" of the modules installed will be to go to the ./modules directory and look at the directory names.

I can help you look at your Xoops installation if you want to give me access ftp and dB access. If so then send me a Private Message with the information -https://xoops.org/modules/profile/userinfo.php?uid=24642

I can't commit to fixing it for you but I can at least take a look at what's there and help you sort it out. Depending on how old the Xoops installation is (and what modules are installed) it might be as simple as copying the current Xoops version into the folder structure and running the update script. If it's too old then it might be a little more tricky to get things up and running.

Depending on the modules used there could either be an updated version or possibly a similar module with an "import" utility to copy the data so you wouldn't have to recreate everything that was there.



30
zyspec
Re: paid xoops dev/consultant
  • 2020/3/9 15:47

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Is the site "online"? If so can you post a link to it so we can get a feel for what might be required.

If we have a little more information we can help direct you towards someone who can help. For example it may be you need someone who is more familiar with themes/templates or it could be we need to help find someone who can help you find the appropriate modules and tweaking them to meet your needs.




TopTop
« 1 2 (3) 4 5 6 ... 100 »



Login

Who's Online

164 user(s) are online (114 user(s) are browsing Support Forums)


Members: 1


Guests: 163


mailsdaddy,

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