Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Licorne

Pages: [1]
1
Modifications / Re: SMFShop Inventory Post Modification
« on: September 28, 2007, 08:52:32 am »
Yay! The admin configuration is a definite lifesaver! Thank you!

2
Modifications / Re: SMFShop Inventory Post Modification
« on: September 21, 2007, 01:44:14 pm »
Is it possible to set a limited number of items to show?

3
Requested additions / Automatic Allowance
« on: September 21, 2007, 01:30:24 pm »
The idea is that certain membergroups will receive a certain amount of credits per week/month (or any specified time) as an allowance.

So let's say all members in the moderators groups get 100 credits per week.

Is it possible?

Thank you.

4
Installation Problems / Re: bank Interest and Cron job
« on: March 23, 2007, 12:05:55 pm »
Thanks, I got it working now. It was the ssi file that was causing the trouble.

5
Installation Problems / Re: bank Interest and Cron job
« on: March 22, 2007, 12:32:01 pm »
<?php
/**********************************************\
| SMFSHOP (Shop MOD for Simple Machines Forum) |
|         (c) 2005 DanSoft Australia           |
|      http://www.dansoftaustralia.com/        |
\**********************************************/

//File: dointerest.php
//      The file to add interest to member's bank

//VERSION: 1.31 (Build 7)
//DATE: 10th December 2005
// $Id: dointerest.php 4 2006-07-08 10:09:08Z daniel15 $

if(!isset($_SERVER["HTTP_HOST"])) {

   include("../../SSI.php");
   
   $interest_rate = $modSettings['shopInterest'] / 100;
   db_query("UPDATE {$db_prefix}members
           SET moneyBank = moneyBank + (moneyBank*{$interest_rate})", __FILE__, __LINE__);
   
   echo "Interest added at ".date("d/m/Y h:i:s A");
}
?>

6
Installation Problems / bank Interest and Cron job
« on: March 22, 2007, 08:38:44 am »
I enabled the bank interest and set up the cron job exactly as the instructions said. Then I noticed that the interest wasn't working. So I looked at the interest_log.htm file vi my browser and this is what I got:

Quote
Fatal error: Cannot redeclare ssi_recentkarma() (previously declared in /home/winglica/public_html/forum/SSI.php:1644) in /home/winglica/public_html/forum/SSI.php on line 1799

How do I fix this? Thank you.

7
Installation Problems / Use Item error
« on: March 17, 2007, 09:33:51 am »
Whenever I try to click the Use Item link in my inventory, it keeps saying:

Hello, I am a test!
This is all the test item does!!

Back to your Inventory



And I can't get any further than that. I've also installed the Flag mod with this. How can I make it so that the items show up in the user profile beside each members' post? Thanks.

Pages: [1]