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

Pages: 1 ... 5 6 [7] 8 9 ... 72
91
Bugs / Re: Not getting Intrests
« on: December 08, 2007, 04:36:04 pm »
What is the exact command you entered?
Usually, output goes to a log file. In the example in the documentation (http://www.dansoftaustralia.net/smfshop_wiki/Bank_Interest), the log would be in a file called interest_log.htm.

Otherwise, if you PM me your cPanel details, I'll try to take a look at it ;)

92
Requested additions / Re: Benefits for money
« on: December 08, 2007, 04:33:52 pm »
Sounds good, but I don't really have time to look into this at the moment :(
Anyone else?

93
Installation Problems / Re: Not Geting Intrest from Bank!
« on: December 08, 2007, 04:33:19 pm »
zsw007, are you even using cPanel, or are you using a different site admin panel instead? If you're not the owner of the site (eg. you're a co-admin), you'll need to ask the site owner about this.

94
Requested additions / Re: diferent size in diferent image items
« on: December 08, 2007, 04:31:22 pm »
To remove the size restriction, open Themes/default/Shop.template.php, and find:
border="0" width="', $modSettings['shopImageWidth'], '" height="', $modSettings['shopImageHeight'], '" src=

Replace with:
border="0" src=

Note: This occurs three times in the code. Make sure to change them all! :)

This will not impose any size restrictions on the images, and will use the full size.

95
General SMFShop Discussion / Re: "Hacking attempt..."
« on: December 08, 2007, 04:24:09 pm »
Sorry about that, it was a mistake on my part. Basically, someone is trying to change their user title, but there is a code error which is causing that problem.
This is the fix:
In Sources/shop/items/ChangeUserTitle.php:
Find:
Code: [Select]
updateMemberData($context['user']['id'], array('usertitle' => $_POST['newtitle']));

Replace with:
Code: [Select]
updateMemberData($context['user']['id'], array('usertitle' => '"' . $_POST['newtitle'] . '"'));

96
General SMFShop Discussion / Re: Problem with Upgrade to v1.1.4 of SMF
« on: December 08, 2007, 04:12:09 pm »
Are you able to give me FTP access to your site? I'll check that the language files are fine :)

97
General SMFShop Discussion / Re: Compatible with invisionfree.com
« on: December 08, 2007, 04:09:28 pm »
Sorry, this is not possible. Invisionfree uses a totally different forum system (Invision Board, not SMF), and SMFShop requires SMF.

98
Installation Problems / Re: Error When Download package
« on: December 08, 2007, 04:07:31 pm »
Could you please translate that error to English?

To install SMFShop manually, upload the package to the SMF Package Parser (Turkish version), and follow the instructions :)

99
Coding / Re: Installing Expansion
« on: December 08, 2007, 04:05:22 pm »
If the items are packages, you just install them using the Package Manager (same as SMF).
If they're item files (usually a single .php file), put them in Sources/shop/items/, and then use the Add/Edit/Delete Items section of the admin panel (they'll automatically be listed in the dropdown box at the top of the page) :)

100
Installation Problems / Re: How do i install?
« on: December 08, 2007, 04:01:00 pm »
SMF is not a forum host, they only offer the software required to set up the forum. You'll need to find a web host that supports PHP and MySQL.

101
Alright, so you figured it out? :)
Please feel free to ask if you encounter any further problems.

102
Requested additions / Re: Buy credits by PayPal
« on: December 03, 2007, 01:38:56 pm »
This is requested quite a lot, but unfortunately I do not have time to look into it :(

103
Sorry, I've been rather busy with other things.
Firstly, I'd suggest to make the field name short and not contain any spaces. So, you'd do something like:
Code: [Select]
Enter Icon Number and Members name: <input type="text" name="iconnumber" />

Then, in the email, you'd do:
Code: [Select]
They entered: {$_POST["iconnumber"]}
Does that help?

104
Coding / Re: Change "7.00 cedits" to "7 credits"
« on: December 03, 2007, 12:44:45 pm »
Alternatively you could change it to
Code: [Select]
$money = (int) $money;
Which will round off the value if needed.

105
Completed Requests / Re: ApolloBB shop icon
« on: December 03, 2007, 12:43:34 pm »

Pages: 1 ... 5 6 [7] 8 9 ... 72