vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Update to 4.2.2 blew up my board. (https://vborg.vbsupport.ru/showthread.php?t=303172)

tbworld 10-10-2013 10:54 PM

Quote:

Originally Posted by ozzy47 (Post 2452031)
That would be a blond moment :)

<Grin>

--------------- Added [DATE]1381449434[/DATE] at [TIME]1381449434[/TIME] ---------------

Quote:

Originally Posted by eboggs_jkvl (Post 2452035)
To be sure, the above fix is for an attachment problem not the "Upload attachment" issue? I just want to be clear on "attachments"

State which post you are referring too. This thread has become a little wobbly. :)

ForceHSS 10-10-2013 11:47 PM

think he meant mine tbworld

KHALIK 10-11-2013 12:06 AM

Quote:

Originally Posted by kh99 (Post 2451274)

it's the "= &" or "=&" you're looking for. You need to remove the "&".

Thank you, I love you.

tbworld 10-11-2013 12:23 AM

Quote:

Originally Posted by ForceHSS (Post 2452065)
think he meant mine tbworld

No problem @ForceHSS, you can own it :) <Grin>

meaters 10-11-2013 12:33 AM

Quote:

Originally Posted by tbworld (Post 2452029)
Sorry, I looked at the wrong line number. I should have told you this hook: "process_templates_complete".

Oh wonder you did not find it -- I am doing a bit too much multitasking:)

Thanks for the great return feedback. That picture in this case told me everything.

http://store.img-share.eu/r_pngz28d2BD.png

No problem, here is another pic for you but as I explained in this thread disabling the mod doesn't solve the issue.

Errors remain ontop, the forum sidebar is pushed to the bottom and text overlaps everywhere.

I hope Paul M reads this, he's been away all day.

ozzy47 10-11-2013 12:39 AM

Did you by chance try disabling all your mods and see if the error is still there?

Open your config.php and below<?php add this line:

PHP Code:

 define('DISABLE_HOOKS'true); 

So it looks like this:
PHP Code:

