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

Pages: 1 [2] 3
16
General SMFShop Discussion / Re: Stealing Credits in 3.0
« on: March 18, 2007, 02:31:12 am »
This still needs to be corrected manually after install.

Just FYI.


17
Items / Re: New items: Red Balls
« on: March 17, 2007, 06:16:54 am »
Thanks Bl; I'll update the first post right away.
@Lew_Cipher: Sounds great, could i have a link? (Im a sports fan)

You have a PM.

My members have been using this mod like crazy since I installed it.

18
Items / Re: Item Request: Change another user's display name
« on: March 17, 2007, 06:12:46 am »
It works!!!!!! 

Thank you!!!!!


If I can ever do anything for you, lemme know!!

Thank you again!


19
Items / Re: Item Request: Change another user's display name
« on: March 16, 2007, 10:10:59 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'];
}

}

?>


Thanks! I uploaded it to my items folder, set permissions to 755 and tried to make an item in the Shop admin. I got this error on the Sop admin page where you create & customize your items (the one with the drop down menu).

ERROR: Could not create instance of 'ChangeOthersDisplayName' item!

Any ideas?


EDIT: Nothing in the board's error log on this.

20
Items / Re: New items: Red Balls
« on: March 15, 2007, 11:29:31 pm »
Great item! I changed it around and turned it into passing a football for my sports-themed board. Thanks! O0

21
Items / Re: Pay to access Arcade?
« on: March 15, 2007, 11:27:42 pm »
Can you post a copy of the error message for me?

It's gone. It was dupe code for the acees check in 2 files. One was at line 692 (?) and the other was 990, I think. I removed the code block from Subs.Arcade.php & everything seems to work fine.

the offending code is

Code: [Select]
function hasArcadePass()
{
global $db_prefix, $modSettings, $ID_MEMBER;

Sorry I can't be more specific.



I just noticed that it put 2 instances of the "Arcade Settings" in my Shop settings page.

22
Items / Re: Pay to access Arcade?
« on: March 15, 2007, 04:32:14 pm »
BTW, it works great so far. Thanks for writing this!

23
Items / Re: Pay to access Arcade?
« on: March 15, 2007, 04:31:12 pm »
Can you post a copy of the error message for me?

It's gone. It was dupe code for the acees check in 2 files. One was at line 692 (?) and the other was 990, I think. I removed the code block from Subs.Arcade.php & everything seems to work fine.

the offending code is

Code: [Select]
function hasArcadePass()
{
global $db_prefix, $modSettings, $ID_MEMBER;

Sorry I can't be more specific.


24
Items / Re: Pay to access Arcade?
« on: March 15, 2007, 03:36:21 pm »
Check here. O0

it gave me  a duplicate code error after install.


25
General SMFShop Discussion / Re: CSS-based items not working
« on: March 15, 2007, 11:58:48 am »
Ive had a look at how the item install.

please give this package ago
http://www.leaderless.net/tp-downloads/DisplayNameCSS_Item_0.1fix.tar.gz

YOU FREAKIN' ROCK!!!

Umm... I mean thanks!

 8)

26
Items / Re: Insurance (Still needs work!)
« on: March 15, 2007, 11:48:30 am »
Wow. Interesting thread. Is there a complete version somewhere so I can try to add this item or is TechnoDrago's code just above this post the complete code so far?

27
Items / Re: Item Request: Change another user's display name
« on: March 14, 2007, 09:33:50 am »
should be easy enough to other the  Change Other's Title item.

have you thought about trying this one your self?

would be a cool way to learn a little php? and mysql?

I've actually considered trying this one but I'm so afraid of screwing up my board. I considered setting up a dummy board for trying. Really,
my biggest deterrent is that my board is just a hobby and I have an outdoors job so I can't play around to learn in my spare time at work. Plus 3 kids... My time is sooo limited.


28
Items / Item Request: add a word/phrase to the board censor...
« on: March 14, 2007, 09:29:21 am »
(with an admin-adjustable time limit, of course)

 O0

29
Items / Re: Item Request: Delete another member's post
« on: March 14, 2007, 08:41:24 am »
should be pretty easy.

would you do it by post id?

the user has to type in the post id?

I would say that would be the way but I'm very new to php.

30
General SMFShop Discussion / Re: CSS-based items not working
« on: March 14, 2007, 06:46:20 am »
bump  O0

Pages: 1 [2] 3