6011
Mamba
Re: Modules working with XOOPS 2.3
  • 2009/4/9 15:55

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


It seems like you need to register on his Website:http://xoops.foreach.fr/, but the registration doesn't work at the moment, as there is a problem with the Captcha.

Nicolas did some changes couple of months ago, and you can download the tarball from here:

Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6012
Mamba
Re: pm not working
  • 2009/4/9 14:28

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Is it a fresh installation, or did you upgrade an existing installation?

If you've updated, did you also update the PM Module?

When you say, it "never worked before", please define "before": was it from the time you've installed the system, or was it after you you've updated it (if this is an updated installation)

Again, we need the steps you did to understand better, otherwise we're just guessing.

My guess is that you've updated your existing installation to XOOPS 2.3.3, but didn't update the PM module in the Admin.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6013
Mamba
Re: pm not working
  • 2009/4/9 8:16

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Please always submit:

* XOOPS version
* PHP/MySQL version

Also, please provide this information:
* How did it happen?
* Did it work before?
* What changes have you made before you realized that it doesn't work?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6014
Mamba
Re: Need a module for Groups
  • 2009/4/8 17:05

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


I think, it's a good idea.

Can you submit it to "Feature Requests"? Thanks.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6015
Mamba
Re: Donating XOOPS sites to non-profit organizations
  • 2009/4/8 5:54

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Let's see if we could build a team of people willing to donate their time to build sites for Non-profit organizations.

I am definitely interested in being part of such a team!

Anybody else?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6016
Mamba
Re: free xoop host
  • 2009/4/8 5:07

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Thank you for offering it to the community. That's very generous of you!

What we could do is to use it to host Websites for non-profit organizations for free, and offer them to build their Websites for free using XOOPS.

This could be a good PR for XOOPS, and a way to help organizations that do a lot of positive work in the community, but have no IT resources.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6017
Mamba
Re: Uploaded module folders not showing in admin
  • 2009/4/7 16:13

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Well, it seems like this is actually not a problem with your host, but with the way you set it up in your mainfile.php, and I just overlooked it

You had originally something like this (some file/directory names have been changed for security):

define( 'XOOPS_PATH', '/home1/public_html/xoops_lib' );
define( 'XOOPS_VAR_PATH', '/home1/xxx/xoops_data' );

which is different.

Once I've changed

define( 'XOOPS_PATH', '/home1/public_html/xoops_lib' );

to

define( 'XOOPS_PATH', '/home1/xxx/xoops_lib' );

the Protector seems to work just fine, and all the not installed modules are visible as well.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6018
Mamba
Re: Uploaded module folders not showing in admin
  • 2009/4/7 14:14

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


For this exercise, you can can just define as:

define('XOOPS_TRUST_PATH','/home1/xxx/public_html/trust_path');

where you replace "xxx" with the name of your domain directory (for security, I won't use it here)

Of course, you need to define the "/trust_path" directory, and copy there files from the Protector.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6019
Mamba
Re: Uploaded module folders not showing in admin
  • 2009/4/7 8:25

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
What fooled me, in particular, is that some uninstalled modules, like catads, were visible. It might be worth thinking about why that is. It might suggest a fix.

They were visible, because they were alphabetically before "Protector", so XOOPS loaded them just fine.

It seems like the Protector (or AltSys), breaks the loop to read all available modules, so whatever is after "Protector" won't get any chance to be visible. With AltSys it was a real problem for me, because there were no modules visible, since AltSys was the first one.

What would help if you could install XOOPS 2.0.18, and test in a similar configuration, i.e. few modules, version of Protector that requires XOOPS_TRUST_PATH, and then see if this has the same behavior, i.e. if the Protector cannot access XOOPS_TRUST_PATH, then if it breaks the loop and makes the modules after it invisible. This way we would know if AltSys and Protector are over-sensitive, or if XOOPS 2.3.x made them to behave this way.

Regarding security risk, it is highly recommended that you're able to have the XOOPS_TRUST_PATH outside of Document Root. So talk to your host and explain it to them.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6020
Mamba
Re: Uploaded module folders not showing in admin
  • 2009/4/7 6:41

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
I can't tell from your report above if this is the same issue as you're seeing but sounds 'eerily' familiar

Zyspec,

the problem is that if the Protector doesn't have access to XOOPS_TRUST_PATH directory, it removes visibility of itself, and then all the modules that follow it.

The same actually happened to me with AltSys.

It seems like these two modules are very sensitive to it, or XOOPS 2.3.3 makes them sensitive. I'll reopen your bug report, as we should investigate it and find a solution to this over-sensitivity.

As Barry's case show, even experienced XOOPS users might have problems with it, if they are not aware that their host doesn't allow them access to XOOPS_TRUST_PATH directory located outside of Document Root.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs




TopTop
« 1 ... 599 600 601 (602) 603 604 605 ... 715 »



Login

Who's Online

237 user(s) are online (135 user(s) are browsing Support Forums)


Members: 0


Guests: 237


more...

Donat-O-Meter

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

Latest GitHub Commits