message board i built...

This is a discussion on "message board i built..." within the PHP Forum section. This forum, and the thread "message board i built... are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices




Closed Thread
 
LinkBack Thread Tools
  #1  
Old Mar 6th, 2004, 18:40
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
message board i built...

Alright, basically I'm looking for some feedback on the forum I built. Remember, this is a forum that I built that you can download and install on your own site. It's been in development since last september, and i think it's stable enough to go into beta (oxymoron?).

wtcBB 1.0.0 BETA 1

The file is approximately 0.5MB, and it is PHP based. It requires PHP 4.1.0 or higher, and MySQL 3 or higher.

And thank you rob for letting me put this on here! And thanks to anyone who takes the time to give me some feedback!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Mar 6th, 2004, 21:24
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Ok, I've run this locally and we do have a problem it seems...

It creates the tables, etc, and then gets to step 4: Importing style information & templates... Please wait.

an error then appears:
Warning: 5 is not a valid File-Handle resource in d:\web design\apache\wtcbb\includes\functions.php on line 1143

This appears to be in an infinite loop!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Mar 6th, 2004, 23:14
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
ouch that was a bad bug that has effect on php version less than 4.3.0... i was closing the file before i was done reading it!

I've updated the zip if you want to give it a run again..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old Mar 8th, 2004, 09:33
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
Do you have a demo hosted anywhere? I havent got PHP or MySQL installed but i would like to see what you've done!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old Mar 8th, 2004, 10:15
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Ok, when I hit the control panel I get:

Warning: Failed opening 'functions_forums.php' for inclusion (include_path='') in d:\web design\apache\wtcbb\includes\functions_admin.php on line 12

Warning: Invalid argument supplied for foreach() in d:\web design\apache\wtcbb\includes\functions_admin.php on line 576
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old Mar 8th, 2004, 14:48
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
hmmm.. this must not be looking good for me right now... I have only been able to test this under two different environments, both of which worked fine.

I wouldn't understand why that would be messing up... there are a few things that I could try, and i'll update. I'll have to research that problem, as it is probably some sort of directive issues that I have to take into consideration.

But thank you though for notifying me of this.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old Mar 8th, 2004, 17:42
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Best way to learn [:P]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old Mar 8th, 2004, 19:39
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
alright yup, i had found the problem... i was including a file inside a file, and on my server the current directory was the included file, however with your settings it was the directory of the current file. This *should* be fixed.

BTW, i've released a BETA 3 (and the bug is hopefully fixed )

wtcBB 1.0.0 BETA 3

And thank you again for your patience
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #9  
Old Mar 9th, 2004, 00:06
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
I've overwritten all the files inside the includes/ folder except for the config... and this error is still there. If any other files are affected then that's cool, but I'm assuming that they're not?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #10  
Old Mar 9th, 2004, 02:06
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
I'd definitely advise overwriting all files... but yea that should fix the problem

can you include any files using php? i'm just curious, because what i did should fix this problem.

In your error, i notice your include_path is empty... this should at least be a "."

This might be a problem on your end, because my PHP settings are giving me an include_path of ".;c:\php4\pear"

The . would be current directory, and if your include_path is empty.. well, i don't know what could happen.

The only thing I can say, is go to your php.ini, and find include_path and make sure it's something ".;c:\php4\pear" or ".;c:\php\includes"... or even try just a "."

Other then this, I cannot possibly fathom what is wrong. I haven't had anyone else report an error like this, nor would I know how your inlude_path is empty.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #11  
Old Mar 9th, 2004, 08:52
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Ok, that's now sorted, my bad. (the error is gone)

However this still isn't working...

I can't see any of the forums I've added in the Forum Manager or on the Forum itself, despite it telling me that I've added them successfully. *Very confused*
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #12  
Old Mar 9th, 2004, 11:10
Up'n'Coming Member
Join Date: Feb 2004
Location: Woodbridge, UK
Age: 27
Posts: 80
Thanks: 0
Thanked 0 Times in 0 Posts
<blockquote id="quote"><font size="1" face="geneva, verdana, arial" id="quote">quote:<hr height="1" noshade id="quote">Originally posted by Smokie

Do you have a demo hosted anywhere? I havent got PHP or MySQL installed but i would like to see what you've done!
<hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">

It's here dude: http://www.webtrickscentral.com/forums/index.php (which I got by looking at the download URL at the top of this thread!)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #13  
Old Mar 9th, 2004, 15:26
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
When I made this thread, I agreed not to plug my community, thusly that's why I could not provide a demo, so trebz if you could remove that link, it would be appreciated, I don't want to get in any trouble

Man sirkent, I have no idea why you're getting all these problems! *thinks*

Is there any way you can check your database to see if those forums actually exist?

I'm guessing that some of the fields got screwed up, thusly they won't show.

On your first install, could you see the example forums? (There should be two, one is a category, and one is a sub-forum of that category.)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #14  
Old Mar 9th, 2004, 17:59
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
They appear to be in the database (as are the ones I added) but they fail to appear anywhere.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #15  
Old Mar 10th, 2004, 13:47
Up'n'Coming Member
Join Date: Feb 2004
Location: Woodbridge, UK
Age: 27
Posts: 80
Thanks: 0
Thanked 0 Times in 0 Posts
Jam, i'm sure if that link is a problem one of the admins will remove it........<-----awaits slap from admin!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #16  
Old Mar 10th, 2004, 14:28
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
<font color="red">Rob slaps Trebz around a bit with a large trout</font id="red">
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #17  
Old Mar 11th, 2004, 10:25
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
OMG LOL!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #18  
Old Mar 11th, 2004, 10:43
Up'n'Coming Member
Join Date: Feb 2004
Location: Woodbridge, UK
Age: 27
Posts: 80
Thanks: 0
Thanked 0 Times in 0 Posts
Leave the trout slapping in IRC where it belongs :-)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
message, board, built

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
message board defrank Website Planning 10 Feb 3rd, 2008 16:33
php message board - delete inappropriate messages Gabriele PHP Forum 9 Aug 26th, 2007 13:01
Planning a site built on a CMS. Ed Website Planning 5 Aug 23rd, 2007 20:11
Message board on site GOMAR2 Starting Out 5 Mar 15th, 2007 17:35
Non-threaded message board kevindosi PHP Forum 1 Apr 26th, 2006 16:43


All times are GMT. The time now is 02:28.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42