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

Pages: [1] 2
1
Coding / Re: Shop admin not showing up?
« on: October 08, 2008, 09:45:23 am »
Have you tried uninstalling it and any shop items you may have installed and re-install just shop mod to see if it shows?.

2
Bugs / Re: Cannot steal from other users
« on: October 06, 2008, 10:49:17 pm »
well i found when asking for help it really helps if you post your forum version along with shop version..

the more detail you give the better your changes of getting answers...

anyhow heres a post i found by SEARCHING, hope it helps you.

http://www.daniel15.com/forum/index.php/topic,559.0.html
 ;)

3
General SMFShop Discussion / Re: You are not allowed any more pets!!!
« on: October 05, 2008, 07:48:05 am »
found the solution i just went into phpadmin and looked for numpets for the user who was not able to buy a pet.
This area had 1 in it, so i replaced it with 0 then saved it and i can now purchase a pet...


4
General SMFShop Discussion / You are not allowed any more pets!!!
« on: October 01, 2008, 09:43:12 pm »
Hi,
I get this message now after installing pets mod.

"
Quote
You are not allowed any more pets!!!
"

i currently DO NOT have any pets, because it wont let me.

I use the following:
SMF 1.1.6
SMFShop 3.0
SMFPets 0.2 

Thanks

5
Requested additions / Purchasing Items
« on: September 29, 2008, 12:57:00 am »
Is there a way to select or  input the amount of items you wish to purchase rather then having to keep going back and clicking the same buy button over?.

6
Bugs / Re: shop major issue
« on: September 25, 2008, 07:27:51 pm »
have you tried uninstalling and then re-installing?

7
Modifications / Re: SMFPets Version 0.2
« on: September 25, 2008, 07:26:43 pm »
Hey all.
It think this mod is rather neat, and wouldn't mind it on my forum. The only thing is that when I try to install it, it comes with one error.
Code: [Select]
18.  Execute Modification  ./Sources/Load.php  Test failed
Would this be a conflict with one of my other mods? Or is there something I have to prepare before installing this mod?


what mods you installed?

8
Items / Re: Level Up - SMF Pets item
« on: September 22, 2008, 04:35:30 am »
Its cool program, it works like a charm :)
Thanks

9
General SMFShop Discussion / Re: shop installation problems
« on: September 21, 2008, 10:14:14 am »
can you attach both files:
Removetopic.php and display.template.php

10
General SMFShop Discussion / Re: shop installation problems
« on: September 21, 2008, 08:37:54 am »
Ok put back your backup files..

As i only see 2 test failed in your screenshot, where there more? If so please indicate that too..

11
General SMFShop Discussion / Re: shop installation problems
« on: September 21, 2008, 04:23:22 am »
thank you.. I'll give a try... I'm guessing the smiley in the middle there is supposed to be 8 )?


Yes you are correct the system sees this as a smiley

make sure there is NO SPACE

12
General SMFShop Discussion / Re: shop installation problems
« on: September 21, 2008, 03:09:42 am »
First make sure you backup both files you are about to edit.
After you have both files backed up start your editing

./Sources/RemoveTopic.php
Find:
Quote
         while ($rowMembers = mysql_fetch_assoc($requestMembers))
            updateMemberData($rowMembers['ID_MEMBER'], array('posts' => 'posts - ' . $rowMembers['posts']));

Replace With:
Quote
         //while ($rowMembers = mysql_fetch_assoc($requestMembers))
         //   updateMemberData($rowMembers['ID_MEMBER'], array('posts' => 'posts - ' . $rowMembers['posts']));
            
         //BEGIN SMFShop 2.0 (Build 8) MOD code
         while ($rowMembers = mysql_fetch_assoc($requestMembers)) {
            updateMemberData($rowMembers['ID_MEMBER'], array('posts' => 'posts - ' . $rowMembers['posts']));
         global $modSettings;
         db_query("UPDATE {$db_prefix}members
                 SET money = money - {$modSettings['shopPointsPerPost']}
                 WHERE ID_MEMBER = {$rowMembers['ID_MEMBER']}
                 LIMIT 1", __FILE__, __LINE__);
         }
         //END SMFShop 2.0 code

NEXT FIND:
Quote
   if (!empty($row['ID_MEMBER']) && $decreasePostCount && empty($row['countPosts']))
      updateMemberData($row['ID_MEMBER'], array('posts' => '-'));


Add After:
Quote
      //BEGIN SMFShop New Version (Build 8) MOD code
      db_query("UPDATE {$db_prefix}members
              SET money = money - {$modSettings['shopPointsPerPost']}
              WHERE ID_MEMBER = {$row['ID_MEMBER']}
              LIMIT 1", __FILE__, __LINE__);
      //END SMFShop New Version code


NOW Open:
./Themes/default/Display.template.php

FIND:
Quote
         // Show how many posts they have made.
         echo '
                        ', $txt[26], ': ', $message['member']['posts'], '<br />
                        <br />';


Repalce with:
Quote
         // Show how many posts they have made.
//         echo '
//                        ', $txt[26], ': ', $message['member']['posts'], '<br />
//                        <br />';

            // BEGIN SMFShop MOD New Version Code
         // Removed one <br /> from end of post count line.
         echo '
                        ', $txt[26], ': ', $message['member']['posts'], '<br />
                        ';
                        
         echo '
                        ', $modSettings['shopCurrencyPrefix'], $message['member']['money'], $modSettings['shopCurrencySuffix'], '<br /><br />
                        <a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">View Inventory</a><br />
                        <a href="', $scripturl, '?action=shop;do=sendmoney;member=', $message['member']['username'], '">Send Money to ', $message['member']['name'], '</a><br />';
         //END SMFShop code



After you have edited these files upload them to the correct folder.

Now install your shop mod..

Hope this will help you...

13
General SMFShop Discussion / Re: smf pets problem.
« on: September 20, 2008, 09:11:25 pm »
i tried installing SMF pets onto my site through package manager. but it had an error message saying: You cannot download or install new packages because the Packages directory or one of the files in it are not writable!

i tried installing it manually, but i couldn't find this file:  ManagePermissions.english.php

where i got the instructions from, said it would work with any theme. but im using the invasion theme for smf/tiny portal.

can someone help?

did you CHMOD the Packages directory to 0777
or do it prompt for FTP info?

im no expert but im learning, some i got from here but most of my help come from sleepy-arcade

If you cant find it here try sleepy arcade...

14
Items / Re: Arcade
« on: September 20, 2008, 09:19:16 am »
Well for anyone who maybe interested, i found this mod that works well with the arcade and the shop mod

you MUST have shop mod for this work.

http://www.smfarcade.info/forum/index.php/topic,2627.0.html

i use it on my SMF site and its great..at least for me it is  ;)
I have arcade passes setup for 7 days, 30 days, and 90 days...Just thought i share it...

15
Modifications / Re: SMFPets Version 0.2
« on: September 20, 2008, 01:48:07 am »
Nascar
I setup a family site using petmod did same installation but get the same errors as you i cant seem to find answers here so i went to sleepy-arcade

I seem to get alot of my answers there.. thanks to wdm2005 and others....  give it a try..

If i get an answer soon i will post it here for you as well.

Pages: [1] 2