vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   My forum is ++++ed... (https://vborg.vbsupport.ru/showthread.php?t=318675)

MahdyE23 05-16-2015 02:19 AM

My forum is ++++ed...
 
I cannot quote someone or do anything. When I post a thread, this appears:

https://vborg.vbsupport.ru/external/2015/05/15.png

Can anyone help me?

ForceHSS 05-16-2015 03:25 AM

add the following line to the top of your /includes/config.php file under the <?php line:
Code:
Code:

define('SKIP_ALL_ERRORS', true);

AusPhotography 05-16-2015 08:14 AM

Likely cause, php was upgraded and you need to upgrade to vB4.2.3 RC 1

MahdyE23 05-16-2015 03:53 PM

Quote:

Originally Posted by AusPhotography (Post 2545616)
Likely cause, php was upgraded and you need to upgrade to vB4.2.3 RC 1

My vBulletin is upgraded to the most recent version out.

ForceHSS 05-17-2015 06:27 AM

If you are running 4.2.3 RC 1 then you should not be getting this error

MahdyE23 05-17-2015 03:23 PM

Quote:

Originally Posted by ForceHSS (Post 2545672)
If you are running 4.2.3 RC 1 then you should not be getting this error

I was never receiving this order, I've had my forums running smoothly for a month and a half with no problems. And then there were nameserver changes, DNS issues and host problems and then I started getting all these errors.

There's nothing in my members area that gives me the option to download 4.2.3, so adding the code is all I can do for now,

Lynne 05-17-2015 04:28 PM

What version of PHP is your server running?

You may get 4.2.3 by clicking the More Options button on the download page.

MahdyE23 05-17-2015 07:40 PM

Quote:

Originally Posted by Lynne (Post 2545707)
What version of PHP is your server running?

You may get 4.2.3 by clicking the More Options button on the download page.

5.5.24. I looked all over for a download in the Mmber's Area, Patch area, couldn't find any version for 4.2.3

ForceHSS 05-17-2015 10:36 PM

1 Attachment(s)
See screenshot

thetechgenius 05-18-2015 03:19 AM

Quote:

Originally Posted by ForceHSS (Post 2545606)
add the following line to the top of your /includes/config.php file under the <?php line:
Code:
Code:

define('SKIP_ALL_ERRORS', true);


Did you try what ForceHSS suggested? The very first time I installed vBulletin 4 I got all kinds of errors at the top of my forum, but my forum still worked fine with the errors there. So I added the same code as ForceHSS suggested, and the errors disappeared. There is also a config option in the PHP.ini I think, that does almost the same thing I believe. But I am not sure about the php.ini option, so I could be wrong about that. It has been a very long time.

Disco_Stu 05-18-2015 01:39 PM

Quote:

Originally Posted by ForceHSS (Post 2545606)
add the following line to the top of your /includes/config.php file under the <?php line:
Code:
Code:

define('SKIP_ALL_ERRORS', true);

I've never subscribed to the notion of masking errors. It's a very bad and downright sloppy approach to software problems. Anyone on my payroll doing that would be fired immediately

thetechgenius 05-18-2015 02:09 PM

Quote:

Originally Posted by Disco_Stu (Post 2545774)
I've never subscribed to the notion of masking errors. It's a very bad and downright sloppy approach to software problems. Anyone on my payroll doing that would be fired immediately

Some errors have nothing to do with vBulletin, and some errors are just out of your control. I'm not saying that you should skip all errors with every website you create or build, but with vBulletin sometimes its a good idea in some cases.

I did it with my vBulletin, and it has been working perfectly fine for the past 2 years.

ozzy47 05-18-2015 06:14 PM

Quote:

Originally Posted by Disco_Stu (Post 2545774)
I've never subscribed to the notion of masking errors. It's a very bad and downright sloppy approach to software problems. Anyone on my payroll doing that would be fired immediately

Quote:

Originally Posted by thetechgenius (Post 2545776)
Some errors have nothing to do with vBulletin, and some errors are just out of your control. I'm not saying that you should skip all errors with every website you create or build, but with vBulletin sometimes its a good idea in some cases.

I did it with my vBulletin, and it has been working perfectly fine for the past 2 years.

This is why you should use:
PHP Code:

define('SKIP_DS_ERRORS'true); 

This turns off the extra error reporting in php 5.3 & 5.4 (for strict & deprecated warnings), but will allow other important errors to show.

MahdyE23 05-18-2015 06:31 PM

Quote:

Originally Posted by thetechgenius (Post 2545731)
Did you try what ForceHSS suggested? .

This is what fixed it. It fixed all the errors I was having, I wasn't looking for a different way anyone because it was fixed.

Disco_Stu 05-18-2015 10:59 PM

Quote:

Originally Posted by MahdyE23 (Post 2545806)
This is what fixed it. It fixed all the errors I was having, I wasn't looking for a different way anyone because it was fixed.

That didn't fix any errors at all. All you did was hide the error messages. It's like piling snow on top of a garbage heap and saying "Hey, I just cleaned up the garbage!"

cellarius 05-19-2015 04:33 AM

To be fair, we're not talking errors here. We're talking deprecated warnings, translating to: It is perfectly okay to use this functionality as you do at present time, but be warned: things may change in one of the future versions of php.

ForceHSS 05-19-2015 10:57 AM

The line in the config is no longer needed in 4.2.3 so looks like vb has fixed it in this version

cellarius 05-19-2015 12:11 PM

The policy on warning suppression (which was changed for 4.2.2) has been reverted for 4.2.3. In effect, that line you had to add in 4.2.2 is now already included.

DemOnstar 05-19-2015 02:14 PM

If the warnings can't be fixed, hide them. It makes the board look better.

Disco_Stu 05-19-2015 05:03 PM

Quote:

Originally Posted by cellarius (Post 2545843)
The policy on warning suppression (which was changed for 4.2.2) has been reverted for 4.2.3. In effect, that line you had to add in 4.2.2 is now already included.

When you don't have the skills or you're just too damn lazy then cover up the problems and don't address them. The customer will never know the difference!!! What a company!!

Lynne 05-19-2015 06:53 PM

Quote:

Originally Posted by MahdyE23 (Post 2545723)
5.5.24. I looked all over for a download in the Mmber's Area, Patch area, couldn't find any version for 4.2.3

If you are running PHP5.5, you need to use vB4.2.3. See post 9 for what to look for to download it.

Digital Jedi 05-19-2015 07:11 PM

Quote:

Originally Posted by Disco_Stu (Post 2545885)
When you don't have the skills or you're just too damn lazy then cover up the problems and don't address them. The customer will never know the difference!!! What a company!!

When error messages are for problems that can not only not be fixed, but are not actual problems, then, yes, you ignore them. You seem to fail to understand what the exact issue is.

Zachery 05-19-2015 08:48 PM

Quote:

Originally Posted by Disco_Stu (Post 2545885)
When you don't have the skills or you're just too damn lazy then cover up the problems and don't address them. The customer will never know the difference!!! What a company!!

The issues are actually CORRECTED in 4.2.3.


All times are GMT. The time now is 04:03 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01315 seconds
  • Memory Usage 1,769KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (23)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete