6171
Mamba
Re: Cannot Add New Items. How to Debug? Oledrion
  • 2009/1/29 3:42

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Update to Oledrion 2.1 and see if it helps.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6172
Mamba
Re: Version 2.3.3RC
  • 2009/1/29 3:30

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
this is confusing i thought xoops_lib = xoops_trust_path

Yes, it is a little bit confusing, so let me explain differently.

And let's forget about XOOPS_TRUST_PATH for right now.

"xoops_lib" and "xoops_data" are directories, which are locations for "XOOPS_PATH" and "XOOPS_VAR_PATH" respectively, and they should be located outside of your "DocumentRoot", which in your case is C:/Program Files/xampp/htdocs/testing'.

You mainfile.php should be:

Quote:
// Physical path to the XOOPS documents (served) directory WITHOUT trailing slash
define( 'XOOPS_ROOT_PATH', 'C:/Program Files/xampp/htdocs/testing' );

// For forward compatibility
// Physical path to the XOOPS library directory WITHOUT trailing slash
define( 'XOOPS_PATH', 'C:/Program Files/xampp/xoops_lib' );
// Physical path to the XOOPS datafiles (writable) directory WITHOUT trailing slash
define( 'XOOPS_VAR_PATH', 'C:/Program Files/xampp/xoops_data' );
// Alias of XOOPS_PATH, for compatibility, temporary solution
define("XOOPS_TRUST_PATH", XOOPS_PATH);

Some modules, especially D3 modules developed by GIJOE, use the variable "XOOPS_TRUST_PATH". In order to make sure that they work, you point "XOOPS_TRUST_PATH" to "XOOPS_PATH":

Quote:
define("XOOPS_TRUST_PATH", XOOPS_PATH);

which then points to C:/Program Files/xampp/xoops_lib.

As you can see, "XOOPS_TRUST_PATH" and "XOOPS_PATH" are pointers to the same directory.

Please note: it's always good to change the name of the directory "xoops_lib" and "xoops_data", to something random. So if you change it to "20090128lib" and "01282009data", your mainfile.php would look like this:

Quote:
// Physical path to the XOOPS documents (served) directory WITHOUT trailing slash
define( 'XOOPS_ROOT_PATH', 'C:/Program Files/xampp/htdocs/testing' );

// For forward compatibility
// Physical path to the XOOPS library directory WITHOUT trailing slash
define( 'XOOPS_PATH', 'C:/Program Files/xampp/20090128lib' );
// Physical path to the XOOPS datafiles (writable) directory WITHOUT trailing slash
define( 'XOOPS_VAR_PATH', 'C:/Program Files/xampp/01282009data' );
// Alias of XOOPS_PATH, for compatibility, temporary solution
define("XOOPS_TRUST_PATH", XOOPS_PATH);

Hope it helps a little...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6173
Mamba
Re: "Pages" and "FAQ" Modules hacked (2.0.13.2)
  • 2009/1/28 7:13

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


For a starter, you should read this article: A Guide to Make your XOOPS Installation even more secure

You should invest some time and update your XOOPS Version to 2.3.2b, or if you're not in hurry, wait for the 2.3.3 that should be released soon as RC1 (Release Candidate 1). You might also update the modules, if they have a newer version (e.g. Forum could be updated to CBB 3.08)

Protector is a must! But you should install the new version 3.32

But make sure that you understand how the hacker got into your system, so you can fix it. For example, check if there are new users with Webmaster privileges, and delete them.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6174
Mamba
Re: I'm finishing croatian translation
  • 2009/1/28 7:01

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Fantastic news!!!

Once done, please post a link here, or PM me, so I can post it on SourceForge. We'll give you access to the SVN on the SourceForge, so you could maintain it directly there.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6175
Mamba
Re: Version 2.3.3RC
  • 2009/1/26 8:46

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Hopefully. There are still some tests to run...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6176
Mamba
Re: XSAS and lib curl
  • 2009/1/24 7:41

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
I tried WAMPserver 2.0f. But I failed to add smarty support to wamp 2.


I use it, and didn't have any problems with installing XOOPS. Actually, this is a preferred setup for me, because I can test XOOPS under different versions of PHP and MySQL with a simple right-click switch
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6177
Mamba
Re: Notification not working
  • 2009/1/17 2:29

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Yes, Hervé is D'Man!!! One of the best XOOPS developers, and his modules speak volumes about it!!!

Thanks Hervé for making another XOOPS user a happy one!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6178
Mamba
Re: "My Tabs” module ver 2.1 doesn't show new replies of my forum
  • 2009/1/12 19:29

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


On XOOPS we use XOOPS 2.3.2b and CBB 3.08, and MyTabs 2.0, and don't have any problems.
I didn't have the time to upgrade to MyTabs 2.1
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6179
Mamba
Re: I want "Tag Cloud" please :)
  • 2009/1/12 19:27

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


It's a block from Tag Module.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



6180
Mamba
Re: Module Manuals
  • 2009/1/12 1:05

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Fantastic finds!!!

Thank you for listing them here!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs




TopTop
« 1 ... 615 616 617 (618) 619 620 621 ... 715 »



Login

Who's Online

140 user(s) are online (76 user(s) are browsing Support Forums)


Members: 0


Guests: 140


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