Your website Thread

Off topic chat. Basically anything that doesn't concern halo or halo modding can go here.
User avatar
snakejknight




Trickster Wave Pyre Wordewatician 500

Posts: 693
Joined: Sun Jun 04, 2006 1:00 pm
Location: North Hollywood California

Post by snakejknight »

i got a couple

for hosting (supermodder uses this)
Ciraxx.com

and

BestVids
User avatar
Snave




Socialist Designer Golden Age Bloodhound
Illusionist Commentator

Posts: 1161
Joined: Sun Jul 25, 2004 5:46 am
Location: United Kingdom
Contact:

Post by Snave »

gh0570fchurch wrote:I think having bad spelling in your advertisement is going to be a big turn-off for most people that might otherwise be interested.
Lol.. true.
User avatar
Prey




Connoisseur Snitch! Pyre Articulatist 500

Posts: 1026
Joined: Wed Dec 27, 2006 6:49 am
Location: UK
Contact:

Post by Prey »

Andrew_b wrote:HaloDocs 2.0 (need to reregister)

http://www.halodocs.com/forum/index.php

we hope you like the new forums, we had many complaints that the original looked too much like halomods...so we changed that. many other problems fixed, we hope everyone stops by to see how they like the new forums.

(Tural reregister!! :P)
The original didn't look anywhere near as good as halomods, and this new skin is just frankly, horrible :?
Xiion wrote:ill change the font to make white text fit better. i forgot how to center it. dreamweaver doesn't have that option apparently.
Yes it does..
Skin is terrible, as is the lengthy url.
Th2mods wrote:[...]
http://gearsofwar.ulmb.com/

(yes i know that ad is the worsed one you have seen, but it does the job :D )
Spelling mistake is just disgusting >_>

I'm still designing my 'portfolio website', but I was wondering if anyone would know how exactly to use the phpbb board post parser on a homepage? As in, I've got the phpbb forums, and I have an announcement topic in the forums. That post is then viewable on my homepage.. but it's messed up because it isn't parsed properly (no newlines, and smilies just stay in text-form).. so anyone knowledgable in this area? My php skillz don't extend that far yet >_>

If you want to help feel free to hit me up on AIM, or just post here, your choice..
Halo 2 Prophet - Skin with ease with the simple 3D point and click interface.
Halo 3 Research Thread - Contribute to the research into Halo 3.
User avatar
Death~John





Posts: 366
Joined: Sat Dec 09, 2006 7:57 pm
Location: "Make love, not war. Condoms are cheaper than guns" - Tilda Swinton
Contact:

Post by Death~John »

Prey wrote:
Andrew_b wrote:HaloDocs 2.0 (need to reregister)

http://www.halodocs.com/forum/index.php

we hope you like the new forums, we had many complaints that the original looked too much like halomods...so we changed that. many other problems fixed, we hope everyone stops by to see how they like the new forums.

(Tural reregister!! :P)
The original didn't look anywhere near as good as halomods, and this new skin is just frankly, horrible :?
We give you several (12) different ones to chose from.
User avatar
Prey




Connoisseur Snitch! Pyre Articulatist 500

Posts: 1026
Joined: Wed Dec 27, 2006 6:49 am
Location: UK
Contact:

Post by Prey »

Death~John wrote:We give you several (12) different ones to chose from.
Ok, let me re-word that: Your new forum layout, I dislike. It is too heavily crowded with different categories (some unneeded), and the whole gradient thing everywhere is just annoying (reminds me of riemers forums..ugh...). The 12 choices of colour does not really help much with it either.

..btehw, my question still stands Image
Halo 2 Prophet - Skin with ease with the simple 3D point and click interface.
Halo 3 Research Thread - Contribute to the research into Halo 3.
User avatar
Death~John





Posts: 366
Joined: Sat Dec 09, 2006 7:57 pm
Location: "Make love, not war. Condoms are cheaper than guns" - Tilda Swinton
Contact:

Post by Death~John »

My clan did it, ill ask them for you.


