Welcome, Guest. Please Login or Register
Welcome To Ask The Trades!
Apr 29th, 2024, 5:27pm
Quote: If you want the rainbow, you got to put up with the rain.


Pages: 1 
Send Topic Print
red crosses (Read 25131 times)
scotspark
Trade Member
*****
Offline

mmmmm it's gonna cost
you!!
Posts: 3074


Total Thanks: 10
For This Post: 0


scotland, Scotland
scotland
Scotland

Gender: male

Trade: Electrician



red crosses
Jan 5th, 2006, 11:19am
 
what are the red crosses on the Right hand side of the diy and public forums???????????????????????
Back to top
 

brown to red and blue to f****&&&&ommited!!!!!!!!!!!!!!!!!!!!!!!!!!!
Thank User For This Post View members image gallery  
IP Logged
 
thescruff
Global Moderator
Trade Member
Author
*****
Offline

Who said plumbing was
easy.
Posts: 6037


Total Thanks: 147
For This Post: 0


Gender: male

Trade: Plumber



Re: red crosses
Reply #1 - Jan 5th, 2006, 11:25am
 
[quote author=scotspark  link=1136459954/0#0 date=1136459954]what are the red crosses on the Right hand side of the diy and public forums??????????????????????? [/quote]


This feature is not functioning yet - Ask Lectrician for details!

??? ??? ???
Back to top
 
Thank User For This Post View members image gallery  
IP Logged
 
Lurch
Re: red crosses
Reply #2 - Jan 5th, 2006, 11:59am
 
Should this not be in 'The Forum' section?
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #3 - Jan 5th, 2006, 7:47pm
 
Lec cant work out a simple IF statement Wink Wink, its eventually gonna allow you to toggle the new picture thingies display on/off.

btk(asked Lectrician for details!)
Back to top
« Last Edit: Jan 5th, 2006, 7:48pm by billythekid »  
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #4 - Jan 5th, 2006, 7:48pm
 
and consider it done Lurch... lol



btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #5 - Jan 5th, 2006, 8:19pm
 
Lectrician has mastered the if, or and ands Wink

He has written the code, and is ready to upload - the one thing he hasn't sorted, which bugs him is:

-when you click the red cross to hide the pics, if you are at the bottom of the index (in respect of scroll), once clicked, you jump to the top - everything works A-OK, this little thing just bugs me.

Also, need to add some code so when (if ever) we delete forum categories (trade, public, diy), the data still remains in the users profile.  This needs to be removed as categories are removed - not hugely important just now.

OK - will upload script soon!
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #6 - Jan 5th, 2006, 8:21pm
 
OK - uploaded and working.

Turn the images on and off at your own pleasure!


If anyone is interested - here is the PL file I have had to write - called IndexImage.pl

Code:
sub picstat{



#find out if the user currently has this catagories board pictures hidden or displayed.


$curcat = $INFO{'cat'};
if (-e "$memberdir/$username.img" ) { require "$memberdir/$username.img"; }
if ($removepic{$curcat} eq "1"){

#we now need to delete the entry from the users .img file to turn pics for this category off.

fopen(FILE, "$memberdir/$username.img");
@userimg = <FILE>;
fclose(FILE);
chomp @userimg;
my @newuserimg = ();
foreach $userimgdat(@userimg) {
chomp $userimgdat;
$compare="removepic{'$curcat'}";
unless ( index($userimgdat, $compare) != -1 ){push (@newuserimg, $userimgdat);}
}
chomp @newuserimg;
fopen(FILE, ">$memberdir/$username.img");
foreach $newuserimgdat(@newuserimg) {
chomp $newuserimgdat;
print FILE "$newuserimgdat\n";
}
fclose(FILE);

$yySetLocation = qq~$cgi~;
&redirectexit;

}else{

#we now need to add the entry to the users .img file to turn the pics for this category on.

fopen(FILE, "$memberdir/$username.img");
@userimg = <FILE>;
fclose(FILE);
chomp @userimg;

#check to make sure the user has a .img file. If not, create array template ready to add strings.

if ($userimg[0] eq ""){
push (@userimg, "#users board image dat. If listed, the categories board images will not be displayed\n");
push (@userimg, "1;\n");
}

# # # # # #

foreach $userimgdat(@userimg) {
chomp $userimgdat;
unless ( index($userimgdat, '#users') != -1 ){push (@newuserimg, $userimgdat);}
}
$newentry=qq~\$removepic{'$curcat'}="1";~;
unshift (@newuserimg, $newentry);
fopen(FILE, ">$memberdir/$username.img");
print FILE "#users board image dat. If listed, the categories board images will not be displayed\n";
foreach $newuserimgdat(@newuserimg) {
chomp $newuserimgdat;
print FILE "$newuserimgdat\n";
}
fclose(FILE);

$yySetLocation = qq~$cgi~;
&redirectexit;
}

}

1;
Back to top
« Last Edit: Jan 5th, 2006, 8:24pm by Lectrician »  

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #7 - Jan 5th, 2006, 8:27pm
 
http://www.askthetrades.co.uk/cgi-bin/yabb/YaBB.pl#Public

instead of

http://www.askthetrades.co.uk/cgi-bin/yabb/YaBB.plcat=Public

or whatever the variable strings are for that.(the link from public etc at the top of each board/topic page.)

Wink

btk
Back to top
« Last Edit: Jan 5th, 2006, 8:29pm by billythekid »  
Thank User For This Post  
IP Logged
 
hammy
Trade Member
*****
Offline

Deep joy
Posts: 3063


Total Thanks: 8
For This Post: 0


Gender: male

Trade: Decorator



Re: red crosses
Reply #8 - Jan 5th, 2006, 8:30pm
 
I need a paracetamol.    ???
Back to top
 

Deep joy
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #9 - Jan 5th, 2006, 8:34pm
 
[quote author=billythekid  link=1136490510/0#7 date=1136492830]http://www.askthetrades.co.uk/cgi-bin/yabb/YaBB.pl#Public

instead of

http://www.askthetrades.co.uk/cgi-bin/yabb/YaBB.plcat=Public

or whatever the variable strings are for that.(the link from public etc at the top of each board/topic page.)

Wink

btk [/quote]


That would depend where you clicked - so would need to carry the info from click into script, keep it as a string in script, and place string into redirect sub.

Umm - not tonight......

Wink
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #10 - Jan 5th, 2006, 8:41pm
 
In fact - this may take a while longer to sort.

The cat string is actually already carried into the script, this his how it can save the data to make sure the pic for that cat is not displayed.

The difficulty will be that although the YaBB.pl#public will take the script back to the top of the public board, perl scripts see the # as a marker for plain test for writting headers/reminders etc in the script.  It ignores everything on that line after the hash.

Even if I try to make a string which contains the hash as an HTML element, it marks it as invisible to the coding.

Umm........
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #11 - Jan 5th, 2006, 8:43pm
 
"put #it# in #quotes#"


btk
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #12 - Jan 5th, 2006, 8:50pm
 
or i dont know if you have an evaluate identifier but if i was scripting that in my native language i could use $eval(#,0) i.e evaluate whats in the brackets zero times

which would probably be $eval($chr(35),0) since character 35 evaluates to #.

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #13 - Jan 5th, 2006, 8:51pm
 
Tried that - either the YaBB sub doesn't like it, or Perl.

Looking at javascript go back command, but interfacing that to perl isn't easy either.

Will get there....



It's only a niggle anyway - once clicked, you aint going to be clicking everyday - usually!
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #14 - Jan 5th, 2006, 8:51pm
 
Sorry Hammy  Cheesy

btk
Back to top
 
Thank User For This Post  
IP Logged
 
LSpark
Global Moderator
Trade Member
Author
*****
Offline


Posts: 8069


Total Thanks: 3
For This Post: 0


London, UK, United Kingdom
London, UK
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #15 - Jan 5th, 2006, 8:54pm
 
[quote author=Lectrician  link=1136490510/0#6 date=1136492518]Turn the images on and off at your own pleasure! [/quote]
But but but

Quote:
An Error Has Occured!

You are not allowed to access this section.
Please register an account, or contact an administrator
if you feel this is an error.

Lips Sealed
Back to top
 
Thank User For This Post View members image gallery  
IP Logged
 
Lurch
Re: red crosses
Reply #16 - Jan 5th, 2006, 8:59pm
 
*cough* dodgy software *cough*

Wink Grin
Back to top
 
Thank User For This Post  
IP Logged
 
LSpark
Global Moderator
Trade Member
Author
*****
Offline


Posts: 8069


Total Thanks: 3
For This Post: 0


London, UK, United Kingdom
London, UK
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #17 - Jan 5th, 2006, 9:03pm
 
Dodge something, must be the pizza! *pukes*
Back to top
 
Thank User For This Post View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #18 - Jan 5th, 2006, 9:04pm
 
LMFAO superb, if your not being blocked from PM links you are being blocked by regular in-forum ones!! ever think someone has it in for you LS?

btk
Back to top
« Last Edit: Jan 5th, 2006, 9:04pm by billythekid »  
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #19 - Jan 5th, 2006, 9:07pm
 
Had another idea Lec although pardon my ignorance of HTML before i begin! could there be a page set up with the two addresses that dont send you to the right frames that are simply redirect pages?

not a fix but a workaround maybe??

I am guessing NOT since theres no 404 with it...

btk
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #20 - Jan 5th, 2006, 9:11pm
 
or maybe yes since all ?cat= 's return you to the homepage i.e
http://www.askthetrades.co.uk/cgi-bin/yabb/YaBB.pl?cat=btk
there is a script somewhere intercepting(or not??)

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #21 - Jan 5th, 2006, 9:15pm
 
[quote author=LSpark  link=1136490510/15#15 date=1136494492]
But but but

Lips Sealed [/quote]


Where did that error come from LS??
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #22 - Jan 5th, 2006, 9:18pm
 
from here

Grin Grin

btk
Back to top
« Last Edit: Jan 5th, 2006, 9:18pm by billythekid »  
Thank User For This Post  
IP Logged
 
hammy
Trade Member
*****
Offline

Deep joy
Posts: 3063


Total Thanks: 8
For This Post: 0


Gender: male

Trade: Decorator



Re: red crosses
Reply #23 - Jan 5th, 2006, 9:26pm
 
WTF   ???

I must have fell asleep and woke up on the planet Zog.

Forget the paracetamol, I'm off for a very large Balvenie.
Back to top
 

Deep joy
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #24 - Jan 5th, 2006, 9:27pm
 
Now I am lost - why are you trying to view a board called lectrician ???

Wooosh.....over my head.....must have missed something!?!
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
LSpark
Global Moderator
Trade Member
Author
*****
Offline


Posts: 8069


Total Thanks: 3
For This Post: 0


London, UK, United Kingdom
London, UK
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #25 - Jan 5th, 2006, 9:28pm
 
[quote author=billythekid  link=1136490510/15#18 date=1136495052]LMFAO superb, if your not being blocked from PM links you are being blocked by regular in-forum ones!! ever think someone has it in for you LS?

btk [/quote]
Yep, that and the pizza, it's ever since looking at that picture  Wink

[quote author=Lectrician  link=1136490510/15#24 date=1136496465]Now I am lost - why are you trying to view a board called lectrician ???

Wooosh.....over my head.....must have missed something!?! [/quote]
I don't frigging know, there I was snooping around, minding my own business and then it hit me, no access to room 101..  Grin

No.. actualy it happened when I turned both picture sets off via tab, and then tried to return to this thread via the last post posted bottom of index..

btw lecc, anything else constitutes something billy said, nothing to do with me!
Back to top
« Last Edit: Jan 5th, 2006, 9:32pm by LSpark »  
Thank User For This Post View members image gallery  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #26 - Jan 5th, 2006, 9:29pm
 
I really am lost - PM's blocked.....eh??
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #27 - Jan 5th, 2006, 9:53pm
 
lmfao, i dont think i'll explain just to keep you in this state, keeps postings up... lol

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lurch
Re: red crosses
Reply #28 - Jan 5th, 2006, 9:59pm
 
Yeah, easy peasy. Can't understand why you haven't done it. Wink
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #29 - Jan 5th, 2006, 10:01pm
 
[quote author=Lurch  link=1136490510/15#28 date=1136498370]Yeah, easy peasy. Can't understand why you haven't done it. Wink [/quote]
I'd say green, but I would have thought that obvious.

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lurch
Re: red crosses
Reply #30 - Jan 5th, 2006, 10:05pm
 
No need to thank me.  Lips Sealed
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #31 - Jan 5th, 2006, 10:20pm
 
only when it rains! lol (sorry, sometimes when it's just moist too)

btk  8)
Back to top
 
Thank User For This Post  
IP Logged
 
Lurch
Re: red crosses
Reply #32 - Jan 5th, 2006, 10:27pm
 
/squelch
Back to top
 
Thank User For This Post  
IP Logged
 
Scrit
Re: red crosses
Reply #33 - Jan 5th, 2006, 10:32pm
 
Funny - I spent years trying to get AWAY from the IT industry. Find myself a good TRADES forum, and whammo!, up to my ears in quiche and sandals talk. Have you ever had that feeling of deja vu?..... Grin Grin

Scrit
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #34 - Jan 5th, 2006, 10:54pm
 
my mate has a theory on deja vu. something to do with the brain having long term memory and short term memory and deja vu is when you take something in to your long term memory that should have gone in short term memory by short-circuit or whatever.

btk
Back to top
 
Thank User For This Post  
IP Logged
 
hammy
Trade Member
*****
Offline

Deep joy
Posts: 3063


Total Thanks: 8
For This Post: 0


Gender: male

Trade: Decorator



Re: red crosses
Reply #35 - Jan 5th, 2006, 11:54pm
 
I have a strange feeling that you have already said that.  Undecided
Back to top
 

Deep joy
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #36 - Jan 6th, 2006, 7:35am
 
Joys of IT.....


LS found a bug - If you turn pics off, you then can't use the last post feature at the bottom of the index screen - not sure why yet - will look at that later.

Have removed the buttons for a but, until it is sorted!
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
Lurch
Re: red crosses
Reply #37 - Jan 6th, 2006, 12:07pm
 
Git, I have never ever used the last 20 posts thing so for me, everything was hunky dory until I logged on today. Sad

How about using a decent board, you might get more people using it if it isn't so clunky and awkward. Smiley
Back to top
« Last Edit: Jan 6th, 2006, 12:07pm by Lurch »  
Thank User For This Post  
IP Logged
 
JerryD
Re: red crosses
Reply #38 - Jan 6th, 2006, 1:18pm
 
[quote author=billythekid  link=1136490510/0#12 date=1136494254]or i dont know if you have an evaluate identifier but if i was scripting that in my native language i could use $eval(#,0) i.e evaluate whats in the brackets zero times

which would probably be $eval($chr(35),0) since character 35 evaluates to #.

btk [/quote]


Yes, I was thinking along these lines....  ??? ??? ???

or perhaps ωΔη±ξ⅞Λ + τΣρτΠΥ since character 89 = κΛΓψΨΦΣ divided by the number of tiles on my roof

Signed:  JerryD (bricklayer)  Roll Eyes
Back to top
 
Thank User For This Post  
IP Logged
 
TIMBA-WOLF
Board Moderator
*****
Offline

Timba-Wolf..... Var@*sh,
should be banned!!
Posts: 7158


Total Thanks: 15
For This Post: 0


KENT,(under a tree!!!!), United Kingdom
KENT,(under a tree!!!!)
United Kingdom

Gender: male

Trade: Joiner



Re: red crosses
Reply #39 - Jan 6th, 2006, 2:04pm
 
[quote author=JerryD  link=1136490510/30#38 date=1136553501]




or perhaps ωΔη±ξ⅞Λ + τΣρτΠΥ since character 89 = κΛΓψΨΦΣ divided by the number of tiles on my roof

Signed:  JerryD (bricklayer)  Roll Eyes [/quote]

if you don't stop swearing, they will mod ya dear chap!!!LOL Grin
Back to top
 

AS HONEST AND LOYAL AS THE TIMBER-WOLF. --VAR@*SH, DON'T YOU SWEAR AT ME!! PAL!!&&I DON'T SUFFER FROM INSANITY- I DAMNED WELL ENJOY IT!!!!!
Thank User For This Post View members image gallery  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #40 - Jan 6th, 2006, 4:32pm
 
[quote author=Lurch  link=1136490510/30#37 date=1136549235]Git, I have never ever used the last 20 posts thing so for me, everything was hunky dory until I logged on today. Sad

How about using a decent board, you might get more people using it if it isn't so clunky and awkward. Smiley [/quote]


I know you dis-like our software lurch, but the biggest thing with this website is that it is run as cheaply as possible.  The server is in a loft, and all the software that is running is free.  Other forums may be free, but require a platform that costs....

YaBB works well, and the newer 2.1 version is extremely fast, and less buggy - maybe we will move over to that at some point.....

In the mean time, most of the alterations to the forum have been coded by hand - this last pic button mod is the latest example - and I can't get it right everytime Grin
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #41 - Jan 6th, 2006, 4:59pm
 
didnt i suggest a move to v2 last year??  pull yer finger out man! lol

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #42 - Jan 6th, 2006, 5:05pm
 
LOL - Yabb 2 actually has less features build in from standard - many of the things we use on this board are not available on yabb2 yet - it is best to wait until some mods have been written, and tested, before changing.



Bug fixed on pic buttons - a clash of global board and cat strings.  Buttons back and working.  Also managed to set the HTML anchor hashes to return back tot he top of the category where you clicked the button, although I still want to use javascript to make it return, as this will return you to exactly the same position of scroll......
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
Lurch
Re: red crosses
Reply #43 - Jan 6th, 2006, 5:51pm
 
[quote author=Lectrician  link=1136490510/30#40 date=1136565150]I know you dis-like our software lurch, but the biggest thing with this website is that it is run as cheaply as possible.  The server is in a loft, and all the software that is running is free.  Other forums may be free, but require a platform that costs.... [/quote]

I know, I just feel the urge to point it out every now and again. Wink

Excellent job being done, despite the software. Grin
Back to top
 
Thank User For This Post  
IP Logged
 
billythekid
Trade Member
*****
Offline

I love YaBB 1G - SP1!

Posts: 3402


Total Thanks: 0
For This Post: 0



Trade: Plumber

Re: red crosses
Reply #44 - Jan 9th, 2006, 4:53am
 
http://reg.imageshack.us/content.php?page=syndicate

how about that on the post pages to make uploading pictures easier for guests/regulars. would help with diagnosing problems and things as well as convenient for us to put our funnies!

btk
Back to top
 
Thank User For This Post  
IP Logged
 
Lectrician
Administrator
Trade Member
Author
*****
Offline

Ask The Trades
Posts: 8814


Total Thanks: 109
For This Post: 0


Braunton, North Devon, United Kingdom
Braunton, North Devon
United Kingdom

Gender: male

Trade: Electrician



Re: red crosses
Reply #45 - Jan 9th, 2006, 7:20am
 
That is something I have looked at recently Smiley

Will look a little closer - atleast with the image shack uploader the pic is stored on their server, not ours - we need all the bandwidth we can get!
Back to top
 

Need to post a picture? Click HERE for info!
Thank User For This Post WWW View members image gallery  
IP Logged
 
Pages: 1 
Send Topic Print