Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #31  
Old 10-10-2013, 02:04 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by CarlitoBrigante View Post
And for forum owners, a possible solution to this is just to change this in includes/class_core.php line 5733

Code:
              if (error_reporting() OR ini_get('display_errors'))
              {
                  if (defined('DIR'))
                  {
                      require_once(DIR . '/includes/functions_log_error.php');
                      $message = "Warning: $errstr in $errfile on line $errline";
                      log_vbulletin_error($message, 'php');
                  }
to this

Code:
              if (error_reporting() OR ini_get('display_errors'))
              {
                  if (defined('DIR'))
                  {
                      require_once(DIR . '/includes/functions_log_error.php');
                      $message = "Warning: $errstr in $errfile on line $errline";
                      log_vbulletin_error($message, 'php');
                                if(!ini_get('display_errors')) return;
                  }
This is a very rushed out solution, and I encourage you guys to double check it as I really really do not have the time (do not want to be mean, I just have been up in front of the monitor for 18 hours straight upgrading stuff already).

--------------- Added 10 Oct 2013 at 03:17 ---------------

Guys, I can confirm I had a similar problem with attachments in a forum and it was, once again, caused by the issue I posted above about warnings coming out at the head of the AJAX response. Using the fix above and hiding the display errors made them work for me.

Not sure this covers also your cases (it does not seem to as some of you are reporting issues with fresh installs which should not contain deprecated messages), but just double check this is not what is causing the problem for you as well.
tried that did not work so just went back to 4.2.1
Reply With Quote
  #32  
Old 10-10-2013, 01:05 PM
Peafor Peafor is offline
 
Join Date: Aug 2011
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've got this same problem and had to revert back to the old version to get my site back online.

I have two forums, both on the same server, both were version 4.2.0 patch level 3 and upgraded to 4.2.2

One upgraded perfectly without a problem, the other has this time zone error which locked me out of the admin panel.
Reply With Quote
  #33  
Old 10-10-2013, 01:09 PM
eboggs_jkvl eboggs_jkvl is offline
 
Join Date: Feb 2005
Location: Jacksonville Florida
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
I get a error for attachments as well
Your error shows "undefined" on mouse hover, mine at least says "Upload Failed".

I'm 70 years old and I'm not a programmer. I can be "led" pretty easily but I don't "do" new code on my own.

I'm looking into updating my version of php and I hope this is the issue. If the problem is purely from the vb code, then I need new files or explicit instructions on what code to add/change in some mysterious php file.

Elmer

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

Quote:
Originally Posted by Peafor View Post
I've got this same problem and had to revert back to the old version to get my site back online.

I have two forums, both on the same server, both were version 4.2.0 patch level 3 and upgraded to 4.2.2

One upgraded perfectly without a problem, the other has this time zone error which locked me out of the admin panel.
The time zone errors can be fixed with the php.ini update. I think that answer is in post #5 in this thread on the warning messages for the time zone error.


Elmer
Reply With Quote
  #34  
Old 10-10-2013, 01:43 PM
Peafor Peafor is offline
 
Join Date: Aug 2011
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eboggs_jkvl View Post
Your error shows "undefined" on mouse hover, mine at least says "Upload Failed".

I'm 70 years old and I'm not a programmer. I can be "led" pretty easily but I don't "do" new code on my own.

I'm looking into updating my version of php and I hope this is the issue. If the problem is purely from the vb code, then I need new files or explicit instructions on what code to add/change in some mysterious php file.

Elmer

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



The time zone errors can be fixed with the php.ini update. I think that answer is in post #5 in this thread on the warning messages for the time zone error.


Elmer
Thank you Elmer, yes I did read that but to be honest I haven't a clue how to do it I have asked for vBulletin support so maybe they will help (Should I hold my breath? )
Reply With Quote
  #35  
Old 10-10-2013, 01:59 PM
Arrogant-One's Avatar
Arrogant-One Arrogant-One is offline
 
Join Date: Jul 2007
Location: Brisbane
Posts: 196
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Peafor View Post
I've got this same problem and had to revert back to the old version to get my site back online.

I have two forums, both on the same server, both were version 4.2.0 patch level 3 and upgraded to 4.2.2

One upgraded perfectly without a problem, the other has this time zone error which locked me out of the admin panel.
Oh, thank God. I am not the only one with this problem.

So, here is my sob story. Was using vB 4.1.12, all good, no problemo's. One day some Arabic hackers mess up my site. They created Admin accounts. I upgraded to 4.2.2 and yes, deleted the install folder, nuked the fake Admin accounts. Shortly afterward my site was getting its head flushed down the toilet where it remains currently. Click link below in my sig to see for yourself.

Now I am trying to re-install the upload folder of the vB 4.1.12, but I have noticed the includes folder does not contain the config.php, only config.php.new

Any guidance from you good folks would be appreciated.

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

Quote:
Originally Posted by Peafor View Post
I've got this same problem and had to revert back to the old version to get my site back online.
I would like to try this. Please advise, step by step, how I can revert to an older model of vB.
Reply With Quote
  #36  
Old 10-10-2013, 02:10 PM
eboggs_jkvl eboggs_jkvl is offline
 
Join Date: Feb 2005
Location: Jacksonville Florida
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Someone told me you can't "step" back in vb to 4.2.1. The only way is to get a backup from the ISP and load that backup and lose whatever is "new" from the date of the backup.

ELmer
Reply With Quote
  #37  
Old 10-10-2013, 02:16 PM
Arrogant-One's Avatar
Arrogant-One Arrogant-One is offline
 
Join Date: Jul 2007
Location: Brisbane
Posts: 196
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eboggs_jkvl View Post
Someone told me you can't "step" back in vb to 4.2.1. The only way is to get a backup from the ISP and load that backup and lose whatever is "new" from the date of the backup.

ELmer
Okay, but does my site look normal to you, or does it look hacked? What would you recommend I do here?
Reply With Quote
  #38  
Old 10-10-2013, 02:19 PM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eboggs_jkvl View Post
Someone told me you can't "step" back in vb to 4.2.1. The only way is to get a backup from the ISP and load that backup and lose whatever is "new" from the date of the backup.

ELmer
Its easy just upload the 4.2.1 files and run the upgrade.php it will give you two options at the start pick the one on the left
Reply With Quote
  #39  
Old 10-10-2013, 02:21 PM
Arrogant-One's Avatar
Arrogant-One Arrogant-One is offline
 
Join Date: Jul 2007
Location: Brisbane
Posts: 196
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
Its easy just upload the 4.2.1 files and run the upgrade.php it will give you two options at the start pick the one on the left
How do I run the

upgrade.php

Thanks for your help.
Reply With Quote
  #40  
Old 10-10-2013, 02:21 PM
eboggs_jkvl eboggs_jkvl is offline
 
Join Date: Feb 2005
Location: Jacksonville Florida
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Arrogant-One View Post
Okay, but does my site look normal to you, or does it look hacked? What would you recommend I do here?
Friend,

I'm the last person that you should ask for expert opinion on hacked or looking good. I know my limitations and that's why I'm asking questions on this forum.

Until someone comes up with a solution, my "upload attachments" functionality is just sitting there, dead.

I'm looking into updating my version of PHP to see if that helps but I'm pretty much screwed here unless I get a backup reloaded from my ISP putting me back on v4.2.1.

I clicked on ozchess and got this:
Quote:
An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.
Elmer
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 12:52 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04305 seconds
  • Memory Usage 2,293KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (11)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete