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

Pages: [1]
1
Items / Re: Cards - Random Item
« on: March 26, 2007, 08:58:38 pm »
what version of shop and smf are you running? just in case

SMF 1.1.2... Latest version of SMF Shop. 3.0 (Build 12)

Also  'decreased your time online' dosent work either with the joker!

2
Items / Re: Cards - Random Item
« on: March 26, 2007, 03:48:27 am »

Ive tried this and shows an error every time the item is used?!

Code: [Select]
Undefined variable: cardIs
File: \Sources\shop\items\Cards.php
Line: 102

3
Items / Re: Item Request: Change another user's display name
« on: March 16, 2007, 10:51:03 am »
Hmmm it may not be named right?...

Do you have it named  "ChangeOtherMessage.php" in Sources\shop\items & permissions set to 755???

4
Items / Re: Item Request: Change another user's display name
« on: March 16, 2007, 08:37:31 am »

Its not that hard really, with a bit of sql knowledge...

Alto the "Find Member" option dosent work, it will pop up the window but it dosent save the name in the User's name input box!  :-\

Code: [Select]
<?php
/**********************************************************************************
* SMFShop item                                                                    *
***********************************************************************************
* SMFShop: Shop MOD for Simple Machines Forum                                     *
* =============================================================================== *
* Software Version:           SMFShop 3.0 (Build 12)                              *
* $Date:: 2007-01-18 19:26:55 +1100 (Thu, 18 Jan 2007)                          $ *
* $Id:: ChangeOtherTitle.php 79 2007-01-18 08:26:55Z daniel15                   $ *
* Software by:                DanSoft Australia (http://www.dansoftaustralia.net/)*
* Copyright 2005-2007 by:     DanSoft Australia (http://www.dansoftaustralia.net/)*
* Support, News, Updates at:  http://www.dansoftaustralia.net/                    *
*                                                                                 *
* Forum software by:          Simple Machines (http://www.simplemachines.org)     *
* Copyright 2006-2007 by:     Simple Machines LLC (http://www.simplemachines.org) *
*           2001-2006 by:     Lewis Media (http://www.lewismedia.com)             *
***********************************************************************************
* This program is free software; you may redistribute it and/or modify it under   *
* the terms of the provided license as published by Simple Machines LLC.          *
*                                                                                 *
* This program is distributed in the hope that it is and will be useful, but      *
* WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY    *
* or FITNESS FOR A PARTICULAR PURPOSE.                                            *
*                                                                                 *
* See the "license.txt" file for details of the Simple Machines license.          *
* The latest version of the license can always be found at                        *
* http://www.simplemachines.org.                                                  *
**********************************************************************************/

if (!defined('SMF'))
die('Hacking attempt...');

class 
item_ChangeOtherDisplayName extends itemTemplate
{
function getItemDetails()
{
$this->authorName 'Max';
$this->authorWeb 'http://TheGaff.net/Forums';
$this->authorEmail ='webmaster@thegaff.net';

$this->name 'Change Other Member\'s Display Name';
$this->desc 'Change someone else\'s Display Name';
$this->price 300;

$this->require_input true;
$this->can_use_item true;
}

function getUseInput()
{
global $context$scripturl$settings$txt;
return 'User\'s name: <input type="text" name="username" size="50" />
<a href="' 
$scripturl '?action=findmember;input=username;quote=0;sesc=' $context['session_id'] . '" onclick="return reqWin(this.href, 350, 400);"><img src="' $settings['images_url'] . '/icons/assist.gif" border="0" alt="' $txt['find_members'] . '" /> Find Member</a><br />
New Display Name: <input type="text" name="newdisplayname" size="50" />'
;
}

function onUse()
{
global $db_prefix;

if (!isset($_POST['username']))
die('ERROR: Please enter a username!');
if (!isset($_POST['newdisplayname']))
die('ERROR: Please enter a new display name!');

// This code from PersonalMessage.php5. It trims the " characters off the membername posted, 
// and then puts all names into an array
$_POST['username'] = strtr($_POST['username'], array('\\"' => '"'));
preg_match_all('~"([^"]+)"~'$_POST['username'], $matches);
$userArray array_unique(array_merge($matches[1], explode(','preg_replace('~"([^"]+)"~'''$_POST['username']))));

// We only want the first memberName found
$user $userArray[0];

$result db_query("
UPDATE 
{$db_prefix}members
SET realName = '
{$_POST['newdisplayname']}'
WHERE memberName = '
$user'"__FILE____LINE__);
return 'Successfully changed ' $user '\'s Personal name to ' $_POST['newdisplayname'];
}

}

?>

Pages: [1]