Warcraft III resources & community, 2003–2006 · archived

www.wc3sear.ch isnt alone anymore

23 posts
#1

www.wc3sear.ch isnt alone anymore

lets celebrate the new sisterpage to wc3sear.ch called:
<u>World of Warcraft Knowledgebase</u>
you'll find the webpage under the new cool URL:
http://www.wowledgebase.com/
#2
Woo :)
#3
What an incredibly well-structured, informative post, Acolyte! :wink:

Anyway, I really don't think there was a whole lot of need for another WoW site. There are already tons out there. I'm sure there won't be much competition with WoW's own knowledge base, but one can only hope. Looks like you've got a mess on your hands with some of the code and layout - I'd be happy to help you out with that if you need it, just drop me a line.
#4
Nice layout :)


When will everything be up? I want those damned wallpapers >.<
#5
All the wallpapers are on the official WoW site.
#6
i wont be buying any games for the coming years..so im definitivly not interesting in wow..
but the website is nicely made, profesionnal looking layout, everything is clean, good job on making it look like that
#7
Well, when WoW kicks off, no doubt that site will gain a lot more traffic and require much more attention, especially knowing that you are the head hancho over there. But when that happens, be sure to still stop by here once and a while and say ``hello`` from time to time and don`t become a stranger to your own wc3 site, k?
-VGsatomi
#8
Even if it's over a BILLION WoW sites out there. Darky28 will have the best one!
I love the lyout. And i "love" your skills Darky ;)
k33p up th3 g00d w0rk :wink:
#9
I wont abadon one of my pages :-)
wc3search is still my favourite page and i visit it every day a couple of times
#10
aaaww... nice :?
#11
Darky28I wont abadon one of my pages :-)
wc3search is still my favourite page and i visit it every day a couple of times



WROOOOONG ANSWER!!! It is good that you won't abanadon this site but! YOU ARE VISITING IT EVERY DAY A COUPLE OF TIMES??... That means you doens't speand so much time on ROTD? Plz hurry and fix that Campaign! I waited from the first campaign till now! GOOD DAMMIT! :D
#12
Cool Darky. I hope the WoW site will be as awsome as this one :D :D :D
#13
arrr! no site can beat worldofwar.net! 8)
#14

Re: www.wc3sear.ch isnt alone anymore

Darky28lets celebrate the new sisterpage to wc3sear.ch called:
<u>World of Warcraft Knowledgebase</u>
you'll find the webpage under the new cool URL:
http://www.wowledgebase.com/


man, u didn't listen to the scores of valued members who consistently tried to persuade you to not do this instead you listened to the n00bs? *sigh*
#15
Your page does not validate as xhtml 1.1 ;)

If you write in xhtml now, I would also output it as xhtml, not as html (of course only if the user agent supports xhtml), by doing this here:

//check if browser is able to parse xhtml
$xhtml = false;
$check_pattern = '|application/xhtml\+xml(?!\s*;\s*q=0)|';

if (($_SERVER['SERVER_PROTOCOL'] == 'HTTP/1.1') and isset($_SERVER['HTTP_ACCEPT']) and preg_match($check_pattern, $_SERVER['HTTP_ACCEPT'])) {
	$xhtml = true;
}
//some older geckos display xhtml not correct, so give them text/html
if(isset($_SERVER['HTTP_USER_AGENT'])) {
	if(preg_match('|rv\:0.9|', $_SERVER['HTTP_USER_AGENT'])) {
    	$xhtml = false;
    }
}
$contenttype = $xhtml ? 'application/xhtml+xml' : 'text/html';

header('Content-Type: '.$contenttype.'; charset=utf-8');
header('Vary: Accept');



I hope I could help ;)