Previous Thread
Next Thread
Print Thread
Hop To
#256381 02/04/2015 10:51 PM
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
Help !

After the update to v 7.5.9 I was in the admin page for languages
Only English was set and to default

All I did was to see what it did another choice was PHP instead of English and soon as I had that updated to the default now the main admin page is totally blank so I cannot see anything to try and fix
The forum itself is fine so whatever happened is only to admin webpage

What can I do to solve this ?

Thanks



JR
Team ZR-1 Corvette Racer's
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
Further looking at the forum itself I find it is broken

When doing a new post and when clicking to submit get this error

FATAL ERROR: Unable to find '/ubbthreads/languages/php.ini/mailer.php' language file. Please notify the administrator.

Also Who's online says zero viewers, spiders, etc

How can I fix this PHP.ini/ mailer.php failure ?

Thanks


JR
Team ZR-1 Corvette Racer's
Joined: Jun 2006
Posts: 16,292
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,292
Likes: 116
Originally Posted by teamzr1
FATAL ERROR: Unable to find '/ubbthreads/languages/php.ini/mailer.php' language file. Please notify the administrator.
You shouldn't have a php.ini folder in the languages folder... What is the contents of your languages folder? What are the paths defined as in your config.inc.php file?


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
There was no folder named php.ini and thus the failure
( never was a folder of php.ini )

To me this is a bug as I was in language webpage and intent was to click on update as English being default

Problem is right below that it says PHP.INI and the field space to the right of that is empty

Somehow I had clicked on that as default when I clicked update and then it config'd as if that php.ini was a folder name in the path

To fix I made a php.ini folder and then copied the files from English to it and right off the admin page worked again and sure enough when going to language page php.ini was set to default and thus was not looking in the English folder

Someone needs to find out why a choice of php.ini is there and
2 if the field to the right is blank it should reject when update is clicked


JR
Team ZR-1 Corvette Racer's
Joined: Jun 2006
Posts: 16,292
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,292
Likes: 116
Again, what do the paths in your /includes/config.inc.php folder display as? Something is broken somewhere, the UBB shouldn't ever ask for anything relating to php.ini as that's the configuration file for php on your webserver.

