Previous Thread
Next Thread
Print Thread
Rating: 5
Page 1 of 3 1 2 3
Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Mod Name / Version: Feature Shop 1.7

Description: Are you ever not around when Someone needs a Title Changed or Their Name Changed or Anything else that requires your presence as Admin? Ever wanna Hold Auctions and Offer things up for Sale? Well Here it is.. The UBB Threads 6.5 Shop..

Working Under: UBB.Threads 6.5

Mod Status: Finished

Any pre-requisites: Ubb THreads 6.5

Author(s): scroungr

Date: 10/22/04

Credits:

Files Altered: /ubbthreads/languages/english/online.php, /ubbthreads/languages/english/showflat.php, /ubbthreads/languages/english/showthreaded.php, /ubbthreads/languages/english/editdisplay.php, addpost.php, adduser.php, dopoll.php, showthreaded.php, showflat.php, changedisplay.php, deletepost.php, changebasic.php, /ubbthreads/templates/default/showthreaded.tmpl, /ubbthreads/templates/default/showflat.tmpl, /ubbthreads/templates/default/editdisplay.tmpl


If using IIP in the shoutaddpal.php


New Files: Shop Language Files, Shop Template Files, Shop PHP Files

Database Altered: YES

Info/Instructions:
Detailed Instructions enclosed

Disclaimer: Please backup every file that you intend to modify.
If the modification modifies the database, it's a good idea to backup your database before doing so.

Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files.
Attachments
121815-theshop.zip (0 Bytes, 305 downloads)

Last edited by scroungr; 03/07/2005 8:36 PM.
Sponsored Links
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
Sounds cool, but what does it do? Offer things like name changes for a price?


- Allen wavey
- What Drives You?
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Yeah, this sounds awesome-- please elaborate.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Yes you set in the admin Panel what points you want to give for such things as taking Polls, Making Polls, Doing Shouts, How many words or Characters a post has.. and subtract em if the user deletes a post.. so these points build up and you can purchase items that you put up in the Item Section or Purchase Features such as ChangeName ChangeTitle Larger Signatures, Images in Signatures, Glowing Names (Flashes in Mozilla), Shadowed Names ( backgrounded in Mozilla), etc.. You can also Auction Off items you buy and when the auction is over you get the points and the user gets the item...

see it for yourself at

CT Shop

Login Threadsdev
Password Threadsdev

Joined: Mar 2001
Posts: 644
Member
Member
Offline
Joined: Mar 2001
Posts: 644
Interesting idea Scroungr. Very cool.

Sponsored Links
Joined: Oct 2004
Posts: 16
Junior Member
Junior Member
Offline
Joined: Oct 2004
Posts: 16
Very kewl! can you actually put items "for sale" in there? like a forum garage sale of sorts?

how do you go about collecting points on your site?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
in a sorts.. say you have a widget that you want to sell.. just add an item called widget and sell it.. allows ya to set stock levels on it also.. and then when someone buys the widget it will show up in their profile that they bought a widget... will also subtract the widget from stock.. its not a powerful one like say Photopost's Classifies but it allows for a little fun.. check it out at Couch Tomatoe

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
A few questions.

There is an option to change names and colors of names and add shadows to names. When playing with it, I added a color and glowing text to my name and it also add the color and glowing test to the custome title for me Is there a way to make it only change the name.

When I was done playing with it, I used the option to clear the siginiture and it didnt do anything to it. my name is still green and glowing

Lastly...
the only way to see the changes is to go into the my home section and on the very bottom you have to click the box to view sigs purchased in the shop. Is there a sql That can run to set everyone to checked and make all new users auto check yes?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
clear the siginiture doesn't clear titles or names it only clears the signature look at the script you should be able to see how to add other options...


to change only one.. look at the code and comment out the part you don;t want to change...

and lastly you can run

UPDATE w3t_ShopMembers SET titleeffectstatus = 'ON'

that will update all users so they can see the effects and can then turn it off..

to set it to default ON for all new users find the following adduser.php

// -------------------------
// Build Board Query For Shop Mod & Insert Points
// Add user to Shop
$query="
INSERT INTO {$config['tbprefix']}ShopMembers
VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'OFF')
";
$sth = $dbh -> do_query($query);
// End of Build Board Query For Shop Mod & Insert Points
// -------------------------

change to

// -------------------------
// Build Board Query For Shop Mod & Insert Points
// Add user to Shop
$query="
INSERT INTO {$config['tbprefix']}ShopMembers
VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'ON')
";
$sth = $dbh -> do_query($query);
// End of Build Board Query For Shop Mod & Insert Points
// -------------------------

if ya even wanna give newbies some credits for applying set <CREDITS VALUE> to a number like 1000 which will give newusers 1000 credits to spend..


// -------------------------
// Build Board Query For Shop Mod & Insert Points
// Add user to Shop
$query="
INSERT INTO {$config['tbprefix']}ShopMembers
VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '<CREDITS VALUE>', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'ON')
";
$sth = $dbh -> do_query($query);
// End of Build Board Query For Shop Mod & Insert Points
// -------------------------

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
There is something that is replaced that allows all your post to reflect changes when you edit it. I edited my title and now it doesent reflect on all the older posts.

Sponsored Links
Joined: Aug 2004
Posts: 82
Power User
Power User
Offline
Joined: Aug 2004
Posts: 82
nobody gets any points when they post? any ideas? but everything works i gave myself 1000000 points haah and i got a custom name and it works ok. but points dont add up

Last edited by minto; 10/27/2004 4:19 AM.
Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
did you add the part in the instructions to addpost in the right area? did you set the words and letters value to something?

Joined: Aug 2004
Posts: 82
Power User
Power User
Offline
Joined: Aug 2004
Posts: 82
yeah and i double checked the addpost.php had all the right code changed. i think it be the database as on one fo the it said that it allready existed so i guess it [censored] upo there

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmmm well I can take a look later.. will need an account with admin rights though and possibly ftp access.. shoot me a PM

Joined: Aug 2004
Posts: 82
Power User
Power User
Offline
Joined: Aug 2004
Posts: 82
ok thanks so much my friend. i will send you a pm. sorry im such a n00b im just learning

Joined: Aug 2004
Posts: 82
Power User
Power User
Offline
Joined: Aug 2004
Posts: 82
also mate i when u reset your sig it does the following

--------------------


--------------------
test goes here


it adds 2 lines of --- and u cant get rid of it unless you have no sig at all

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
clearing your sig puts "test goes here" ??

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmm jest rechecked the upload

$query="
UPDATE {$config['tbprefix']}ShopMembers
SET money=money-'$itemsarray[price]', signature = ''
WHERE uid='$user[U_Number]'
";
$dbh -> do_query($query);


these lines tell the signature field of ShopMembers to be cleared to '' and thats where the signature is now getting pulled from. Please double check the scripts involved for the correct changes Let me know what happens and I will try and get on your server again

Joined: Aug 2004
Posts: 82
Power User
Power User
Offline
Joined: Aug 2004
Posts: 82
what i mean is when u reset your sig it makes to lines of --- eg for you sig it would look like this after u reset it. its blank but once u type stuff in your box it will turn out like this


--------------------


--------------------
Couchtomatoe - www.couch-tomatoe.cc
My abilities are for hire for installs, upgrades, custom themes and custom modifications.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmm will have to check that...

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
Im still having some issues. Mostly the way names are changed. Me and another admin bought a name change and never cold get it back to normal.

last night I restored the original files so I can start over again to make sure I did everything correctly. I removed everything but the sql that was created. And we still have the borked names but now they show normal on the online page but all the posts and any new posts we make, it still uses the colored and glowing texts we bought.

as far as removing the sql that was created during install, The only ones I see are these,

w3t_ShopAuctionItems
w3t_ShopBank
w3t_ShopCats
w3t_ShopFeatures
w3t_ShopItems
w3t_ShopMemberItems
w3t_ShopMembers
w3t_ShopSettings
w3t_ShopVotes

Can I just remove the entries?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
sure. Remove those tables. And restore the changed scripts back to normal. The deatures section could be tweaked a little. You can also turn them off.. you don't have to offer all the features..

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
true. its a great hack and ill certainly add it back. I just want to make sure I did it exactly right. most times i find that I replaced something when I should have added below it ;-\

I also realised that I dont have to remove them. In the install script it has, "if table exists replace it" or something like that. I think it will just overwrite whats there.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay Minto.. I tried it again on my server and there is no way to get

--------------------


--------------------

on my server.. if ya want me to take another look let me know..

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
[]DrChaos said:
Im still having some issues. Mostly the way names are changed. Me and another admin bought a name change and never cold get it back to normal.

last night I restored the original files so I can start over again to make sure I did everything correctly. I removed everything but the sql that was created. And we still have the borked names but now they show normal on the online page but all the posts and any new posts we make, it still uses the colored and glowing texts we bought.

as far as removing the sql that was created during install, The only ones I see are these,

w3t_ShopAuctionItems
w3t_ShopBank
w3t_ShopCats
w3t_ShopFeatures
w3t_ShopItems
w3t_ShopMemberItems
w3t_ShopMembers
w3t_ShopSettings
w3t_ShopVotes

Can I just remove the entries? [/]

yeah I never did add a feature that will reset your name back to normal. Maybe I will.

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
:-\

Still a great mod

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
I reworked alot tonite will be uploading a new version later this weekend.. now pulls things correctly

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay made some major changes to the way it pulls the information. will allow for easier integration. I removed the 6.4 files since all that changed from 6.4 to 6.5 was the cookies.. you can still adapt this easily to 6.4 by looking at where I placed the strings.. also I removed it from the postlist.php and online.php and showmembers.php because its pretty useless in there..

What really makes this shine is the ability to buy/sell/ and auction other things besides the features.. you can also create seperate categories and even subcategories

Joined: Sep 2003
Posts: 803
Coder
Coder
Offline
Joined: Sep 2003
Posts: 803
a definite on the list for tonight

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
I'm thinking about adding this scroungr, but I have a question. I looked at your site and in the feature shop you can get 100x100 or 150x150 avatars. If I have my max avatar size set to 80x80, does this mod override that?

Because if I have to set the maximum avatar size 10 150x150, couldn't people just add a bigger avatar from their profile?

Thanks!

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
yes it does override that 80x80 and yes if you set it to 150x150 in threads it will override it.. and if ya want you can disable any functions ya don't wanna use

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
[]scroungr said:
yes it does override that 80x80 and yes if you set it to 150x150 in threads it will override it.. and if ya want you can disable any functions ya don't wanna use [/]

This may be a dumb question, but I would imagine that since you can sell the option of an image in a user's signature, the idea is to have images in signatures turned off. Is that right? Sorry to ask here, but I haven't even read the instructions yet, preferring to wait for 6.5.1 final before touching this. Thanks!

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
yeah I have signatures in images turned off unless they buy em with this mod

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
I have installed the files and did the installation. I went to admin settings and I didnt see anything, where in the admin settings???!?!

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
are you logged in as admin?

did you go to the footer of the feature shop? should say
Admin Panel - New Category - Search Shop - Shop Stats

click on the icon or the name..

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
Yes I am logged in as an admin and I dont see any footer of feature shop.

Where is it exactly, i am using 6.5, is it in the control panel???.

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
How do I re-do this all again, so many tables of feature shop has been isntalled and if i run the install again it doesnt allow me.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
basically the way I created this mod is that everything is in the shop and not much in threads except for some links and some code for points..

so its safe to delete the following tables

ShopMemberItems
ShopAuctionItems
ShopBank
ShopCats
ShopItems
ShopSettings
ShopVotes
ShopMembers
ShopFeatures


then rerun the install shop script and select new

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
oops, ok found it, its in shopadmin.php

thanks, now let me continue the installation and see how it goes

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
Hi

I have done everything and i get this in my forum entrance, please tell me where did I go wrong?



$ubbt_lang['shopedit'] = "Editing"; $ubbt_lang['shopauctionitem'] = "In the Auction House"; $ubbt_lang['all_admin'] = "Performing Administrative Duties"; $ubbt_lang['shop'] = "Entering the Shop"; $ubbt_lang['shopcategory'] = "Perusing the Shop"; $ubbt_lang['shopitem'] = "Buying an Item in the Shop"; $ubbt_lang['shopstats'] = "Looking at the Shop Stats"; $ubbt_lang['shopsearch'] = "Searching the shelves of the Shop"; $ubbt_lang['shopbank'] = "Counting his money";

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
Ok I think I am done.

One last thing, when I do the cahnge user name feature and try to do the preview thingi, it doesnt work, it gives me an error page of 404 or something. Why?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
cause I was dumb and left out one file download the zip again and just copy over the itempreview.php

Joined: Jan 2005
Posts: 39
User
User
Offline
Joined: Jan 2005
Posts: 39
I downloaded the attachment of this progie from your original post. But the instructions65.txt file and title of this .txt file makes reference to UBB.Threads v6.5. I need a confirmation from you (scroungr) that I can use this on v6.4.

Thank You!

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
you can but you may need to do a little rewrite. the mod basically doesn't get much from the ubthreads but the placements of the points system into threads script files won't be the same for 6.5 to 6.4. One of the other users here is using this mod with v6.4.

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
ok, EXCELLENT thanks dude

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
scroungr,

why is it I find difficult changing the color and glowing for my username.

I gave myself so many points so I can play with the feature, but everytime I try to change color and give glowing it doesnt do it. Why? Help?

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
for some reason I have problem with the glowing feature the most

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
look into the ShopMembers table and make sure a value was placed into the glow field. Also check your placement of the string in showflat that allows the item to be viewed. let me know if it's NOT getting added into the ShopMembers table or if it's just being shown.

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
I did check the shopmembers table and I applied the value, but still its a problem.

And what do you mean placement of the string in showflat, please explain slowly, i am still learning

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
scroungr,

this what I see in my shopmembers, tell me if you see anything wrong and where I should change it and what next

Last edited by scroungr; 03/02/2005 6:31 PM.
Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
no not the table structure let me see what one of the table entries looks like..

and I mean you have to alter the showflat.php and showthread.php and tmpls.

you should go back to the instructions and reread them and follow them closely. if you need assistance shoot me a PM with FTP access information and I will take a look.

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
thanks scroungr, I will send you the ftp access, appreciate it thanks

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Salim what issues were you having? I saw a few changes people made? did you have under your

Display preferences, number of shown topics, languages, colors...

View Special Effects in User's names and Titles Purchased from the Feature Shop

set to yes?

Joined: Feb 2003
Posts: 196
Member
Member
Offline
Joined: Feb 2003
Posts: 196
ooopppps, scorungr, you should have mentioned that I needed to switch the effect in my profile duhhhhhhhhhhh

Sorry my mistake and thanks a bunch fory our help. you are da man

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
I had this working for a few weeks with no problems then one user said they had this problem

[]http://www.parentforum.org/ubbthreads/Attachments/4202-leannprtsc.jpg.jpg[/]
Then another member had the same problem. But I could not find anything wrong on when I looked. I uploaded my pre feature shop showflat.php and the fault stopped.
I followed the the install instructions again and uploaded the file I had the same error which I saw this time

I have attached my version on showflat.php if someone could have a look at it and point out if I have made a mistake.


Last edited by scroungr; 03/02/2005 6:31 PM.
Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
whats the error say?

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
[]scroungr said:
whats the error say? [/]

It does not say anything, it makes posts look like my picture above

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
Looks like you have a missing cell or table closure.

When I get similar, I dump the source code from that page into FrontPage - fix the error - then alter the template, with the same modification.


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
I don't have frontpage

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
definitily a table issue.. hows it look in threaded mode? could also be the .tmpl as well as the .php?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
actually looking back over this coding I would figure its more in the .php then in the .tmpl. with all the spanning and diving going on could be the issue.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay had to remove the showflat.php.. site rulez say don't post full file.. you can post code snipets.. anyways I checked you file and it works on my site but I noticed on the bottom of the showflat.php that you have

// Adsense hack start
$adsense = "";
if ( stristr(",{$config['adsense']},", ",$Board,") ) {
include("$thispath/templates/$tempstyle/adsense.tmpl");
}
// Adsense hack finish


try removing those lines and retest.. you MAY have a problem in the adsense.tmpl

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
[]scroungr said:
okay had to remove the showflat.php.. site rulez say don't post full file.. you can post code snipets.. anyways I checked you file and it works on my site but I noticed on the bottom of the showflat.php that you have

// Adsense hack start
$adsense = "";
if ( stristr(",{$config['adsense']},", ",$Board,") ) {
include("$thispath/templates/$tempstyle/adsense.tmpl");
}
// Adsense hack finish


try removing those lines and retest.. you MAY have a problem in the adsense.tmpl [/]

I will try that and let you know

[] site rulez say don't post full file.. [/]

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay the problem is you are allowing html in the signature.. so you cannot use the signature part as this is written.. you will need to disbale the signature stuff in the shop and in showflat.php change

Code
	// ------------------------- <br />// Build Board Query For Shop Mod & Show Funky Names <br />		$query=" <br />			SELECT titleeffectstatus <br />			FROM {$config['tbprefix']}ShopMembers <br />			WHERE uid = '$user[U_Number]' <br />		"; <br />	   	$stq = $dbh -> do_query($query); <br />		list($titleeffectstatus)= $dbh -> fetch_array($stq); <br />		$query=" <br />			SELECT glowcolor,titleeffect,hexcolor, cstatus, imagesignature, largersignature, avatar <br />			FROM {$config['tbprefix']}ShopMembers,{$config['tbprefix']}Users <br />			WHERE U_Number = '$usernum' && U_Number = uid <br />		"; <br />	   	$stz = $dbh -> do_query($query); <br />		list($glowcolor, $titleeffect, $hexcolor, $cstatus, $imagesignature, $largersignature, $newavatar)= $dbh -> fetch_array($stz); <br /> <br />		if ($config['sigimage']){ <br /> <br />			if ($Signature) { <br />				$Signature = str_replace("\n","<br />",$Signature); <br />				$Signature = "<br /><br />--------------------<br />$Signature"; <br />			} <br />			if ($ShowSigs == "no" || !$addsig) { <br />				$Signature = ""; <br />			} <br />		} <br />		else{ <br />			if ($imagesignature != 'ON') { <br />				$Signature = preg_replace("/<img src=\"([^\>]*)\">/i","",$Signature); <br />			} <br />			if ($largersignature != 'ON' && $imagesignature == 'ON') { <br />				preg_match("/signature\/[[:alnum:]]{3,40}\.[[:alnum:]]{3,4}/i",$Signature,$matches); <br />				if($matches){ <br />					$Signature = "<img src=\"{$config['imageurl']}/$matches[0]\">"; <br />				} <br />				else{ <br />					$Signature = substr($Signature, 0, $config['Sig_length']); <br />				} <br />			} <br />			elseif ($largersignature != 'ON' && $imagesignature != 'ON') { <br />				$Signature = substr($Signature, 0, $config['Sig_length']); <br />			} <br />			if($Signature){ <br />				$Signature = str_replace("\n","<br />",$Signature); <br />				$Signature = "<br /><br />--------------------<br />$Signature"; <br />			} <br />		} <br />// End Build Board Query For Shop Mod & Show Funky Names <br />// ------------------------- <br />		}



to


Code
 <br />// ------------------------- <br />// Build Board Query For Shop Mod & Show Funky Names <br />		$query=" <br />			SELECT titleeffectstatus <br />			FROM {$config['tbprefix']}ShopMembers <br />			WHERE uid = '$user[U_Number]' <br />		"; <br />	   	$stq = $dbh -> do_query($query); <br />		list($titleeffectstatus)= $dbh -> fetch_array($stq); <br />		$query=" <br />			SELECT glowcolor,titleeffect,hexcolor, cstatus, imagesignature, largersignature, avatar <br />			FROM {$config['tbprefix']}ShopMembers,{$config['tbprefix']}Users <br />			WHERE U_Number = '$usernum' && U_Number = uid <br />		"; <br />	   	$stz = $dbh -> do_query($query); <br />		list($glowcolor, $titleeffect, $hexcolor, $cstatus, $imagesignature, $largersignature, $newavatar)= $dbh -> fetch_array($stz); <br /> <br />// End Build Board Query For Shop Mod & Show Funky Names <br />// ------------------------- <br />



in the showflat.php that will set it back to the stock except for the signature

Last edited by scroungr; 03/03/2005 8:57 PM.
Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
Thank you scroungr for this and your time the other day.
I have not had time to try this out yet. Will let you know if it is all ok.


Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
yeah cause your using html and graemlins in your sigs ad I limited the mechanism so it only allows one image per person it won't work without a major rewrite...so its best to leave out the signature stuff in your usuage.. the rest should work.. the shadowed names, the glowing names, and all the rest of the abilities...

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
I've just installed this and I have some issues/questions:
What all do I need to do to make this work? I have turned off the display name changes and images in the signature. What do I have to do for the reset signature and the larger signature items to work?

Also, I'm having issues with the templates:
It looks ok here, but it's not:
http://www.laondalatina.com/foros/shop.php
Because on the rest of the site, I have a vertical bar on the right where I plan to add content:
http://www.laondalatina.com/foros/
I believe there is an issue with missing table tags.
Here it gets hairy:
http://www.laondalatina.com/foros/shopcategory.php?Cat=&cid=1
Probably another template issue.

