Go Back   vb.org Archive > vBulletin 5 Connect Discussion > vB5 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-13-2012, 05:26 PM
Anbieter Anbieter is offline
 
Join Date: Oct 2012
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Can't install vb5 - 500 error

Hello guys,

I have a Problem with the vBulletin 5 Beta 13.

If I upload the files to a directory and try to access it, I get a 500 error.

Could anyone help me with setting it up?

Would be very appreciated

Greetings, A.
Reply With Quote
  #2  
Old 10-13-2012, 06:15 PM
Shadow Shadow is offline
 
Join Date: Jan 2011
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Error 500 is a problem on the server.

What configuration are you running on your web server?

Is your .htaccess file present?

Check your error logs to see if there's anything there.
Reply With Quote
Благодарность от:
Anbieter
  #3  
Old 10-13-2012, 06:43 PM
Anbieter Anbieter is offline
 
Join Date: Oct 2012
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Shadow View Post
Error 500 is a problem on the server.

What configuration are you running on your web server?

Is your .htaccess file present?

Check your error logs to see if there's anything there.
I'm actually not sure what I'm looking for, and the server has all permissions...

But I'm not sure, I have a Plesk Panel and I'm not quite sure on how to use it properly.

Vb 4.2.0 is running flawless, just vb5 makes a problem :S

But thanks for the tips.
Reply With Quote
  #4  
Old 10-14-2012, 12:16 AM
snakes1100 snakes1100 is offline
 
Join Date: Dec 2001
Location: Michigan
Posts: 3,733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Enable display_errors in php.ini & HUP your web server, then access your file via http

You can also tail the log via the cmd line in ssh and grep your IP when accessing those files.

tail -f /path/to/log/file | grep "youiphere"

You can also dl/view your access/error logs from ftp in the case of plesk.
Reply With Quote
Благодарность от:
Anbieter
  #5  
Old 10-14-2012, 03:54 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What version of PHP and MySQL are you running?

Did you upload the included .htacess file to the directory? Is the vb5 forum in a sub-directory and is there an .htaccess file in the root?
Reply With Quote
Благодарность от:
Anbieter
  #6  
Old 10-14-2012, 05:20 PM
TheSupportForum TheSupportForum is offline
 
Join Date: Jan 2007
Posts: 1,158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

also remember to add

Code:
# Use PHP 5.3
AddHandler application/x-httpd-php53 .php .php5 .php4 .php3
to your existing .htaccess file from the /upload folder or forum root if you have already uploaded all from /upload
Reply With Quote
Благодарность от:
Anbieter
  #7  
Old 10-15-2012, 06:03 AM
Anbieter Anbieter is offline
 
Join Date: Oct 2012
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
What version of PHP and MySQL are you running?

Did you upload the included .htacess file to the directory? Is the vb5 forum in a sub-directory and is there an .htaccess file in the root?
PHP: 5.3
MySQL:
Code:
Software: MySQL
Software-Version: 5.1.56-community - PMA_MYSQL_STR_COMMENT
I included the .htaccessfile from the upload folder.
the rootfolder has no .htaccess file.

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

Quote:
Originally Posted by snakes1100 View Post
Enable display_errors in php.ini & HUP your web server, then access your file via http

You can also tail the log via the cmd line in ssh and grep your IP when accessing those files.

tail -f /path/to/log/file | grep "youiphere"

You can also dl/view your access/error logs from ftp in the case of plesk.
Haven't found the log file yet :/

Everything you said is enabled.


EDIT: added the only log i've found as attachment.
blanked out server ip, my ip and domain name.
Attached Files
File Type: txt vb5log.txt (2.4 KB, 7 views)
Reply With Quote
  #8  
Old 10-15-2012, 06:12 AM
TheSupportForum TheSupportForum is offline
 
Join Date: Jan 2007
Posts: 1,158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Anbieter View Post
PHP: 5.3
MySQL:
Code:
Software: MySQL
Software-Version: 5.1.56-community - PMA_MYSQL_STR_COMMENT
I included the .htaccessfile from the upload folder.
the rootfolder has no .htaccess file.

--------------- Added 15 Oct 2012 at 08:08 ---------------



Haven't found the log file yet :/

Everything you said is enabled.
i suggest you upload the .htaccess file from upload folder from beta 13 download

then include the following

Code:
# Use PHP 5.3
AddHandler application/x-httpd-php53 .php .php5 .php4 .php3
you will aso need to edit config.php in 2 places

core/includes

and the root folder
Reply With Quote
  #9  
Old 10-15-2012, 06:17 AM
Anbieter Anbieter is offline
 
Join Date: Oct 2012
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by simonhind View Post
i suggest you upload the .htaccess file from upload folder from beta 13 download

then include the following

Code:
# Use PHP 5.3
AddHandler application/x-httpd-php53 .php .php5 .php4 .php3
you will aso need to edit config.php in 2 places

core/includes

and the root folder
Thanks, already included it.

is it correct if i write that my root folder is in:
Code:
httpdocs/vbnew
?

And I've added the logs to my previous post.
Reply With Quote
  #10  
Old 10-15-2012, 08:00 AM
TheSupportForum TheSupportForum is offline
 
Join Date: Jan 2007
Posts: 1,158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Anbieter View Post
Thanks, already included it.

is it correct if i write that my root folder is in:
Code:
httpdocs/vbnew
?

And I've added the logs to my previous post.
if thats where you forum root is then yes
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 01:05 PM.


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.04503 seconds
  • Memory Usage 2,291KB
  • 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
  • (7)bbcode_code
  • (6)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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (4)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete