Page 1 of 1 [ 10 posts ] 

theSPECTRE
Toucan
Toucan

User avatar

Joined: 24 Aug 2004
Gender: Male
Posts: 260
Location: USA PA

18 Jul 2005, 10:42 pm

I know it took php, but i remember someone telling me there was a program called bulliten BB or something


_________________
In this country. You gotta have the money. Then when you get the money you get the power. Then when you get the power, you get the woman.

-Tony Mantanna
-Scarface

Say Good Night to the bad guy - Tony Montana
-Scarface


BitterGeek
Deinonychus
Deinonychus

User avatar

Joined: 5 Jul 2005
Age: 51
Gender: Male
Posts: 349

18 Jul 2005, 10:56 pm

The whole show runs on either PHP-Nuke or PostNuke. There's an intergration module for PHP-Nuke that intergrates this message board. The message board software is phpBB version 2.0.x.



duncvis
Veteran
Veteran

User avatar

Joined: 10 Sep 2004
Age: 49
Gender: Male
Posts: 2,642
Location: The valleys of green and grey

19 Jul 2005, 3:48 am

This site is PHP-Nuke powered. I know Alex has done some tweaks here and there though, and the skin is pretty cool IMO :)


_________________
I'm usually smarter than this.

www.last.fm/user/nursethescreams <<my last.fm thingy

FOR THE HORDE!


Sean
Veteran
Veteran

User avatar

Joined: 3 Apr 2005
Gender: Male
Posts: 3,505

19 Jul 2005, 5:02 am

Dunc,
While you're at it, would you be able to tell us what's causing all the technical problems?



duncvis
Veteran
Veteran

User avatar

Joined: 10 Sep 2004
Age: 49
Gender: Male
Posts: 2,642
Location: The valleys of green and grey

19 Jul 2005, 6:43 am

I f I knew I would Sean, but I don't deal with any programming/maintenance, thats Alex and Mashi's domain. My assumption (which may or may not be correct) - as this site is hoted on a shared server, the load at times recently has been unfavourable to WP, leading to slow response times. The same applies to the SQL database on which threads etc are stored, in addition to which it may be in need of optimising.

Regarding last nights down time, this could be caused by one of two things - either maintenance/upgrading/failure of the server by the hosting company, and the site being subsequently restored from backup, or a change of hosting company with a lag in transfering the DNS record. :)

Dunc


_________________
I'm usually smarter than this.

www.last.fm/user/nursethescreams <<my last.fm thingy

FOR THE HORDE!


BlackLiger
Veteran
Veteran

User avatar

Joined: 21 Apr 2005
Gender: Male
Posts: 1,525
Location: My Posh Leather Chair. England.

19 Jul 2005, 7:03 am

Or Alex messing w the code again :P


_________________
"Where are we going and why are we in this handbasket?"


theSPECTRE
Toucan
Toucan

User avatar

Joined: 24 Aug 2004
Gender: Male
Posts: 260
Location: USA PA

19 Jul 2005, 6:36 pm

oh is there such a thing like PHPBB for just pure HTML ?

I don't mean too sound stupid, I just recently taught myself some HTML this year. So please bare with me. If there's not can one of you guys tell me the best way too make a forum using html?


_________________
In this country. You gotta have the money. Then when you get the money you get the power. Then when you get the power, you get the woman.

-Tony Mantanna
-Scarface

Say Good Night to the bad guy - Tony Montana
-Scarface


alex
Developer
Developer

User avatar

Joined: 13 Jun 2004
Age: 38
Gender: Male
Posts: 10,216
Location: Beverly Hills, CA

19 Jul 2005, 6:40 pm

the site was being transferred to a new server in california. It used to be in virginia.


_________________
I'm Alex Plank, the founder of Wrong Planet. Follow me (Alex Plank) on Blue Sky: https://bsky.app/profile/alexplank.bsky.social


ghotistix
Veteran
Veteran

User avatar

Joined: 2 Feb 2005
Gender: Male
Posts: 1,186
Location: Massachusetts

20 Jul 2005, 2:05 am

theSPECTRE wrote:
oh is there such a thing like PHPBB for just pure HTML ?

I don't mean too sound stupid, I just recently taught myself some HTML this year. So please bare with me. If there's not can one of you guys tell me the best way too make a forum using html?

Plain HTML isn't powerful enough to make a forum. Its purpose is laying out pages in a certain way, but it's pretty lame at collecting and organizing information on the fly, which is what you need for a message board. There's a lot of complex information processing going on in the background of a message board, and PHP is used for that sort of thing.



Nuttdan
WP Co-Founder
WP Co-Founder

User avatar

Joined: 13 Jun 2004
Age: 36
Gender: Male
Posts: 323
Location: White River Junction, VT

11 Aug 2005, 1:15 am

ghotistix wrote:
theSPECTRE wrote:
oh is there such a thing like PHPBB for just pure HTML ?

I don't mean too sound stupid, I just recently taught myself some HTML this year. So please bare with me. If there's not can one of you guys tell me the best way too make a forum using html?

Plain HTML isn't powerful enough to make a forum. Its purpose is laying out pages in a certain way, but it's pretty lame at collecting and organizing information on the fly, which is what you need for a message board. There's a lot of complex information processing going on in the background of a message board, and PHP is used for that sort of thing.


To elaborate, HTML (or xhtml) is used in every website. HTML by itself is just a way to mark up text and lay out a page. You send a request to the server for a particular query string. Traditionally, you'd just have a bunch of files sitting there, and you just put the file name/path in the URL. For a webpage, the server sends you back some headers and the HTML. But on dynamic websites, the HTML is generated on the fly, usually according to what is in a database. It also allows you to work with state information (who's logged in on this computer? etc) and do tasks better suited toward a procedural language than a markup language.

Another common misconception is that things like PHPBB or Nuke (or even PHP itself) are these things that you download onto your computer that you use like a normal program to magically generate your site, which you then upload. In reality, these are scripts that you upload to the server itself which actively respond to things going on with your site.

Learning HTML is a good thing to do, though. Often times when I'm writing web applications, I'll have to think in several languages at once.