Finally, when I go to the Shop Admin area, nothing happens when I click on Categories, Items, Add Points, Show User Stats. It keeps bringing me back to the settings screen.

Any suggestions?

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
I will take a look in the morning at the code. I see a possible problem.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay uploaded a new zip.. should fix some of the issues...

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
I haven't uploaded ALL the new files, but I did update the 6.5 .php files and the templates, and everything looks the same.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmmm I see this error

SQL Error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ') ORDER BY displayorder, catname' at line 4
SQL Error #: 1064
Query: SELECT * FROM w3t_ShopCats WHERE cid='0' AND (status = 'on' || owner = ) ORDER BY displayorder, catname

and you can't have the new files if your still getting that error cause I fixed it?

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
[]scroungr said:
Hmmm I see this error

SQL Error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ') ORDER BY displayorder, catname' at line 4
SQL Error #: 1064
Query: SELECT * FROM w3t_ShopCats WHERE cid='0' AND (status = 'on' || owner = ) ORDER BY displayorder, catname

and you can't have the new files if your still getting that error cause I fixed it? [/]

What script did you see that error on? I don't see it. Another problem I've noticed is that when I click on Bank, it tells me how many points I have. Though when I click on any of the links on that page (Finances, Credit, Debit, Send Points) the URL changes, but the actual content on the page doesn't. Every link takes me nowhere, or better put, I stay at the page that says how many points I have.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmmm send me a PM with some login information I wanna check a few things

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
Let me go create a new admin and I'll PM you the info.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
ok think I see what ya did... 1) delete all the existing shopfiles.. download new zip.. the way I rewrote it all the shop files will be placed in a director called theshop to be placed inside the threads directory.... I took the files out of languages and templates and moved em all inside the directory so it will make it easier to update and vice-a-versa

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
I uploaded the new .zip to the threads directory and unzipped it there and now all the files are in the /theshop directory. It still doesn't appear to have changed anything. The layout is broken by the shop on all the pages, except strangely enough, the admin area. In the admin area and the bank area, none of the links do anything either.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
hmm okay I will log in and take a look

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
okay a few questions.. do you have globals turned on or off? does your server allow the super globals $_POST and instead makes you use the obsolete $HTTP_POST_VARS and $HTTP_GET_VARS instead?

about the tables its only when you go into say the features table from what I see... that splits the table the features are lsited on and puts it below the menu you have on the right? try this shopcategory.tmpl and let me know if it fixes it.. I think there was an extra </table> closure...
Attachments
125995-shopcategory.tmpl.txt (0 Bytes, 115 downloads)

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
BTW if your server can't use SUPER Globas $_POST and $_GET try adding this to the top of the scripts.. MAY work

// FORCE USE OF GLOBAL VARIABLES
$version_info = explode('.', phpversion());
if ($version_info[0] < 4 || ($version_info[0] > 3 && $version_info[1] < 1)) {
$_POST = $HTTP_POST_VARS;
$_GET = $HTTP_GET_VARS;
}


then again this could fail because your server won't allow the phpversion() command...

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
[]scroungr said:
okay a few questions.. do you have globals turned on or off? does your server allow the super globals $_POST and instead makes you use the obsolete $HTTP_POST_VARS and $HTTP_GET_VARS instead?

about the tables its only when you go into say the features table from what I see... that splits the table the features are lsited on and puts it below the menu you have on the right? try this shopcategory.tmpl and let me know if it fixes it.. I think there was an extra </table> closure... [/]

I'm not sure where to find the information regarding globals, so I'll ask Josh, since my site's on one of his servers Thanks, scroungr. Hopefully we'll get this thing fixed. I'm glad it wasn't just my imagination.

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
scroungr

I have finally changed the code and its not getting the error I first was getting, but now all signatures are not separate from the posts.
I have left it as it is for now for you to see.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
hmm trouble resolving your host but I will take a look when I can.

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
Another problem as been spotted.
New users do not have any ponits or earn any. I have added 5000 to their account but it does not show.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
Hmmmm did you add the code to adduser.php?


// -------------------------
// Build Board Query For Shop Mod & Insert Points
// Add user to Shop
$query="
INSERT INTO {$config['tbprefix']}ShopMembers
VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'ON')
";
$sth = $dbh -> do_query($query);
// End of Build Board Query For Shop Mod & Insert Points
// -------------------------


