91
Mithrandir
Re: Finding the XOOPS Version # ?

The system module version is not directly related to the XOOPS version.

XOOPS modules can only have xx.yy versions, not xx.yy.zz like XOOPS itself. Therefore, when something changed in the system module to knock up the version, it does not have to be related to the XOOPS version - or rather, XOOPS can come in a new version without any changes in the system module (and thus no reason to increase the system module version).

To find your XOOPS version, look in /include/version.php
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



92
Mithrandir
Re: MS Internet Explorer 7 & FireFox 2

So far FF 2.0 seems to work pretty well.
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



93
Mithrandir
Re: Finally 1000!

Pfff - amateurs

[size=x-small]seriously - nice to see activity here [/size]
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



94
Mithrandir
Re: Creat New Users With PHP

You need to add the user to the registered users group.

// Get new user object
$member_handler =& xoops_gethandler('member');
$newuser =& $member_handler->createUser();

// Set user variables - either directly or from form values
$newuser->setVar('uname'$uname);
$newuser->setVar('email'$email);
$newuser->setVar('pass'md5($pass), true);

// Automatically calculated values
$newuser->setVar('user_regdate'time(), true);
$actkey substr(md5(uniqid(mt_rand(), 1)), 08);
$newuser->setVar('actkey'$actkeytrue);

// Insert the user in the database
$member_handler->insertUser($newuser);

// Add the user to the registered users group
$member_handler->addUserToGroup(XOOPS_GROUP_USERS$newuser->getVar('uid'));
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



95
Mithrandir
Re: Xajax+Xoops Smarty Templates

$xoopsTpl->fetch("db:".$name_of_template.");
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



96
Mithrandir
Re: Keeping core database data separate from the module database data?

You mean - instead of adding configuration of the module with 4-5 lines in xoops_version.php, you want each module developer to implement his or her own preferences, group permissions etc. in the module?

Seems like an awful waste of efforts.
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



97
Mithrandir
Re: date week names in german instead english

You'll need to find some way of calling setlocale() with the German locale

http://www.php.net/manual/en/function.setlocale.php
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



98
Mithrandir
Re: Ok, XOOP theme sucks big time, it

Agreeing with Carnuke - although I also know that many "exciting" themes are either in use (in which case xoops.org looks like a silly rip-off) or not suited (I tend to like a full-width theme so I don't have a lot of white space on each side).

The theme on devteam.xoops.org is ok'ish, although the navigation and content is much simpler on that site.

Navigation on xoopsdocs.net is nice, but the vast whites make me sleepy.

Could you give some hints as to what it'll look like on the forthcoming sites?
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



99
Mithrandir
Re: How to remove xoops text editor from certain modules

Replace XoopsFormDhtmlTextArea with XoopsFormTextArea
"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software



100
Mithrandir
Re: Fatal Error: Can anybody help me?

"When you can flatten entire cities at a whim, a tendency towards quiet reflection and seeing-things-from-the-other-fellow's-point-of-view is seldom necessary."

Cusix Software




TopTop
« 1 ... 7 8 9 (10) 11 12 13 ... 506 »



Login

Who's Online

234 user(s) are online (149 user(s) are browsing Support Forums)


Members: 0


Guests: 234


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