EDIT:

Try this:

Code: Select all

    case "home":
          {
                mysql_connect ("--", "--", "--");
                mysql_select_db ("--") or die(mysql_error());
                $forumid= "3";
                
                $topics = mysql_query ("SELECT * FROM phpbb_posts INNER JOIN phpbb_posts_text ON phpbb_posts.post_id = phpbb_posts_text.post_id INNER JOIN phpbb_topics ON phpbb_posts.post_id = phpbb_topics.topic_first_post_id WHERE phpbb_posts.forum_id = " . $forumid . " ORDER BY post_time DESC") or die(mysql_error());
                
                while($row = mysql_fetch_array($topics))
                {
                  echo "<blockquote><h2 class='style21'>" . $row['post_subject'] . "</h2><p>" . $row['post_text'] .
                  "</p></blockquote><hr />";
                }
                mysql_close();
             break;
          }case "home":
      {
            mysql_connect ("--", "--", "--");
            mysql_select_db ("--") or die(mysql_error());
            $forumid= "3";
            
            $topics = mysql_query ("SELECT * FROM phpbb_posts INNER JOIN phpbb_posts_text ON phpbb_posts.post_id = phpbb_posts_text.post_id INNER JOIN phpbb_topics ON phpbb_posts.post_id = phpbb_topics.topic_first_post_id WHERE phpbb_posts.forum_id = " . $forumid . " ORDER BY post_time DESC") or die(mysql_error());
User avatar
Prey




Connoisseur Snitch! Pyre Articulatist 500

Posts: 1026
Joined: Wed Dec 27, 2006 6:49 am
Location: UK
Contact:

Post by Prey »

Erm, you actually posted the same code pretty much twice there:

Code: Select all

    case "home":
          {
                mysql_connect ("--", "--", "--");
                mysql_select_db ("--") or die(mysql_error());
                $forumid= "3";
                
                $topics = mysql_query ("SELECT * FROM phpbb_posts INNER JOIN phpbb_posts_text ON phpbb_posts.post_id = phpbb_posts_text.post_id INNER JOIN phpbb_topics ON phpbb_posts.post_id = phpbb_topics.topic_first_post_id WHERE phpbb_posts.forum_id = " . $forumid . " ORDER BY post_time DESC") or die(mysql_error());
                
                while($row = mysql_fetch_array($topics))
                {
                  echo "<blockquote><h2 class='style21'>" . $row['post_subject'] . "</h2><p>" . $row['post_text'] .
                  "</p></blockquote><hr />";
                }
                mysql_close();
             break;
          }

Code: Select all

case "home":
      {
            mysql_connect ("--", "--", "--");
            mysql_select_db ("--") or die(mysql_error());
            $forumid= "3";
            
            $topics = mysql_query ("SELECT * FROM phpbb_posts INNER JOIN phpbb_posts_text ON phpbb_posts.post_id = phpbb_posts_text.post_id INNER JOIN phpbb_topics ON phpbb_posts.post_id = phpbb_topics.topic_first_post_id WHERE phpbb_posts.forum_id = " . $forumid . " ORDER BY post_time DESC") or die(mysql_error());
Anyway that is pretty much what I do have right now, my point is it doesn't parse the text (newlines, smilies stay in text-form) because the code doesn't utilize the phpbb boards post parser. So I was wondering if anyone knew how to do that bit, as I haven't really had the time to look into how the phpbb board goes together yet.
Halo 2 Prophet - Skin with ease with the simple 3D point and click interface.
Halo 3 Research Thread - Contribute to the research into Halo 3.
CRAZYCLOwN13





Posts: 35
Joined: Wed Jun 06, 2007 9:38 am

Post by CRAZYCLOwN13 »

here's my site. Its has everything. Plus i lead a pro modding team out of it(no one but the team really uses it), but enjoy:

http://forums.beatdownmods.com/
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Post by FleetAdmiralBacon »

Image

I finally got my domain name up and running.
Everything on the site is run off of a box in my den.
Total cost: $9 / year for the domain, $0 for the DNS entries, $0 for the software, and because said box was rescued from a horrible fate of trashing, $0 for the hardware.

I've got everything, just need to finish the site itself.
Apache 2, PHP 5, MySQL 5, Postfix, Dovecot (IMAP), even a Pandemic server (or the Pandemic server)
If you're interested in an email account (with IMAP access, I'll be adding POP3 and a webmail interface later), PM me. For a limited time, I'll be giving them out.
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
User avatar
Th2mods
Readers Club





Posts: 1229
Joined: Mon Jan 08, 2007 5:54 pm
Location: Salt Lake City, Utah
Contact:

Post by Th2mods »

Image
http://gearsofwar.ulmb.com/

fixed ad :) maybe that will change peoples mind.
Image
User avatar
Danke




