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 - TimeVortex

Pages: [1]
1
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: May 11, 2009, 06:36:45 pm »
Thanks again for taking it over from me, vbgamer45. :) Looking forward to your first release!

2
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: April 17, 2009, 01:51:39 am »
I'm not sure if it was this mod or not, but my admin permissions have changed.
Instead of having "All", I  now have "3".
It has happened on my main site and 2 test sites.

That must be unrelated to this mod. You can easily fix this though. Open up PHPMyAdmin and run the following query (assuming your table prefix is "smf_").

Code: [Select]
DELETE FROM smf_permissions WHERE id_group = 1

As the administrator group shouldn't have any permissions set (it has all of them by definition), this would be perfectly acceptable.

"Captainmonday" is having the same problem I am having.  Nothing with this mod will save... and the previous version is faulty as well but in different ways.  When I try to save the general settings, it claims that the settings were changed but nothing changed.  Same issue with Members' Inventory.  When I save the setting to allow boards to count shop points in the modify board settings, same issue.  When you go back, it's back to being deselected.  Basically, this mod has  the pages associated with the mod but does nothing else.

It would actually save, but it wouldn't refresh the data that was already loaded. If you manually reload the page after saving, you'd see the data was actually updated already.

However, since this is probably pretty annoying, I have uploaded a new version (3.1.4) that addresses the problem in the general settings screen. :)

3
General SMFShop Discussion / Re: Plans for official SMF 2 release???
« on: April 07, 2009, 02:49:45 am »
Hi dwd2000,

You'll be happy to know I just released a new version of this seemingly abandoned mod. :)

TimeVortex

4
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: April 07, 2009, 02:47:27 am »
Unfortunately, I foresaw not having enough time to support this mod, hence the note I put in the first post. This is not likely to change in the future, unfortunately.

However, I have just uploaded a new version of this mod that should fix the errors reported in this very topic. The file in question is smfshop313_only_for_smf_20_rc1.zip.

Please backup before upgrading!

5
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: February 08, 2009, 04:11:49 am »
Darn it, I forgot to remove those before I packaged the mod.  :-X Thanks for pointing it out, Scope. I've updated the package in the first post. :)

6
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: February 06, 2009, 07:07:28 am »
Added the updated version to the first post. :)

7
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4
« on: February 06, 2009, 03:37:24 am »
can you tell me if there is a version for SMF 2.0 RC1

Yes, there is, I just want to test it on the public version before I upload it. :) Expect it to be here by tomorrow!

8
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4
« on: December 13, 2008, 06:20:56 pm »
You'll have to be a bit more specific. Which files fail, exactly?

9
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4
« on: December 13, 2008, 07:17:09 am »
Hi all,

I'm posting here to say that I'll post an updated version once SMF 2.0 RC1 is released. So no need to worry about a lack of update there. :)

Great to see there's 42 downloads to date, by the way.  8)

TimeVortex

10
General SMFShop Discussion / SMFShop for SMF 2.0 Beta 4 and RC1
« on: August 29, 2008, 07:15:38 am »
Hi all,

After upgrading one of my forums from SMF 1.1.5 to SMF 2.0 Beta 4, I lost the shop mod in the process. As I understand Daniel didn't have time to port it himself, I decided to do so myself.

I'm attaching the package. Please note this will not work for any version below SMF 2.0 Beta 4. This includes SMF 1.1.8 and SMF 2.0 Beta 3.1 Public!

Notable changes:
  • Rewrote all queries to confirm to SMF 2.0's new database abstraction layer.
  • Added a new install script that will upgrade any existing shop data.
  • Moved the interest adding to a scheduled task, removing the necessity of a cronjob.

Now, I may be posting this here, and will be monitoring this topic for a few days, but I really don't have time to fully support it. To my knowledge it all works and I'm using it to full satisfaction on my own forum, so I'm rooting on Daniel releasing it officially.

I realise SMF 2.0 Beta 4 is currently only available for charter members, but since they already have it, a public release probably won't be too far away. Please don't ask for support of SMF 2.0 beta 3.1. Thanks.

TimeVortex



Changelog

Update 16th April 2009 (version 3.1.4):
Fixed another bug reported in this topic.

Update 6th April 2009 (version 3.1.3):
Fixed the bugs reported in this very topic. Sorry it took me so long to reply!

Update 6th February 2009 (version 3.1.2):
Added a version that fully supports SMF 2.0 RC1 (smfshop312_only_for_smf_20_rc1.zip). Users that wish to use it on an (outdated!) 2.0 beta 4 install can still download the smfshop31.zip package.

11
I just finished porting SMF Shop to SMF 2.0 Beta 4. I'll post a package in a few minutes. :)

12
General SMFShop Discussion / Re: Compatible with SMF 2.0?
« on: April 14, 2008, 05:34:44 am »
SMFShop doesn't support SMF 2.0 beta at the moment, sorry.

13
Bugs / Bug in trade centre
« on: December 23, 2007, 07:02:39 pm »
One of my users found a bug in the SMFshop mod: when he bought an item in the trade centre, the shop always said he bought it from me (user #1), whilst in fact he had bought it from someone completely different.

Since it didn't seem to be fixed in the SVN trunk, I tracked this down to a query in Shop-Trade.php, line 89-95:

Code: [Select]
$result = db_query("
SELECT it.name, inv.tradecost, inv.trading, inv.ownerid, m.realName,
m.emailAddress
FROM {$db_prefix}shop_inventory AS inv, {$db_prefix}shop_items AS it,
{$db_prefix}members AS m
WHERE inv.id = {$_GET['id']} AND inv.itemid = it.id
LIMIT 1", __FILE__, __LINE__);


I replaced it with:
Code: [Select]
$result = db_query("
SELECT it.name, inv.tradecost, inv.trading, inv.ownerid, m.realName,
m.emailAddress
FROM {$db_prefix}shop_inventory AS inv, {$db_prefix}shop_items AS it
INNER JOIN {$db_prefix}members AS m ON inv.ownerid = m.ID_MEMBER
WHERE inv.id = {$_GET['id']} AND inv.itemid = it.id
LIMIT 1", __FILE__, __LINE__);

And that fixed it.

Pages: [1]