171
onokazu
Re: xoops vs phpnuke/postnuke/etc
  • 2002/10/29 17:58

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Dadabik is really a cool application, and the XOOPS sections module that we will include in the final version has a similar concept where you can define custom fields, or even create a new section for example yellowpages section, DVD database section, books section etc.



172
onokazu
Re: I'd like smarter polls
  • 2002/10/16 22:03

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Which version of XOOPS are you using? I see the following codes in xoopspolllog.php of RC3.0.5.

function hasVoted($poll_id$ip$user_id=NULL){
  
$db =& Database::getInstance();
  
$sql "SELECT COUNT(*) FROM ".$db->prefix("xoopspoll_log").
WHERE poll_id="
.intval($poll_id)." AND";
  if ( !empty(
$user_id) ) {
    
$sql .= " user_id=".intval($user_id);
  } else {
    
$sql .= " ip='".$ip."'";
  }
  list(
$count) = $db->fetchRow($db->query($sql));
  if ( 
$count ) {
    return 
true;
  }
  return 
false;
}



173
onokazu
Re: I'd like smarter polls
  • 2002/10/15 17:34

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Quote:

lubdub wrote:
Missing features I'd really would appreciate (of course, I could code them myself... but... not time for now )
- choose the way to record votes (for now, I think it's based on ip, but I have several users behind the same firewall, so it should be allowed to be based on username)


I think the polls are based on username, if the voter is logged in. For anonymous users, we use IP.

Quote:

- allow/prevent anonymous users to vote
- show the list of voting users with their vote (at least for admin, but some polls could be completely public)


Yes, sounds like some nice ideas.



174
onokazu
Re: 2 Common Registration/Password Problems
  • 2002/9/4 14:10

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Quote:

netwize wrote:

request:

I want a idle time for user to activate or the system will auto delete their accounts ..



That may be a little hard for now, but its on our to-do list



175
onokazu
Re: 2 Common Registration/Password Problems
  • 2002/9/4 14:07

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Quote:

felix9x wrote:

What would be real cool if there was a admin setting like 1-require email activation 2-activate immediatly 3-activate manualy by admins. That requires a bit of a redesign to the system and it would be up to the developers of XOOPS to decide if they want to put effort into that. Most communities would choose you to have a valid email.


Yes, i really like those options to be included in XOOPS too, and will be in the next release



176
onokazu
Re: Account re-activation required on Profile email changes
  • 2002/8/7 14:54

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


in edituser.php, change the following line

$email_text = new XoopsFormText("", "email", 30, 60, $xoopsUser->getVar("email"));

to

$email_text = new XoopsFormLabel("", $xoopsUser->getVar("email"));

and around line 190, comment out the following line

$edituser->setVar("email", $email);

so it will look like

//$edituser->setVar("email", $email);

sorry, I have not tested this, but hope this works



177
onokazu
Re: (HACK) Prevent Firewall no-login
  • 2002/8/3 0:40

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


I am sorry to say, but we cannot recommend this hack for security reasons..

If you make this hack, we recommend you add a different security check like checking the IP of the accessing user and only disable the referer when the user is coming from a trusted IP.



178
onokazu
Re: How can I create a page with product names and descriptions in Xoops?
  • 2002/8/2 21:14

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


I thought Sircuri is working on the mod..



179
onokazu
Re: Who's Online Mod. Guest / Member Online User Count Problem
  • 2002/7/31 10:24

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Yes, you're right. It's a known bug and we will be working on this soon..



180
onokazu
Re: Polls allowing mulitple selections does not work!
  • 2002/7/15 19:09

  • onokazu

  • XOOPS Founder

  • Posts: 617

  • Since: 2001/12/13


Fixed now.

modules/xoopspoll/index.php

line 80
$voted_polls = (!empty($HTTP_COOKIE_VARS['voted_polls'])) ? $HTTP_COOKIE_VARS['voted_polls'] : array();

line 90
$poll->vote($HTTP_POST_VARS['option_id'], $REMOTE_ADDR, $xoopsUser->getVar("uid"));

line 100
$poll->vote($HTTP_POST_VARS['option_id'], $REMOTE_ADDR, $xoopsUser->getVar("uid"));





TopTop
« 1 ... 15 16 17 (18) 19 20 21 22 »



Login

Who's Online

252 user(s) are online (175 user(s) are browsing Support Forums)


Members: 0


Guests: 252


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