The only references in the UBB to "php.ini" are all comments that tell anyone browsing that values are determined via the php.ini; here is every notation of php.ini in the UBB.threads code (the command is executed on a linux/unix machine, it looks for the text "php.ini" in the indicated folder (in this case, my sandbox UBB.Threads install, running stock 7.5.9; if you have SSH access to your webspace I encourage you to do the same):
Code
[ubb@server sandbox]# grep -r "php.ini" /home/sandbox/
/home/sandbox/libs/smarty/Smarty.class.php:     * variables_order in php.ini E = Environment, G = GET, P = POST,
/home/sandbox/libs/smarty/Smarty.class.php:     * no effect, but the php-ini-value "gpc_order"
/home/sandbox/libs/phpmailer/README:Copy class.phpmailer.php into your php.ini include_path. If you are
/home/sandbox/admin/dogroup_forumperms.php:// Get the max upload size in php.ini
/home/sandbox/admin/doforumperms.php:// Get the max upload size in php.ini
/home/sandbox/languages/english/admin/forumperms.php:$ubbt_lang['FILE_SIZE_1'] = "If file attachments are enabled in the forum, this dictates how large each file attachment can be. Max size set in php.ini is <b>%%MAX_SIZE%%</b> so you may not exceed this size.";
/home/sandbox/languages/english/admin/forumperms.php:$ubbt_lang['GALLERY_SIZE_1'] = "If this forum is a gallery forum, this setting dictates how large each image may be. Max size set in php.ini is <b>%%MAX_SIZE%%</b>, so you may not exceed this size.";
/home/sandbox/languages/english/admin/primary.php:$ubbt_lang['SMTP_1'] = "Normally this is controlled by php.ini. However if you need to send mail through another SMTP server and cannot do this by editing php.ini, you can specify it here.";
/home/sandbox/ubbthreads.php:if (ini_get("zlib.output_compression")) $zlib = "Zlib compression enabled in php.ini";
/home/sandbox/install/LANGUAGE_CHANGES.txt:VERSION-7.4b1:CHANGED:FILE-admin/forumperms.php:KEY-$ubbt_lang['FILE_SIZE_1']:VALUE-"If file attachments are enabled in the forum, this dictates how large each file attachment can be.  Max size set in php.ini is <b>%%MAX_SIZE%%</b> so you may not exceed this size.";
/home/sandbox/install/LANGUAGE_CHANGES.txt:VERSION-7.4b1:CHANGED:FILE-admin/forumperms.php:KEY-$ubbt_lang['GALLERY_SIZE_1']:VALUE-"If this forum is a gallery forum, this setting dictates how large each image may be. Max size set in php.ini is <b>%%MAX_SIZE%%</b>, so you may not exceed this size.";
/home/sandbox/install/LANGUAGE_CHANGES.txt:VERSION-7.1b1:NEW:FILE-admin/primary.php:KEY-$ubbt_lang['SMTP_1']:VALUE-"Normally this is controlled by php.ini.  However if you need to send mail through another SMTP server and cannot do this by editing php.ini, you can specify it here.";
/home/sandbox/scripts/filemanager.inc.php:       // Get the max upload size in php.ini
/home/sandbox/scripts/filemanager.inc.php:               // No file size at all, exceeded php.ini setting


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
Look at this snapshot of my language page below

Problem only started after the update to V 5.7.9
and I clicked by mistake to "active" php,ini

As soon as I did that admin webpage then went blank, forum was not working
and if going directly to admin URL could not log in as that page also blank
and viewing source page showed totally blank

and any new post written was then erroring to a invalid path to a subdirectory called php.ini so it was making active that wrote something to a file,
I did not and no such directory ever existed in languages until active was clicked by mistake

Does your language page of admin show like mine below ?

Attachments
php.jpg


JR
Team ZR-1 Corvette Racer's
Joined: Jun 2006
Posts: 16,292
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,292
Likes: 116
Nope, I only have the English line, and i don't have a php.ini folder in my languages folder either (only folders which exist in the languages folder should show in the editor).

Again, I would really like to see any paths that are listed in your config.inc.php file, and possibly the output of the first several lines in the file as well; I'm thing that something in the configuration file is awry.

Step one would be to remove the php.ini folder from your languages file, step two would be to consult any possible config debugging.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
Where does config.inc.php reside ?

The temp php.ini directory I deleted after I got the admin page working again

other question is how that php.ini got into the language page user interface as a selectable


JR
Team ZR-1 Corvette Racer's
Joined: Jun 2006
Posts: 16,292
Likes: 116
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,292
Likes: 116
Your config file is in the includes folder. Be sure to change any usernames/passwords before submitting any portions of your config file here.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2007
Posts: 286
T
enthusiast
enthusiast
T Offline
Joined: Jun 2007
Posts: 286
OK from the includes directory
Minus the password and user names

Code
$config = array (
  'DATABASE_SERVER' => 'localhost',
  'DATABASE_USER' => '',
  'DATABASE_PASSWORD' => '',
  'DATABASE_NAME' => '',
  'TABLE_PREFIX' => 'ubbt_',
  'MAIN_ADMIN_ID' => '10',
  'MARKUP_FONTS' => 
  array (
    0 => 'Arial',
    1 => 'Arial Black',
    2 => 'Book Antiqua',
    3 => 'Century Gothic',
    4 => 'Comic Sans MS',
    5 => 'Courier New',
    6 => 'Fixedsys',
    7 => 'Georgia',
    8 => 'Impact',
    9 => 'Lucida Console',
    10 => 'Microsoft Sans Serif',
    11 => 'System',
    12 => 'Times New Roman',
    13 => 'Verdana',
  ),
  'TIME_FORMATS' => 
  array (
    0 => 'd/m/y | h:i A',
    1 => 'y/m/d | h:i A',
    2 => 'd/m/Y | H:i',
    3 => 'D M d Y | h:i A',
    4 => 'm/d/y | h:i A',
    5 => 'Y-m-d | H:i:s',
    6 => 'd-m-Y | h:i A',
    7 => 'd F, Y | h:i A',
    8 => 'Y-m-d | h:i A',
    9 => 'm-d-Y | h:i A',
    10 => 'F d, Y | h:i A',
    11 => 'd-m-Y | H:i',
    12 => 'd F, Y | H:i',
    13 => 'Y-m-d | H:i',
    14 => 'm-d-Y | H:i',
    15 => 'F d, Y | H:i',
  ),
  'TIME_FORMAT' => 'm/d/y | h:i A',
  'MARKUP_FONT_SIZES' => 
  array (
    0 => '8pt',
    1 => '11pt',
    2 => '14pt',
    3 => '17pt',
    4 => '20pt',
    5 => '23pt',
    6 => '26pt',
  ),
  'BUILD_ISLANDS' => 
  array (
    0 => 'post_island_12',
    1 => 'post_island_14',
    2 => 'post_island_16',
  ),
  'NO_COLLAPSE_ISLANDS' => 
  array (
  ),
  'MAX_SEARCH_RANGE_TYPE' => 'years',
  'MAX_SEARCH_RANGE_VALUE' => '9',
  'POSTING_THROTTLE' => '0',
  'MAX_SEARCH_RESULTS' => '200',
  'MIN_SEARCH_LENGTH' => '3',
  'SEARCH_THROTTLE' => '10',
  'PM_LIMIT' => '200',
  'PM_PARTICIPANTS' => '5',
  'ENABLE_ACTIVE_TEXT' => '',
  'AVATAR_MAX_WIDTH' => '80',
  'AVATAR_MAX_HEIGHT' => '80',
  'TOPIC_DISPLAY_STYLE' => 'flat',
  'SHOW_AVATARS' => '1',
  'POSTS_PER_PAGE' => '10',
  'COMMUNITY_INTRO' => '1',
  'COMMUNITY_INTRO_TITLE' => 'Full Custom Layer Tuning Service',
  'BODY_ONLOAD' => '',
  'TABLE_WIDTH' => '100%',
  'TOPICS_PER_PAGE' => '30',
  'TEXT_AREA_COLUMNS' => '65',
  'TEXT_AREA_ROWS' => '10',
  'FULL_URL' => 'http://www.teamzr1.com/ubbthreads',
  'BASE_URL' => '/ubbthreads',
  'FULL_PATH' => '/home/teamzr5/public_html/ubbthreads',
  'SESSION_PATH' => '/home/teamzr5/public_html/ubbthreads/sessions',
  'REFERERS' => 'http://teamzr1.com|http://www.teamzr1.com',
  'COOKIE_PATH' => '/',
  'COOKIE_PREFIX' => '',
  'LANGUAGE' => 'english',
  'ONLINE_TIME' => '60',
  'NEWS_ITEMS' => '20',
  'TOP_POSTERS' => '5',
  'DEFAULT_STYLE' => '5',
  'REQUIRE_UNIQUE_EMAIL' => '1',
  'DEFAULT_USER_GROUPS' => 
  array (
    0 => '4',
  ),
  'COMMUNITY_TITLE' => 'Team ZR-1 Corvette Racers',
  'HOMEPAGE_URL' => 'http://www.teamzr1.com',
  'INLINE_IMAGE' => '999999',
  'HOMEPAGE_TITLE' => 'Team ZR-1 Corvette Racers LLC',
  'SITE_EMAIL' => 'jr',
  'SITE_EMAIL_TITLE' => 'Contact Us',
  'PRIVACY_STATEMENT' => 'none',
  'MAX_AVATAR_SIZE' => '3000',
  'BOARD_IS_CLOSED' => '0',
  'MEMBER_DIRECTORY' => '1',
  'MARKUP_HTML_TOGGLE' => '',
  'MAIL_POST' => '1',
  'ANON_CAN_VOTE' => '0',
  'ANON_VIEW_PROFILES' => '0',
  'MAX_EDIT_TIME' => '360',
  'DO_AGE_CHECK' => '1',
  'MINIMUM_AGE' => '21',
  'SPECIAL_CHARACTERS' => '1',
  'SUBJECT_LENGTH' => '100',
  'SIGNATURE_LENGTH' => '100',
  'COOKIE_LIFETIME' => '30758400',
  'SERVER_TIME_OFFSET' => '-1',
  'SHOW_POSTER_IP' => '2',
  'ALLOW_IMAGE_MARKUP' => '1',
  'ATTACHMENTS_PATH' => '/home/teamzr5/public_html/ubbthreads/attach',
  'ATTACHMENTS_URL' => 'http://www.teamzr1.com/ubbthreads/attach',
  'ATTACHMENT_TYPES' => '.gif,.jpg,.txt,.zip,.png',
  'ATTACHMENT_SIZE' => '380000',
  'LIST_MODERATORS' => '',
  'DATE_SLIP' => '1',
  'CUSTOM_TTILE_MAX' => 100,
  'CUSTOM_FIELD_1' => 'Teammate ID ?',
  'CUSTOM_FIELD_2' => 'GM Car Model',
  'CUSTOM_FIELD_3' => 'Mods',
  'CUSTOM_FIELD_4' => 'Type of Racing',
  'CUSTOM_FIELD_5' => '',
  'MIN_PDN_LENGTH' => '5',
  'MAX_PDN_LENGTH' => '16',
  'DISABLE_LEFT' => '1',
  'DISABLE_RIGHT' => '1',
  'LEFT_COLUMN' => '1',
  'LEFT_COLUMN_BOXES' => 
  array (
    1 => 'portal_box_2',
    2 => 'post_island_13',
    3 => 'post_island_15',
    4 => 'portal_box_1',
    5 => 'post_island_12',
    6 => 'post_island_14',
    7 => 'forum_stats',
    8 => 'post_island_17',
    9 => 'search',
  ),
  'RIGHT_COLUMN_BOXES' => 
  array (
    1 => 'online_now',
    2 => 'post_island_11',
    3 => 'popular_topics',
    4 => 'post_island_16',
    6 => 'gallery_island_25',
  ),
  'RIGHT_COLUMN' => '1',
  'SEARCH_FRIENDLY_URLS' => '',
  'FULL_TEXT' => 'POST_DEFAULT_BODY',
  'HOT_REPLIES' => '15',
  'HOT_VIEWS' => '300',
  'DISPLAY_NAME_CHANGE' => '0',
  'CONTACT_LINK_TYPE' => 'email',
  'USER_RATINGS' => '1',
  'TOPIC_RATINGS' => '1',
  'LOG_SQL_ERRORS' => '',
  'LOG_ADMIN_ACTIVITY' => '',
  'EMAIL_VERIFICATION' => '1',
  'PERSISTENT_DB_CONNECTION' => '0',
  'ZLIB_COMPRESSION' => '1',
  'DO_CENSOR' => '',
  'DISABLE_REFERER_CHECK' => '',
  'REPLACE_WORD' => '[censored]',
  'ALLOW_DEBUGGING' => '',
  'PUBLIC_CALENDAR_EVENTS' => '3',
  'IMAGE_MARKUP_IN_SIGS' => '1',
  'AGE_WITH_BIRTHDAYS' => '',
  'ENABLE_QUICK_REPLY' => '1',
  'SUSPEND_REGISTRATIONS' => '',
  'ALLOW_UNDER_13' => '',
  'NEW_USER_MODERATION' => '1',
  'ALLOW_REMOTE_AVATARS' => '',
  'ALLOW_STOCK_AVATARS' => '1',
  'ALLOW_UPLOADED_AVATARS' => '',
  'TOPIC_DISPLAY_OPTIONS' => 'both',
  'SQL_LOG_PATH' => '',
  'ADMIN_LOG_PATH' => '',
  'MAX_ADMIN_LOG_FILES' => '0',
  'CUSTOM_TITLE_MAX' => '100',
  'NEW_COUNT' => '',
  'NEW_REPLIES' => '',
  'MAX_DELETE_TIME' => '60',
  'MAX_ADMIN_LOG_SIZE' => '',
  'SMTP' => '',
  'GUEST_SEARCH' => '',
  'ACTIVE_TEXT_LIST' => 
  array (
  ),
  'BIRTHDAYS_IN_CALENDAR' => '',
  'CONTACT_URL' => '',
  'PRIVACY_URL' => '',
  'RELATIVE_TIME' => '1',
  'CAPTCHA' => 'gd',
  'UPLOADED_AVATAR_PATH' => '',
  'UPLOADED_AVATAR_URL' => '',
  'ENABLE_MAIN_PORTAL' => '1',
  'PORTAL_NEWS_FORUMS' => '29,3,4,31,5,30,6,14,27,28,15,26,21,19,8,9,16',
  'PUBLIC_CALENDAR' => '',
  'GRAPHICS_LIBRARY' => 'gd',
  'MAX_THUMB_W_H' => '125',
  'MAX_MEDIUM_W_H' => '450',
  'MAX_FULL_W_H' => '1200',
  'MAX_GALLERY_UPLOAD' => '1048576',
  'THUMB_QUALITY' => '70',
  'MEDIUM_QUALITY' => '80',
  'FULL_QUALITY' => '90',
  'POST_LAYOUT' => 'side',
  'ENABLE_MOODS' => '1',
  'BIRTHDAY_NOTICE' => '1',
  'RIGHT_COLUMN_PORTAL' => '',
  'LEFT_COLUMN_PORTAL' => '',
  'IMAGE_LIMIT' => '10',
  'ENABLE_POST_COUNTS' => '1',
  'SHOW_ALL_GRAEMLINS' => '1',
  'SHOW_TEASER_LATEST_POST' => '',
  'CATEGORY_ONLY_MODE' => '',
  'DISABLE_ONLINE_INVISIBLE' => '',
  'SEARCH_FRIENDLY_HTML_EXT' => '',
  'CALENDAR_START_DAY' => '0',
  'TOTAL_ONLINE' => '0',
  'TOOLTIP_LENGTH' => '150',
  'HOPTO_WIDTH' => '',
  'POST_CAPTCHA' => 'gd',
  'MY_FEEDS' => '1',
  'MULTI_URL' => '',
  'MAX_WIDTH_IMAGE' => '',
  'LOG_REFERS' => '1',
  'CALENDAR' => '',
  'NOFOLLOW_POST' => '1',
  'NOFOLLOW_SIG' => '1',
  'NESTED_QUOTES' => '4',
  'COMMENTS_MIN_POST' => '25',
  'SEARCH_METHOD' => 'fulltext',
  'COMMENTS' => '',
  'PORTAL_BDAYS' => '',
  'FEATURED_MEMBER' => '',
  'POPULAR_TOPICS' => '',
  'EXCLUDE_POPULAR' => '',
  'FACEBOOK' => '',
  'TWITTER' => '',
  'YOUR_TWITTER' => '',
  'ONLY_CUSTOM' => '',
  'SFS_ENABLE' => '1',
  'SFS_LEVEL' => '4',
  'SFS_KEY' => 'sm842',
  'BOARD_KEY' => '54a',
  'SHAREAHOLIC' => '1',
  'dumpdir' => 'teamzr1.com//ubbthreadsubackup',
)?>


JR
Team ZR-1 Corvette Racer's
Joined: Jul 2006
Posts: 4,057
Joined: Jul 2006
Posts: 4,057
I think its a rouge file named php.ini
as i used to zip up all my language files before an update, and i would always have languages.zip where you have your php.ini

Food for thought.


BOOM !! Version v7.6.1.1
People who inspire me Isaac ME Gizmo
Joined: Jul 2006
Posts: 4,057
Joined: Jul 2006
Posts: 4,057
And once i deleted my languages.zip file it no longer showed in the languages list.
This zip file was in the languages folder.


BOOM !! Version v7.6.1.1
People who inspire me Isaac ME Gizmo
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by teamzr1
OK from the includes directory
Minus the password and user names

Your config.ini has a few issues that stand out to me -

[*] the opening "<?php" is missing from your quote. Probably just a copy/paste thing?
[*] dumpdir' => 'teamzr1.com//ubbthreadsubackup', -- There is an extra slash in your directory name.
[*] 'SFS_KEY' => 'sm842', -- The key is too short. But you may have truncated it so as to not publicaly share it.
[*] UPLOADED_AVATAR_PATH, UPLOADED_AVATAR_URL, SQL_LOG_PATH -- Paths are missing.

Minis those few items, the rest looks ok to me upon quick visual inspection of that config.ini file.

Mark also has posted a very good reason for why you might be seeing that additional language option listed. It is definitely not any part of the UBB.threads software, nor has it ever been a file ever included with any release of UBB.threads. My guess is that it was accidentally copped/moved (or on a GUI, dragged) from another location. If it was moved from another location, that may be the cause for some of your random problems. System configurations functioning as default/vanilla, rather than what your other server processes/programs were specifically configured to expect.

EDIT -
Some hosts allow for one single php.ini file to control everything in the home directory and lower. Some hosts allow for separate php.ini files in each directory to control everything within that single directory and all the sub-dirs beneath it -- giving you the option to run different php.ini configurations at different levels.

A misconfigured server can over-zealously populate all the sub-dirs with multiple php.ini files, while others (from within the server's control panel) will automatically create a php.ini and insert one/each in to the directory that you tell it to.

Ultimately, I believe the issue may just be an accidental copy/paste or drag/drop. aka, user error.

I'd love to read how you got it all solved, when things are back up and running as you'd expect them to be. Its no fun to have this happen at all, but you're doing the right thing by asking a lot of questions and providing good feedback, and reading.

Last edited by id242; 02/05/2015 9:03 AM.

Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
spam issues
by ECNet - 03/19/2024 11:45 PM
Looking for a forum
by azr - 03/15/2024 11:26 PM
Editing Links in Post
by Outdoorking - 03/15/2024 9:31 AM
Question on barkrowler and the like
by Mors - 02/29/2024 6:51 PM
Member Permissions Help
by domspeak - 02/27/2024 6:31 PM
Who's Online Now
3 members (rootman, Gizmo, Nightcrawler), 562 guests, and 186 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)