<?php
define
('DISABLE_HOOKS'true);
/*=================================================  =====================*\
|| ##################################################  ################## ||
|| # vBulletin 4.2.2


Digital Jedi 10-11-2013 01:49 AM

Quote:

Originally Posted by findingpeace (Post 2451831)
Does anyone know what the benefits of 4.2.2 are over 4.2.1? Will my forum run faster with a new version of PHP? Or is it mostly updates to Facebook + PayPal and adding Panjo? I don't use any of those things, so I don't want to pursue this headache if it's not going to result in any performance or security improvements.

Thanks!

The list of what's been updated is posted here: http://www.vbulletin.com/go/422

Take complaints about the update problems with a grain of salt. They're mostly directly related to modification conflicts. And will depend on the users level of understanding of certain things. Not to mention their level (or lack) of patience.

eboggs_jkvl 10-11-2013 12:57 PM

Quote:

Originally Posted by Digital Jedi (Post 2452121)
The list of what's been updated is posted here: http://www.vbulletin.com/go/422

Take complaints about the update problems with a grain of salt. They're mostly directly related to modification conflicts. And will depend on the users level of understanding of certain things. Not to mention their level (or lack) of patience.


Well, sir, my grain of salt was a site down with no clue why. I've done every update faithfully upon it's release and have not had any issues other than 1 previous problem of "uploading attachments" which proved to be some setting that the ISP needed to make. I accepted that issue as it took a few hours and they located the problem easily through error messages. HOWEVER, the site was functioning perfectly and the one problem they were chasing could "wait" and a later fix was acceptable.

This time, my site was giving a full screen of scrolling warnings and then the forum displayed. The error messages were not coming ICW the upload problem and the ISP was spinning their wheels trying to figure out the issue. Without answers or clues, I saw no reason to stay on 4.2.2 and weather the storm hoping for a cure. Yes, being limited on my coder knowledge, I un-updated back to 4.2.1 as that one worked and currently IS working.

I lost a program called VB Garage Pro and the forum I run is Jaxvette.com. Missing the car information from a car site is not an option. Was it vBulletin's fault? Probably not as it was an added program so I'll try and deal with that issue with the other vendor. That was my "modification" conflict and was trouble shot quickly so that really wasn't the issue as that didn't hamper my board's function. I'm still working with that vendor.

So, in conclusion, the forum once again lost the ability to upload attachments. Why? I still haven't gotten an answer for that. It may be on here by now but I haven't scoured the site today to dig out the answer. My patience was a full day of "try this" to see if it fixes it. Well we got the warnings cleared but the upload and garage were still messed up and no prospects of them ever getting corrected.

I'm not mad about this, I'm disappointed. I now have to read the forum and google the world on every update to see what issues are presented. Then, and only then, I can do the update with all of the OMGs on file so I can keep my site up.

True, I'm not a coder, but I am an end user. Without end users, companies fail in a Capitalistic society.

Elmer Boggs


Edit

Nope, no clue yet as to why the upload attachments is failing on 4.2.2. Bear in mind that I'm not the one person in the whole world with this issue. The last time I think it was a "Post bit" issue but nothing so far on the current issue.

ikorolis 10-11-2013 01:46 PM

Hello everyone

Unfortunately I made the mistake to pass the software upgrade without you suspect that could be a problem as it was the first time that I upgrade the software.

now is the only way as there is no backup before upgrading nor can I do a clean installation from start (preferred quitting altogether my website to convert the blog to put another open source software)

expect to make some kind of upgrade that will fix the problems

an error message that I took after the installation was this:

Code:

Warning: Function split() is deprecated in ..../forum.php(791) : eval()'d code on line 265
(Anyway have update this Mod / Plugin VSa - Visitors In Last X Hours v3.0.5)

Follow instructions and have edit this file class_core.php (includes)
locate lines 5683-5685

Code:
case E_NOTICE:
// Just ignore these completely //
break;

Add lines for Deprecated and/or Strict errors as required ;

Code:
case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;
This will bypass the additional error reporting.

and see this errors on error.log

11-Oct-2013 01:31:39 Europe/Athens] PHP Fatal error: Class 'vB' not found in /home/*****/public_html/includes/class_bootstrap_framework.php on line 101
[11-Oct-2013 01:31:41 Europe/Athens] PHP Fatal error: Class 'vB' not found in /home/*****/public_html/includes/class_bootstrap_framework.php on line 101
[11-Oct-2013 02:11:34 Europe/Athens] PHP Warning: set_error_handler() expects the argument (vb_error_handler) to be a valid callback in /home/*****/public_html/includes/init.php on line 57
[11-Oct-2013 02:11:34 Europe/Athens] PHP Fatal error: Class 'vB_Registry' not found in /home/*****/public_html/includes/init.php on line 60
[11-Oct-2013 02:11:36 Europe/Athens] PHP Warning: set_error_handler() expects the argument (vb_error_handler) to be a valid callback in /home/*****/public_html/includes/init.php on line 57
[11-Oct-2013 02:11:36 Europe/Athens] PHP Fatal error: Class 'vB_Registry' not found in /home/*****/public_html/includes/init.php on line 60
[11-Oct-2013 02:11:37 Europe/Athens] PHP Warning: set_error_handler() expects the argument (vb_error_handler) to be a valid callback in /home/*****/public_html/includes/init.php on line 57
[11-Oct-2013 02:11:37 Europe/Athens] PHP Fatal error: Class 'vB_Registry' not found in /home/*****/public_html/includes/init.php on line 60

init.php
Line 57 set_error_handler('vb_error_handler');
Line 60 $vbulletin = new vB_Registry();

class_bootstrap_framework.php
Line 101 vB::init($relative_path);

Anyidea how to fix?

Shared Hosting Package

Server Type Linux
Web Server Apache v2.2.24
PHP 5.3.23
MySQL Version 5.1.70-cll

Time Date Setting (PHP)

Code:

date

date/time support        enabled
"Olson" Timezone Database Version        2013.2
Timezone Database        external
Default timezone        Europe/Athens

date.default_latitude        31.7667        31.7667
date.default_longitude        35.2333        35.2333
date.sunrise_zenith        90.583333        90.583333
date.sunset_zenith        90.583333        90.583333
date.timezone        Europe/Athens        Europe/Athens


Peafor 10-11-2013 02:44 PM

Quote:

Originally Posted by ForceHSS (Post 2451838)
You don't need a backup, upload the 4.2.1 files then run the upgrade.php it worked for me on all my sites I tested this first on my test site to make sure it worked first

Just make sure you pick the left side option when going from 4.2.2 to 4.2.1

I think I might have to try this.

I also did the upgrade and got errors, thankfully I took back ups of database and forum folder. However, silly me, I reverted to the 4.2.0 patch 3 forum folder but did not replace the database to the saved version.

Now I have a 4.2.2 database with 4.2.0 patch 3 forum. :(

My only option is to try ForceHSS suggestion above or revert to the last saved 'old' version of my database/forum, which was yesterday morning, but I will lose members and posts that have happened in the mean time.

Can I just ask ForceHSS - when you say 'pick the left side option' what does this mean?

I appreciate this thread, don't feel so alone now. :)


All times are GMT. The time now is 09:01 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.01316 seconds
  • Memory Usage 1,768KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete