5871
timgno
Re: XOOPS 2.6.0 Alpha 3 for Testing
  • 2015/5/5 15:22

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


I'is not clear what to do Xoops\Module\Admin.php

I saw in SVR and GitHub is missing this file.

The version used in local, have file to path above, but if I want to help do not know how

I added to module the folders:
- assets
--- css
--- fonts
--- icons
--- images
--- js

but in Xmf\Module\Admin can not do that, there will be changes yet?



5872
Mamba
Re: XOOPS LogCounterX 2.75 Beta-1 available for testing
  • 2015/5/4 22:15

  • Mamba

  • Moderator

  • Posts: 11377

  • Since: 2004/4/23


Quote:
yes, it is old and old fashioned,

I didn't want to touch the Admin GUI because I wasn't sure if the original author is still working on it.

But feel free to fork it from GitHub and make changes/improvements, but probably it shouldn't be a high priority on our list :)
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



5873
Mamba
Re: Is the xoops-svn the best place to get updated module?
  • 2015/5/4 22:12

  • Mamba

  • Moderator

  • Posts: 11377

  • Since: 2004/4/23


The latest version was the Irmtfan's branch, but we're working on some updates together with Bleekk, so hopefully in week or two we should be done with it. In the meantime, you can read about this version in this thread, and you can help us by testing.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



5874
biglove
Is the xoops-svn the best place to get updated module?
  • 2015/5/4 20:03

  • biglove

  • Not too shy to talk

  • Posts: 157

  • Since: 2004/8/18


I pulled the most recent version of NewBB 4.33 from:
svn checkout svn://svn.code.sf.net/p/xoops/svn/ xoops-svn

I uploaded the newBB code to my Xoops 2.5.7.1 setup.

When I clicked update Module from the Admin, the entire site went down.

What did I do wrong?



5875
goffy
Re: XOOPS LogCounterX 2.75 Beta-1 available for testing
  • 2015/5/4 19:42

  • goffy

  • Just can't stay away

  • Posts: 535

  • Since: 2010/12/27


yes, it is old and old fashioned, and I am thinking about creating a new one

Is there a need for such a module, or is everybody using free tools like piwik and so on?

Comments/suggestions are welcome



5876
timgno
Re: XOOPS LogCounterX 2.75 Beta-1 available for testing
  • 2015/5/4 14:34

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


There are still very old files



5877
timgno
Re: TDMCreate 1.91 alpha 2 for Testing
  • 2015/5/4 13:29

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


@goffy
Pleace clear your cache first.

Your contribution is greatly appreciated

A new release is now (Renamed Title on GitHub)



5878
goffy
Re: TDMCreate 1.91 alpha 1 for Testing
  • 2015/5/3 18:35

  • goffy

  • Just can't stay away

  • Posts: 535

  • Since: 2010/12/27


hi timgno

Quote:
by Bleekk on 2015/5/1 21:53:53

Thank you very much for this module. I am not sure if the xoops community realize how important this module is


yes, for a developer it is the best module ever (I used it for all my modules till now), so I hope I can help to improve it.

I made some test the lasdays, but still on alpha 1 (sorry, I didn't see, that there is a new version), so maybe you have already fixed some bugs/errors, but maybe it helps.

tdmcreate 1.91 alpa 1
download from github, 02.05.2015
Xoops 2.5.7.1
firefox 37.0.2

1) creating new module:
2 errors will be shown in debug area:
Warning: opendir(/uploads/tdmcreate/images/modules,/uploads/tdmcreate/images/modules): Das System kann die angegebene Datei nicht finden. (code: 2) in file /class/xoopslists.php line 159
Warning: opendir(/uploads/tdmcreate/images/modules): failed to open dir: No such file or directory in file /class/xoopslists.php line 159

if you create this folder "creating new module" works

2) after creating a table the tables/fields view does not proper work, if you click on the toggle at column ID (see Resized Image
and Resized Image
)
replace in assets/css/admin/style.css line 216
.field-list tr td displayblock; }
by
.field-list tr td displayfloat; }


3) in the parameters list and existing table appears more than one time (see Resized Image
)

4) Question: what does the option "Field: Is parent" mean/cause?

5) after clicking on building module, all is marked es well done, but 2 errors are show in debug area:
Warning: copy(/uploads/tdmcreate/images/modules/xoopsdevelopmentteam_logo.gif): failed to open stream: No such file or directory in file /modules/tdmcreate/class/files/TDMCreateArchitecture.php line 142
Warning: copy(/uploads/tdmcreate/images/modules/xoopsdevelopmentteam_logo.gif): failed to open stream: No such file or directory in file /modules/tdmcreate/class/files/TDMCreateStructure.php line 218

6) if you edit a default value for a field, this value will be not saved - I found not, why

7) in my test I created finally one module with 3 tables

8) installing my new module was not possible because of missing default values in mysql-statement in mysql.sql, so I fixed this errors manually

9) second try to install module: error in xoops_version.php is shown.
error is caused by:
$modversion['notification']['category'][] = array(
    
'name' => "global"
    
'title' => _MI_MYMODULEDIRNAME_GLOBAL_NOTIFY,
    
'description' => _MI_MYMODULEDIRNAME_GLOBAL_NOTIFY_DESC,
    
'subscribe_from' => array('index.php''table1.php''table2.php''table3.php'));

there is a comma missing before 'table2.php'
I fixed this errors manually

10) now installing worked
I have now my module with the 3 tables

11) if I click on in the dashboard on "table1" I get error:
Fatal error: Call to a member function getCount() on a non-object in ...\htdocs\modules\mymoduledirname\admin\table1.php on line 46

Solution: I added to admin/header.php
// get handler
$table1Handler =& $mymoduledirname->getHandler('table1');
$table2Handler =& $mymoduledirname->getHandler('table2');
$table3Handler =& $mymoduledirname->getHandler('table3');

now it works

12) in the created admin files in the switch list/default the array doesn't contain the value for the id, so the ID is not shown (see Resized Image
)

I will continuing my tests with alpha 2.
Should I fix the errors ( if I can )in my github fork and upload the changes?



5879
timgno
Re: TDMCreate 1.91 alpha 2 for Testing
  • 2015/5/3 13:13

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


Added field table_solename, in tables to distinguish from the plural to the singular name.

Currently the name of the buttons and others uses, was added table_fieldname from the table, but if it contains a short name, for example, three or four characters as in the following picture,


Resized Image


when we look at a button in admin's not clear what it means

Resized Image


Roadmap:
As soon as possible in this alpha version 2, will be added to other files in the user side.
Alpha 3, we should solve the problem of the display in the lists in admin
Fix some bugs.
Beta solve all the bugs with tests for possible additions if there are requests
RC last remaining bugs
If everything goes as it should next month we should have a Final version
Of course with your help.

Download last commit today on GitHub

Thanks!



5880
brutalicuss
Re: The future of XOOPS?

XOOPS is really nice php platform, everybody knows that

The big, really big chagrin are themes
What do you think, what makes wordpress (in example) most preferred system? The themes of course. They are nice, completed, modern, easy to use and etc.. people like it and choose it for his sites.
The contemporary webmaster is not this we know - with excellent html, php, css, java and etc knowledge. NOW EVERYONE MAKES A SITES, just because there is a web platforms like WP
OK I dont like it very much, its heavy and intractable for customization, but people like it not only because its easy, there is millions themes and plugins. And although most site owners dont have special skills, they wants to have unique sites, like well-knowledge webmasters, and guess - modern system like wp namely give them this opportunity
So if anyone wandering why fewer people use xoops, the answer is: its not modern because of its theme poverty

XOOPS needs from 100x guys like Angelo (just good example)
Sorry that I cant help, just note this fact, like a really good xoop fan

But I believe in XOOPS and still waiting 2.6 with the promised option "clean url", rewriting all system, modules and theme paths




TopTop
« 1 ... 585 586 587 (588) 589 590 591 ... 29425 »



Login

Who's Online

293 user(s) are online (122 user(s) are browsing Support Forums)


Members: 0


Guests: 293


more...

Donat-O-Meter

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

Latest GitHub Commits