Previous Thread
Next Thread
Print Thread
Rating: 16
Page 1 of 3 1 2 3
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Mod Name / Version: Inline Images 3.1

Description: This hack will display the attached image in the body of the post, provided that the attachment contains the correct extensions (jpg,gif,png).
The Photo will appear below the body of the message. It will also be constrained to a maximum width that you define, to avoid large images being posted and messing up your layout.
There is also a config switch to disable inline photo viewing for unregistered visitors.

Version 3.1 - fixes a bug where the on/off for anonymous users was not working correctly.

Working Under: UBB.Threads 6.2-6.3

Mod Status: Finished

Any pre-requisites: none

Author(s): JustDave, ExcelsiorDDZ, JoshPet

Date: 04/27/03

Credits: JoshPet suggested and JustDave developed for version 5.
ExcelsiorDDZ modified for version 6. JoshPet revised instructions for version 6.1 and 6.2.
JoshPet added the image width constraint ability. JoshPet added the switch for anon viewers.
Many others have worked on variations of this over time.

Files Altered: showflat.php, showthreaded.php

New Files: none

Database Altered: none

Info/Instructions: Version 2 adds an option to constrain the width of the attachment thus protecting your layout.
Version 3 adds a config switch to hide inline images from unregistered users and save your bandwidth.


Attachments
77859-InlinePhotosv3.1.txt (0 Bytes, 541 downloads)

Last edited by JoshPet; 10/07/2003 12:38 AM.
Sponsored Links
Joined: Oct 2002
Posts: 64
Power User
Power User
Offline
Joined: Oct 2002
Posts: 64
small change for josh modification

