51
skalpa
Re: A typo and a request about blockinstance
  • 2005/8/10 16:22

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Thank you.

We'll see this as soon as possible. And I like the title idea too, I'll see what can be done (maybe even visibility would be nice if possible).

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



52
skalpa
Re: More info on members?
  • 2005/8/9 16:54

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


That's one of the new features of XOOPS 2.2
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



53
skalpa
Re: Why there is no patch for xoops 2.2.1
  • 2005/8/9 16:18

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Extract from the news:
Quote:
Due to a problem with the 2.2 packages containing bad revision numbers no upgrade patch from this version will be released (it would have leaded to a situation where websites containing a fresh 2.2.1 install and upgraded ones would have contained a different set of files


More precisely: try to check for yourself all the files have changed.
I sincerely apologize for this, but the error was made during the 2.2 release, and we had to correct it (actually, the patch to update 2.0.13 to 2.2 was 500kb bigger than the full install, and I dont see any reason to reproduce this: you can do the same by downloading the full package, and renaming the file to patch.tar.gz)

skalpa.>
PS: BTW, the others are right: saying please is always welcome here, and a better way to get the answers you want more quickly.
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



54
skalpa
Re: Fatal Error when calling load()
  • 2005/8/9 9:06

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
XOOPS core has not and never (at least not recently) had any function called load()


Well, that's not what the /class/xoopsblock.php file of XOOPS 2.0.13 indicates.

Wardick: yes it disappeared, and it's mainly due to the fact blocks have become duplicatable, but do not have any way of being configured so "default parameters" are specified (and the load method did expect the block it was inserting to have been formerly configured in the admin).
Now the point is that it's not easy to fix, and that this particular problem does not concern many modules.
So we are going to investigate this, but can't promise the method is coming back. Maybe the solution will happen to be a future wiwimod update, with this particular feature being enhanced and using the possibilities of the new system.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



55
skalpa
Re: PHP5 ?
  • 2005/8/9 6:58

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
As another noted, not many hosting companies are deploying PHP5. Anyone know otherwise ?


No...
But recent changes and arrivals in the development team, and the fact I had absolutely no time to dedicate to XOOPS during the latest months as opposed to what I had planned is going to make us change our plans a little.

Before requiring PHP5 this project started as a major refactoring of the XOOPS 2 core, and some of the work that has been made for it could be released as part of a future XOOPS 2.X version.
So in fact you may not have to wait for the global adoption of PHP5 by hosting companies to enjoy them.

More information will be given during the month, but we first have to prepare a few things before making public announcements: the point is that we're starting to have a real dev team for the first time, with more than just 2-3 people active simultaneously, all motivated and having ideas about different points, so we want to synchronise our minds before rushing into action.

About diagrams and things like this: One of the things that will evolve also is the methodology used to make the core. And documentation, technical diagrams, and explanations of what is being done while it's being done will be part of the game too.
So come back later this month. If you see that things are in the work, but feel unable to understand what or how, your complaints will be welcome.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



56
skalpa
Re: User Guide??
  • 2005/8/9 5:40

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


The documentation site is normally available athttp://docs.xoops.org/

The xoops.org main server has been hacked recently
and the temporary unavailability of the documentation site is a consequence of this. We're still working on setting things up again, and should have something available soon.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



57
skalpa
Re: quick .htaccess question
  • 2005/8/8 15:12

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
i think i can live with the path to modul and with only rewriting the ?form_id=1


lol. One bit of code I have patched for more than 2 years and that is not in CVS yet.

Just one line to change (but the file changed between 2.0.13 and 2.2).
With a 2.0.x core:
in include/common.phpfind
    
if (file_exists('./xoops_version.php')) {
        
$url_arr explode('/',strstr($xoopsRequestUri,'/modules/'));
        
$module_handler =& xoops_gethandler('module');

and 
replace $xoopsRequestUri with  $_SERVER['PHP_SELF']


With 2.2.x:
in kernel/module.php (at the end of the file)
        
$url_arr explode('/',strstr($GLOBALS['xoopsRequestUri'],'/modules/'));

in that onereplace $GLOBALS['xoopsRequestUri'with $_SERVER['PHP_SELF']


and this will make your XOOPS a lot more mod_rewrite friendly
skalpa.>
PS: I'm writing this without testing, so take care, but it should be it
PS2: That will be in the next one, promised
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



58
skalpa
Re: quick .htaccess question
  • 2005/8/8 9:10

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Put this in the .htaccess that is in the root of your site (or create it if necessary):
RewriteRule ^formular.php$     /modules/mymod/index.php?form_id=1   [QSA]


You may or may not want to let the [QSA] part...
Without:
formular.php?thing=stuff => index.php?form_id=1
With:
formular.php?thing=stuff => index.php?form_id=1&thing=stuff

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



59
skalpa
Re: To those who have problems with XOOPS 2.2
  • 2005/8/8 7:08

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:

Is there a list in English of the fixes that made it into the Chinese version?


I'm packaging everything right now, so it shouldn't be too long. Not 100% of the bugs have been fixed, but it will be worked on in other releases.

Manually applied the PHPMailer 1.73 SMTP fix to prevent potential issues (skalpa)
Fixed a bug in the installer that could prevent mainfile.php to be created correctly on PHP5 (skalpa)
Moved module-admin item to the top of the admin menu (phppp)
Fixed a typo for constant variable check in error.php (phppp)
Commented out the "showrblock" from functions.php (phppp)
Added error message for user not found in auth service (phppp)
Corrected Header set Charset in installer (phppp)
Moved auth language defination to its right place (phppp)
Fixed typo in XoopsLogger->addblock (phppp)
Minor fix on reference usage in textsanitizer (phppp)
Changed default config for use-realname to false (phppp)
Fixed loginUserMd5() typo in member handler (phppp)
Changed reference to make it work when calling another module's install on a module's update  (phppp)
Rolled back system-info block (phppp)
Dix for icon url in comment block (phppp)
Add new PM prompt to user-menu block (phppp)
Changed user name (which is not always available and not much infomativeto user uname in userselect (phppp)
Added install function for inserting PM link to existing users' profile (phppp)
- Ensure to use username and not real name in PM composer (phppp)
- PM module: Bugfix for setting message as "read" (phppp)
- PM module: Bugfix for icon url (phppp)
- Fix to display profile items with value only in userinfo page (phppp)
- Fix where language file was not included in profile activation page (phppp)
- Fix for error message in changemail (phppp)
- Fixed problems with Admin right in edituser.php (phppp)
- Added possibility for admin to change users email (phppp)
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



60
skalpa
Re: PHPMailer is vulnerable to DoS attack
  • 2005/8/4 22:45

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


1) New versions aren't compatible with multibyte character sets.
2) XOOPS is not an e-mail program, phpmailer is used under specific circumstances by the core, most of the time with truncated fields coming from the database.
So we will fix this, but its importance is mitigated.
3) There is a "report core bug" link on the left
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)




TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 19 »



Login

Who's Online

230 user(s) are online (163 user(s) are browsing Support Forums)


Members: 0


Guests: 230


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