Wordewatician 500 Mad Hatter

Posts: 2256
Joined: Sun Nov 02, 2003 7:44 pm

Post by Danke »

WOOP WOOP. Halomods Treeview is back.
Image
Click the image, yo!

Brought to you by GMP's h4xmb.net
Image
Supermodder911




Connoisseur Coroner

Posts: 1262
Joined: Sun Sep 03, 2006 10:43 pm
Location: Michigan

Post by Supermodder911 »

cool, Does anyone like my template at www.gamingexperience.ciraxx.com/forums
Image
C Wizzle
ScottMiller





Posts: 19
Joined: Mon May 28, 2007 4:33 pm

Halo 3 Pics And vids

Post by ScottMiller »

Heres Mine. It's For All Of you to post YOur Halo 3 Pics And Vids.

halo3pics.freeforums.org

Enjoy!!
Image

Only The Strong and Faithful Will Survive
Supermodder911




Connoisseur Coroner

Posts: 1262
Joined: Sun Sep 03, 2006 10:43 pm
Location: Michigan

Post by Supermodder911 »

Is there a payper guest type of thing around thats free?
Image
C Wizzle
User avatar
snakejknight




Trickster Wave Pyre Wordewatician 500

Posts: 693
Joined: Sun Jun 04, 2006 1:00 pm
Location: North Hollywood California

Post by snakejknight »

Supermodder911 wrote:Is there a payper guest type of thing around thats free?
yes-ish

if you mean u get money everytime someone visits ur site, check out paypopup.com

otherwise idk

anyway i got a new site up, i think some of you may realy like it, i'll host phbb v3 forums 100% free, check it out [Click Here]
ic3fire





Posts: 6
Joined: Sat Sep 09, 2006 5:01 pm

pl ease 1 more person!!

Post by ic3fire »

User avatar
CptnNsan0




Stylist Snitch! Collaborator Commentator

Posts: 1904
Joined: Thu Jun 15, 2006 5:49 am
Location: Durham, NC

Post by CptnNsan0 »

cool snake. I signed up but how do I log in?
Image
Not Removing This
User avatar
Th2mods
Readers Club





Posts: 1229
Joined: Mon Jan 08, 2007 5:54 pm
Location: Salt Lake City, Utah
Contact:

Post by Th2mods »

Advertise your site OR chat room for free! Here now, just register and post! http://advertise.ulmb.com
Image
Guest





Posts: 1098
Joined: Mon Jul 02, 2007 10:52 am
Location: xbox
Contact:

Post by Guest »

kduk


kduk is the best radio station EVA!!!! i love it they play rock rap pop all that stuff its awesome theres a listen live link. i am lucky i am just in radio range of the station.

if you like rock rap or lots of jokes while the guys are talking i suggest listening to the station and give it a chance.
Image
thanks for the sig dagger12 ill give you something someday, maybe.
User avatar
Corvette19




Snitch!

Posts: 1191
Joined: Wed Jun 21, 2006 6:05 am
Location: South Carolina

Post by Corvette19 »

Xfire = corvette19
WaeV wrote:Mess around with stuff, make exceptions, get messy! Do something we've never seen before.
Post Reply