without that they won't get added to the w3t_ShopMembers table when they are added as a new user to the board?

it has to be UNDER

// Get this user's user number
$query = "
SELECT U_Number
FROM {$config['tbprefix']}Users
WHERE U_Username='$Displayname_q'
";
$sth = $dbh -> do_query($query,__LINE__,__FILE__);
list ($Uid) = $dbh -> fetch_array($sth);

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
No, how did I miss that

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
instructions.. line 11)

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
Thank you!

Do you mind having a look at this for me?
Now all signatures are not separate from the posts.
I have left it as it is for now for you to see.

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
I would but I still can't resolve your host.. gives me an error when I try to get to your site no matter what PC i use and no matter how I try.

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
wtf is causing that then

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
only way I have figured out how to get to your forums is if I use http://harrier.xssl.net/~admin115/

there is most likely something wrong with your resolver.. I would message others and see if anyone else has this issue

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
I think I will have to

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
Looks like you have some issues with your nameservers - http://www.dnsreport.com/tools/dnsreport.ch?domain=parentforum.org


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
Thanks Ian, I will let my hoster know

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
wow thanx for that site Ian

Joined: Aug 2004
Posts: 173
Member
Member
Offline
Joined: Aug 2004
Posts: 173
I don't know whats up with my site.
My hoster has said nothing is wrong and pointed this out to me
http://www.dnsreport.com/tools/dnsreport.ch?domain=bbc.co.uk

I know this is going off topic, but can anyone help with this problem? This is beyond my skills

Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
ns.bbc.co.uk.[212.58.228.21] needs to be listed with the parent nameserver as a nameserver for your domain. It appears to only be listed with the authoritive and not the parent DNS server.

you can see from your parent that
ns1.thny.bbc.co.uk. [212.58.240.21] [TTL=172800] [UK]
ns1.thls.bbc.co.uk. [132.185.240.21] [TTL=172800] [EU]
ns1.thdo.bbc.co.uk. [212.58.224.21] [TTL=172800] [UK]
ns1.bbc.co.uk. [132.185.132.21] [TTL=172800] [EU]

are your name servers but from the authoritive you get
ns.bbc.co.uk.[212.58.228.21] [TTL=900]
ns1.thls.bbc.co.uk.[132.185.240.21] [TTL=900]
ns1.thdo.bbc.co.uk.[212.58.224.21] [TTL=900]
ns1.thny.bbc.co.uk.[212.58.240.21] [TTL=900]

best I can tell is ns.bbc.co.uk.[212.58.228.21] [TTL=900]
should be ns1.bbc.co.uk. [132.185.132.21] [TTL=172800] [EU]

WARNING: Your SOA (Start of Authority) record states that your master (primary) name server is: ns.bbc.co.uk.. However, that server is not listed at the parent servers as one of your NS records!

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
[]scroungr said:
okay a few questions.. do you have globals turned on or off? does your server allow the super globals $_POST and instead makes you use the obsolete $HTTP_POST_VARS and $HTTP_GET_VARS instead?

about the tables its only when you go into say the features table from what I see... that splits the table the features are lsited on and puts it below the menu you have on the right? try this shopcategory.tmpl and let me know if it fixes it.. I think there was an extra </table> closure... [/]

This is from Josh:
Register globals is "On" and yes, it will accept $_GET and $_POST arrays.

Anyhow, I still am having the exact same issues with the scripts not working and problems with the templates. I HAVE however fixed most of the issues with the templates. The problem was they were breaking my layout and it turns out there were extra closing td, tr, and table tags. I just commented them out so you can see. I've also fixed a bug in the shopitem.tmpl where clicking on the button that says "HERE" gave a 404 error due to the new directory structure (everything being in /ubbthreads/theshop). I also fixed the same bug in the itempreview.tmpl where clicking on "Preview Name" gave the same 404 error, since the form was being sent to /ubbthreads/itempreview.php. I've attached the work on the templates to this post. If anyone could see what's wrong with shopcategory.tmpl:
http://www.laondalatina.com/foros/theshop/shopcategory.php?Cat=&cid=1
I would appreciate it.
Attachments
126614-default.zip (0 Bytes, 17 downloads)

Page 1 of 3 1 2 3

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Posts: 70
Joined: January 2007
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240506)