It`s show
1) images
2) images as link (open in new window ) when filewidth > $config['max_width']
3) button to attachment in body and open in new window



Open showflat.tmpl

find

<font class="small">
<a name="#{$postrow[$i]['Number']}">#{$postrow[$i]['Number']} - {$postrow[$i]['time']} <i>{$postrow[$i]['IP']}</i> {$postrow[$i]['filelink']}
</font>

change for this

<font class="small">
<a name="#{$postrow[$i]['Number']}">#{$postrow[$i]['Number']} - {$postrow[$i]['time']} <i>{$postrow[$i]['IP']}</i>
</font>


find

{$postrow[$i]['Body']}
{$postrow[$i]['Signature']}
{$postrow[$i]['PrintLastEdit']}

change for this
{$postrow[$i]['Body']}<br /><center>
{$postrow[$i]['filelink']}</center>
{$postrow[$i]['Signature']}
{$postrow[$i]['PrintLastEdit']}


Open

showflat.php find Josh code :



if ($File) {
$File = rawurlencode($File);
if (!$downloads) { $downloads = "0"; }
$postrow[$i]['filelink'] = "<a href="{$config['phpurl']}/download.php?Number=$Number">{$ubbt_lang['FILE_ATTACH']}</a> ($downloads {$ubbt_lang['DOWNLOADS']})";
if ($config['inline_anon'] == "yes") {
// -----------------------------------------------------------------------
// if it's a graphic, let's display it in the posts - hack by JoshPet
if (eregi("\.GIF|\.JPG|\.PNG", $File)) {
$filewidth = getimagesize ("$config[fileurl]/$File");
$TempBod = $Body;
if ($filewidth[0] > $config['max_width']) {
$TempBod .= "<br /><br /><IMG SRC="$config[fileurl]/$File" width="{$config['max_width']}" Border="0" alt="{$ubbt_lang['FILE_ATTACH']}">";
}
else {
$TempBod .= "<br /><br /><IMG SRC="$config[fileurl]/$File" Border="0" alt="{$ubbt_lang['FILE_ATTACH']}">";
}
$Body = $TempBod;
}
}
}


change for this :


if ($File) {
$File = rawurlencode($File);
if (!$downloads) { $downloads = "0"; }

$filewidth = getimagesize ("$config[fileurl]/$File");
if ( ($config['inline_anon'] == "yes") && (eregi("\.GIF|\.JPG|\.PNG", $File)) && ($filewidth[0] > $config['max_width']) ) {

$postrow[$i]['filelink'] ="<br /><br /><B>Attachment</b><br /><br /><a href="{$config['phpurl']}/download.php?Number=$Number" target="_new"><IMG SRC="$config[fileurl]/$File" width="{$config['max_width']}" Border="0" alt="{$ubbt_lang['FILE_ATTACH']} - ($downloads {$ubbt_lang['DOWNLOADS']})"></a>";
}
elseif ( ($config['inline_anon'] == "yes") && (eregi("\.GIF|\.JPG|\.PNG", $File)) ) {

$postrow[$i]['filelink'] ="<br /><br /><B>Attachment</b><br /><br /><IMG SRC="$config[fileurl]/$File" Border="0" alt="{$ubbt_lang['FILE_ATTACH']}">";
}
else
$postrow[$i]['filelink'] = "<br /><B>Attachment</b><br /><a href="{$config['phpurl']}/download.php?Number=$Number" target="_new"><img src="{$config['phpurl']}/images/attachment.gif" border="0"></a>
<br /> ($downloads {$ubbt_lang['DOWNLOADS']})";
}


Put attachment.gif in your images directory (on gif write DOWNLOAD )


Tested - working


Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
I installed UBBThreads 6.3 and the Inline Image Hack doesn't work. Any idea why? No error message, it just doesn't work, images are still shown as Attachments only.
We had UBBThreads 6.2.3 before with the Inline Image Hack installed and it worked perfectly.
Any hint? Thanks.

Joined: Aug 2000
Posts: 1,609
Addict
Addict
Offline
Joined: Aug 2000
Posts: 1,609
How many places are you going to ask this?

Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
[]DLWebmaestro said:
How many places are you going to ask this? [/]

Sorry, didn't know if this is the right place to ask, so I posted to another forum too.

Sponsored Links
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Make sure you add the options into the config file and define them (see the first part of the instructions).

It uses 2 config variables to determine maximum width and if anonymous users can see them inline - if you don't add the options to the config file - then nothing appears.

Joined: Jun 2003
Posts: 1,025
Junior Member
Junior Member
Offline
Joined: Jun 2003
Posts: 1,025
I could have told you that. I just wanted to give Josh a chance to answer this one.

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Well... confession -

It wasn't working here - and I said gee I must not have installed it.

so I went to add it, and it was already here.

But when I switched from using the beta forum to the real one - I needed to transfer the variable to the correct config file.

So I learned that one through experience.

Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
[]JoshPet said:
Make sure you add the options into the config file and define them (see the first part of the instructions).

It uses 2 config variables to determine maximum width and if anonymous users can see them inline - if you don't add the options to the config file - then nothing appears. [/]

Did as you said from the beginning but it didn't work.
I always read instructions very carefully.

I then took the old showthreaded.php and showflat.php files from my 6.2.3 backup, copied the modified stuff out of it and pasted it into the new 6.3 files. Voila...it worked.
I only hope that I didn't mess up something.

Unfortunately I didn't have the time to make a comparison between the files but if you want me to (I don't know if Infopop allows sending files from UBBThreads), I can send you my showthreaded.php and showflat.php files via eMail.

Thanks for trying to help.

Joined: Apr 2001
Posts: 3,266
Member
Member
Offline
Joined: Apr 2001
Posts: 3,266
RTeam,

I will concur what Josh has already stated. Follow the instructions to the LETTER. This is quite an easy hack and is working fine on mutliple sites.

If you took the old code from 6.2.3 files and pasted it and it worked then your error is as Josh stated. You did not add the config options under your config menu in admin section. That is the change in the code between the old and new version. The new version allows some config options the old one did not. They are defined by the lines below added to the end of config file in admin section.

$config['max_width'] = '500';
$config['inline_anon'] = 'yes';

Sponsored Links
Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
[]Omegatron said:
RTeam,

I will concur what Josh has already stated. Follow the instructions to the LETTER. This is quite an easy hack and is working fine on mutliple sites.

If you took the old code from 6.2.3 files and pasted it and it worked then your error is as Josh stated. You did not add the config options under your config menu in admin section. That is the change in the code between the old and new version. The new version allows some config options the old one did not. They are defined by the lines below added to the end of config file in admin section.

$config['max_width'] = '500';
$config['inline_anon'] = 'yes';
[/]

I took the "old" code from 6.2.3 after it didn't work with the 6.3 code. I followed it to the letter, looked up every single line and it doesn't work.
No error message but also no inline images.
The setting is "800" for width and "no" for anon images.

The first thing I learned after using UBBT and applying hacks from you PHP genius guys at Threadsdev is to read the instructions very carefully. It always worked but now I'm getting a little bit desperate. Thanks for trying to help, I really appreciate it.

Maybe I just do a fresh 6.3 install and see what happens.

Joined: Apr 2001
Posts: 3,266
Member
Member
Offline
Joined: Apr 2001
Posts: 3,266
Rteam let me see if this helps. You see my config options. They go into the config options on the bottom of the admin config screen in unknown variables section.

Here is the code from showflat.php I will paste a beginning line and end line so you know where to copy and paste from
notice begin with the if file and copy all the way to $editlinkstart

Code
         if ($File) { <br />	    		$File = rawurlencode($File); <br />				if (!$downloads) { $downloads = "0"; } <br />            $postrow[$i]['filelink'] = "<a href=\"{$config['phpurl']}/download.php?Number=$Number\">{$ubbt_lang['FILE_ATTACH']}</a> ($downloads {$ubbt_lang['DOWNLOADS']})"; <br />            if ($config['inline_anon'] == "yes") { <br />			// ----------------------------------------------------------------------- <br />			// if it's a graphic, let's display it in the posts - hack by JoshPet <br />               if (eregi("\.GIF|\.JPG|\.PNG", $File)) { <br />				 $filewidth = getimagesize ("$config[fileurl]/$File"); <br />                 $TempBod = $Body; <br />				 if ($filewidth[0] > $config['max_width']) { <br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" width=\"{$config['max_width']}\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">"; <br />				 } <br />				 else { <br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">"; <br />				 } <br />			     $Body = $TempBod; <br />               } <br />            } <br />         } <br /> <br /> <br />         $editlinkstart = "";


Now this is in showthreaded.php

Code
      if ($File) { <br />	 		$File = rawurlencode($File); <br />			if (!$downloads) {$downloads = 0; } <br />         $filelink = "<a href=\"{$config['phpurl']}/download.php?Number=$Number\">{$ubbt_lang['FILE_ATTACH']}</a> ($downloads {$ubbt_lang['DOWNLOADS']})<br />"; <br />         if ($config['inline_anon'] == "yes") { <br />		// ----------------------------------------------------------------------- <br />		// if it's a graphic, let's display it in the posts - hack by JoshPet <br />           if (eregi("\.GIF|\.JPG|\.PNG", $File)) { <br />		 	 $filewidth = getimagesize ("$config[fileurl]/$File"); <br />             $TempBod = $Body; <br />				 if ($filewidth[0] > $config['max_width']) { <br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" width=\"{$config['max_width']}\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">"; <br />				 } <br />				 else { <br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">"; <br />				 } <br />		     $Body = $TempBod; <br />           } <br />         } <br />      } <br /> <br />      if ( ($edit == "on") || ($reply == "on") ) {



Just look for the ending line in each code and replace up to that line that way you will not miss any } 's

Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
[]Omegatron said:
RTeam,

I will concur what Josh has already stated. Follow the instructions to the LETTER. This is quite an easy hack and is working fine on mutliple sites.

If you took the old code from 6.2.3 files and pasted it and it worked then your error is as Josh stated. You did not add the config options under your config menu in admin section. That is the change in the code between the old and new version. The new version allows some config options the old one did not. They are defined by the lines below added to the end of config file in admin section.

$config['max_width'] = '500';
$config['inline_anon'] = 'yes';
[/]

I did follow the instructions by the letter, trust me.
I'm working in a business where not following instructions by the letter could kill people, so I think I know what "by the letter" means.
It still doesn't work, it is hopeless.

There is however a strange thing which might have something to do with my problem: in the config section (from Admin Config menue), I get another line of code:
$config['fifth_mail'] = '';
Whenever I delete this line and klick the Update button, it comes back again. I don't have any other hacks installed.

Thanks again for trying to help, I really appreciate it.

Joined: Apr 2001
Posts: 3,266
Member
Member
Offline
Joined: Apr 2001
Posts: 3,266
The fifth mail config item will not cause any problems. If you cut and paste what I posted above and place the config options in it should work. The only other way I can help you is if I do the modification myself for you. Contact me privately if you wish me to get this working for you.

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Yeah, we are using this on alot of sites - this one being one of them - and it really hasn't changed that much over the years. My guess is you are missing something.

Don't delete the fifth mail config option - that's used by UBB.Threads 6.3.

Are you seeing those other 2 config options in that extra area as well ? Or are those gone each time you go back to the config file? My thought being if your config file isn't writable - the changes aren't getting saved.

Joined: Dec 2002
Posts: 67
Power User
Power User
Joined: Dec 2002
Posts: 67
Hi All,
Yes it works but...with an error.
I did excactly what you said and it runs ok on my testforum at 127.0.0.1.
But as soon as I do it on the online machine both adresses (inside 127.0.0.1 and outside gives an error as soon as i open the message.
It holds for 1 or 2 seconds and than this shows up:

Warning: php_hostconnect: connect failed in c:\appserv\www\ubbthreads\showflat.php on line 946

Warning: getimagesize: Unable to open 'http://80.126.87.6/ubbthreads/bestanden/3869-logo_sm.gif' for reading. in c:\appserv\www\ubbthreads\showflat.php on line 946

B.t.w; the message and the picture are ok.
What can i do ?

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Looks like the server isn't liking the "getimagesize" command - not sure why a server would do that. Unless there are directory restrictions in place?
The changebasic uses the same 'getimagesize' command if you are allowing users to upload avatars.

http://www.php.net/getimagesize


"Unable to open 'http://80.126.87.6/ubbthreads/bestanden/3869-logo_sm.gif' for reading"

Leads me to believe that it's a permissions thing? Is PHP in safe mode?

I notice in changebasic.php Scream adds a @ sign before it. I don't really know what that does.

Try in showflat and show threaded changing

getimagesize

to

@getimagesize

See if that helps.

Joined: Mar 2002
Posts: 36
User
User
Offline
Joined: Mar 2002
Posts: 36
[]Omegatron said:
The fifth mail config item will not cause any problems. If you cut and paste what I posted above and place the config options in it should work. The only other way I can help you is if I do the modification myself for you. Contact me privately if you wish me to get this working for you. [/]

Wow, Chuck...this is a more than generous offer. Thanks a lot, I sent you a mail.

Joined: Dec 2002
Posts: 67
Power User
Power User
Joined: Dec 2002
Posts: 67
Hi Josh,
Thanks for youre response, it works now ok.
I put a "@" before getimagesize.
The error message is gone away now.

The only thing is that it takes up to 20 seconds before the message opens and the picture shows.
It doesn't make a difference if it is a small or big picture.
Any ideas?

And to be honest: i really have no idea if php is running in safe mode. I just insalled it and an apache server and was surprised that it worked!

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Yeah - the @ will surpress the warning that it wasn't allowed to get the filesize of the image - my guess would be permissions or a directory restriction in php which is preventing it from being able to read the size of the images.

Daine #244294 07/06/2003 7:29 AM
Joined: May 2003
Posts: 3
wht Offline
Lurker
Lurker
Offline
Joined: May 2003
Posts: 3
[b]Hi

Is there a way to make this hack work in one board only?

Maybe someone has done something like this? []http://autokacik.pl/images/graemlins/niewiem.gif[/]

craigyd #244295 07/06/2003 12:54 PM
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Hey Allen,

You'll change this:
Code
<br />            if ($config['inline_anon'] == "yes") { <br />


To this:
Code
<br />            if (($config['inline_anon'] == "yes") && ($Board=="xxxxxxx")) { <br />


Put the board keyword where I have xxxxxxxx.


Daine #244296 07/06/2003 1:55 PM
Joined: May 2003
Posts: 3
wht Offline
Lurker
Lurker
Offline
Joined: May 2003
Posts: 3
[]JoshPet said:
Hey Allen,

You'll change this:
...
[/]
[b]
Quite simple. Thanks!

NotAllen

craigyd #244297 07/06/2003 1:58 PM
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Doah - Not Allen. LOL
You look just like him.

Daine #244298 07/06/2003 3:24 PM
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
we need a shave


- Allen wavey
- What Drives You?
Joined: Jun 2003
Posts: 131
Journeyman
Journeyman
Offline
Joined: Jun 2003
Posts: 131
Josh or anyone: just curious ...with this mod, if someone PRINTS the post (or thread) is the image still there, i.e.,in-line? Thanks - Tony

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
No - they are removed in the page to be printed.


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: Jul 2003
Posts: 8
Lurker
Lurker
Offline
Joined: Jul 2003
Posts: 8
Mine didn't work either until I properly spaced out the variables by manually editing the config.inc.php file at the bottom.
Use Tabs and Spaces as shown by the example of other variables above it in the file. Use the

$config['ICQ_Status'] = 1;
$config['fifth_mail'] = '';

as examples of where to use tabs and where to use spaces on the variable lines.

Cheers.

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Thanks guys - I fixed the instructions for the config variables. I was using the wrong quotes - which the online editor for the config file didn't like. I updated my instructions.

Joined: Jun 2002
Posts: 670
Code Monkey
Code Monkey
Offline
Joined: Jun 2002
Posts: 670
This works for me in showflat, but not in showthreaded. I get this error:
Parse error: parse error, unexpected '<' in /home/laondal/public_html/foros/templates/default/showthreaded.tmpl on line 321

The showthreaded.tmpl is attached to this post. Any help would be appreciated. Thanks

--EDIT--
I've fixed it. Never mind me
Attachments
91873-showthreaded.tmpl (0 Bytes, 155 downloads)

Last edited by donJulio; 08/13/2003 7:01 PM.
Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
Now that I have upgrated to 6.3.2 I am able to retain the settings when adding the variables, I was having trouble with that before. I installed the inline image hack and still have these two issues, this has been the case for 6.2.3 and 6.3.2

1) if I put in $config['inline_anon'] = 'no';
it will not display them at all, not even for registered users so I have to leave it at yes.

2) I keep getting this
Code
">
on the right side of every image displayed.

Thanks

Joined: Aug 2000
Posts: 1,609
Addict
Addict
Offline
Joined: Aug 2000
Posts: 1,609
Sounds like you either left out or added a character in your code. Go back over your showflat and showthreaded files and make sure you have EXACTLY what Josh put in his instructions.

Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
I re-installed it from scratch after I upgraded with the exact same issues. Obviously it's something that I am doing because I am the only one having it. I don't mind the "> so much (I looked at all the code and the closing statements are all in there) but I would like to be able to set $config['inline_anon'] = 'no'; and have it work.

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
Make sure these two lines are correct in showflat.php

Code
  <br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" width=\"{$config['max_width']}\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">";<br />				 }<br />				 else {<br />	                 $TempBod .= "<br /><br /><IMG SRC=\"$config[fileurl]/$File\" Border=\"0\" alt=\"{$ubbt_lang['FILE_ATTACH']}\">";<br /> 


Looking at your HTML, I am guessing that they are not as the width is not shown at all in your HTML code. So also make sure the width variable is set in the config.


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
I will give that a shot, thanks for your help guys.

Joined: Sep 2003
Posts: 10
Newbie
Newbie
Offline
Joined: Sep 2003
Posts: 10
for some reason this won't work for me, no error messages, but my attachments just stay as attachments and don't actually display.... any ideas? thanks very much.

Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
Make sure that Anonymous users are allowed, it's the only way I can get it to work.

$config['inline_anon'] = 'yes';

Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
Josh, I get this error from time to time and anytime there is an image attached and the threads usually take for ever to load whether I get the error or not, any ideas on this?

Warning: getimagesize(): php_network_getaddresses: getaddrinfo failed: Name or service not known (is your IPV6 configuration correct? If this error happens all the time, try reconfiguring PHP using --disable-ipv6 option to configure) in /home/vhfansco/public_html/boards/showflat.php on line 975

Warning: getimagesize(http://www.vhfans.com/boards/uploads/7531-image.jpg): failed to open stream: Permission denied in /home/vhfansco/public_html/boards/showflat.php on line 975

Warning: Cannot modify header information - headers already sent by (output started at /home/vhfansco/public_html/boards/showflat.php:975) in /home/vhfansco/public_html/boards/ubbt.inc.php on line 236

Joined: Apr 2001
Posts: 3,266
Member
Member
Offline
Joined: Apr 2001
Posts: 3,266
Try changing

getimagesize

to

@getimagesize

Joined: May 2003
Posts: 1,068
Junior Member
Junior Member
Offline
Joined: May 2003
Posts: 1,068
Looks like that took care of it, thanks Omegatron!

Page 1 of 3 1 2 3

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)