Author Topic: Known bugs in SMFShop 3.0  (Read 30072 times)

Offline Daniel15

Known bugs in SMFShop 3.0
« on: January 19, 2007, 07:00:53 pm »
This page has been moved to the Wiki - http://www.daniel15.com/smfshop_wiki/Bugs
« Last Edit: February 03, 2007, 09:20:13 am by Daniel15 »

Offline eugeniu

Re: Known bugs in SMFShop 3.0
« Reply #1 on: January 20, 2007, 05:46:33 am »
SOMETHING IS SCREWIN WRONG WITH MY SMF-SHOP !!! :tickedoff:
See for yourself.
And I can't go to the shop items through the admin panel because they don't show up, so I can't save my items!!!! :buck2:
What's going on???

Offline Daniel15

Re: Known bugs in SMFShop 3.0
« Reply #2 on: January 20, 2007, 09:14:36 pm »
eugeniu, try copying the Shop.template.php file from the SMFShop archive to Themes/default/Shop.template.php. That should fix your problem.

Offline jdv

Re: Known bugs in SMFShop 3.0
« Reply #3 on: January 20, 2007, 10:57:07 pm »
Where is the archive?

Offline eugeniu

Re: Known bugs in SMFShop 3.0
« Reply #4 on: January 21, 2007, 02:01:45 am »
eugeniu, try copying the Shop.template.php file from the SMFShop archive to Themes/default/Shop.template.php. That should fix your problem.

It still does the same thing.  :'( :'( :'( :'( :'( :'(

Offline thelastkiss

Re: Known bugs in SMFShop 3.0
« Reply #5 on: January 21, 2007, 04:36:36 am »
Hi Daniel,

Another "bug" (I don't know if there is a fix for this) - whenever I click on "View Member's Inventory" in a thread, I get "Error - this member does not exist!"

However, if I view their inventory in the shop, everything is working as usual. :)

Offline Daniel15

Re: Known bugs in SMFShop 3.0
« Reply #6 on: January 21, 2007, 02:19:33 pm »
Quote
Where is the archive?
Sorry about that, I meant the SMFShop download on the DanSoft Australia website. If you downloaded SMFShop on or after January 19th, both bugs are already fixed :)

Quote
Another "bug" (I don't know if there is a fix for this) - whenever I click on "View Member's Inventory" in a thread, I get "Error - this member does not exist!"

However, if I view their inventory in the shop, everything is working as usual.
Thanks for the bug report, I'll update my post above with information on how to fix this :)

Offline jdv

Re: Known bugs in SMFShop 3.0
« Reply #7 on: January 21, 2007, 02:49:14 pm »
i updated before, could you simply let me know the fix for the problem: (dont wanna upgrade again)

hen you send money to someone, it says your username in the message ("xx credits successfully sent to [your username]"), rather than the name of the user you're sending money to

Offline Daniel15

Re: Known bugs in SMFShop 3.0
« Reply #8 on: January 22, 2007, 01:24:15 pm »
jdv, as I mentioned before, the fix is above:
Quote
When you send money to someone, it says your username in the message ("xx credits successfully sent to [your username]"), rather than the name of the user you're sending money to. To fix this, open Sources/Shop/Shop-Send.php, and find:
Code: (php) [Select]
$context['shop_buy_message'] = sprintf($txt['shop_successfull_send'], formatMoney($amount), $context['user']['name']);Replace with:
Code: (php) [Select]
$context['shop_buy_message'] = sprintf($txt['shop_successfull_send'], formatMoney($amount), $moneyTo);

Offline eugeniu

Re: Known bugs in SMFShop 3.0
« Reply #9 on: January 27, 2007, 06:59:05 am »
Auuuggggh! :tickedoff:

I recorded everyone's credits, uninstalled SMFShop, installed v3.0, I see the credits on the right of every post, but when want to go to the shop, it just goes to the index!!!!!!! And I don't see the Shop buttons in the admin area!!!!

http://www.fuzillion.com/forums/index.php

 :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :buck2:

Offline feeble

Re: Known bugs in SMFShop 3.0
« Reply #10 on: January 30, 2007, 03:10:07 pm »
not really bug, but breaks your install zip if you have certain mods installed other then smfshop

can you please amend for a future update if possible
Code: [Select]
<file name="$sourcedir/ManagePermissions.php">
<operation>
<search position="before"><![CDATA[
'who_view' => false,
'search_posts' => false,
'karma_edit' => false,
),
]]></search>
<add><![CDATA[
// Begin SMFShop code
'shop' => array(
'shop_main' => false,
'shop_buy' => false,
'shop_invother' => false,
'shop_sendmoney' => false,
'shop_senditems' => false,
'shop_bank' => false,
'shop_trade' => false,
),
// End SMFShop code
]]></add>
</operation>
</file>

to
Code: [Select]
<file name="$sourcedir/ManagePermissions.php">
<operation>
<search position="before"><![CDATA[
'who_view' => false,
'search_posts' => false,
'karma_edit' => false,
]]></search>
<add><![CDATA[
// Begin SMFShop code
'shop' => array(
'shop_main' => false,
'shop_buy' => false,
'shop_invother' => false,
'shop_sendmoney' => false,
'shop_senditems' => false,
'shop_bank' => false,
'shop_trade' => false,
// End SMFShop code
]]></add>
</operation>
</file>

Offline Daniel15

Re: Known bugs in SMFShop 3.0
« Reply #11 on: February 03, 2007, 09:06:01 am »
Auuuggggh! :tickedoff:

I recorded everyone's credits, uninstalled SMFShop, installed v3.0, I see the credits on the right of every post, but when want to go to the shop, it just goes to the index!!!!!!! And I don't see the Shop buttons in the admin area!!!!

http://www.fuzillion.com/forums/index.php

 :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :buck2:

Check if your index.php file was edited with SMFShop stuff. If it wasn't, upload the SMFShop package to http://server.daniel15.com/smf/package.php, and do the index.php edit.

not really bug, but breaks your install zip if you have certain mods installed other then smfshop

can you please amend for a future update if possible
Those edits look like they will break the code. Have you tried this yourself?

Offline feeble

Re: Known bugs in SMFShop 3.0
« Reply #12 on: February 03, 2007, 03:21:35 pm »
Quote
Those edits look like they will break the code. Have you tried this yourself?
no, i replaced the ManagePermissions.php manually straight after i installed the package whilst having the error, but that is where is where it was having the trouble.

essentially, the g2+smf package changes the file to
Code: [Select]
'who_view' => false,
'search_posts' => false,
'karma_edit' => false,
'gallery' => false,
),

which breaks your install.

again, since most ppl don't use gallery2(for some bizarre reason ;) its not really an issue for most users
« Last Edit: February 03, 2007, 03:23:57 pm by feeble »

Offline perplexed

Re: Known bugs in SMFShop 3.0
« Reply #13 on: February 08, 2007, 06:45:55 am »
what's gallery2?  do you mean the new smf gallery mod or the external gallery that's like coppermine?

just curious as I have gallery mod & shop 2.3 and was intending to keep both when I upgrade
Estne volumen in toga, an solum tibi libet me videre?

Offline feeble

Re: Known bugs in SMFShop 3.0
« Reply #14 on: February 08, 2007, 02:11:42 pm »
what's gallery2?  do you mean the new smf gallery mod or the external gallery that's like coppermine?

just curious as I have gallery mod & shop 2.3 and was intending to keep both when I upgrade

Oldiesman SMF+G2 Project

i do have SMFShop 3.0 and SMF+G2 V3 running together, just took awhile, because SMF+G2 package install breaks the SMFShop 3.0 Package