PDA

View Full Version : intalling error


ade291067
09-28-2016, 12:35 PM
<HTML>
<HEAD>
<TITLE>500 Internal Server Error</TITLE>
<BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
</HEAD><BODY>
<H1>Internal Server Error</H1>
The server encountered an internal error or
misconfiguration and was unable to complete
your request.<P>
Please contact the server administrator to inform of the time the error occurred
and of anything you might have done that may have
caused the error.<P>
More information about this error may be available
in the server error log.<P>
<HR>
<ADDRESS>
Web Server at xxxxxxxx
</ADDRESS>
</BODY>
</HTML>

<!--
- Unfortunately, Microsoft has added a clever new
- "feature" to Internet Explorer. If the text of
- an error's message is "too small", specifically
- less than 512 bytes, Internet Explorer returns
- its own error message. You can turn that off,
- but it's pretty tricky to find switch called
- "smart error messages". That means, of course,
- that short error messages are censored by default.
- IIS always returns error messages that are long
- enough to make Internet Explorer happy. The
- workaround is pretty simple: pad the error
- message with a big comment like this to push it
- over the five hundred and twelve bytes minimum.
- Of course, that's exactly what you're reading
- right now.

error log in a zip file if it helps

Dragonsys
09-28-2016, 01:34 PM
what version of IIS? What DB software?

ade291067
09-28-2016, 02:01 PM
what version of IIS? What DB software?

not sure what you mean when i first was set up i paid for install then tried upgrade that cocked all up so i am trying to start from scratch again

Dragonsys
09-28-2016, 02:54 PM
not sure what you mean when i first was set up i paid for install then tried upgrade that cocked all up so i am trying to start from scratch again

What version of IIS is your webserver running?
What Database software are you using?

Based on the error, there might be an issue with your IIS configuration.

ade291067
09-28-2016, 03:13 PM
What version of IIS is your webserver running?
What Database software are you using?

Based on the error, there might be an issue with your IIS configuration.

all i know is the site is on plesk as it always has been database is PHP support (PHP version)5.6.26

Host: localhost:3306 (MySQL)
if that is what you require

Dragonsys
09-28-2016, 03:28 PM
[Wed Sep 28 16:45:03 2016] [error] [client 82.27.125.162] Premature end of script headers: install.php, referer: http://www.let-the-fun-times-start.com/core/install/install.php
[Wed Sep 28 16:45:03 2016] [error] [client 82.27.125.162] File does not exist: /var/www/vhosts/let-the-fun-times-start.com/error_docs/internal_server_error.html, referer: http://www.let-the-fun-times-start.com/core/install/install.php

It looks like the files are corrupt, or didn't fully upload to the server. I would re-download the package from vb.com and then reupload everything and try again

ade291067
09-28-2016, 04:34 PM
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
me@gmail.com and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
<hr>
<address>Apache Server at www.let-the-fun-times-start.com Port 80</address>
</body></html>

Dragonsys
09-28-2016, 05:15 PM
ok so you are running Apache not IIS.
Make sure the file permissions are all correct. File should be 644 and folders 755

ade291067
09-28-2016, 08:39 PM
same error as before

--------------- Added 1475151027 at 1475151027 ---------------

Database error in vBulletin :

Invalid SQL:
SELECT * FROM setting;

MySQL Error : Table 'my database.setting' doesn't exist
Error Number : 1146
Request Date : Thursday, September 29th 2016 @ 02:20:09 PM
Error Date : Thursday, September 29th 2016 @ 02:20:09 PM
Script : http:///
Referrer : http://uptime.commy web site.com
IP Address : 45.79.95.64
Username :
Classname : vB_Database_MySQLi
MySQL Version :

noypiscripter
09-29-2016, 02:09 PM
It looks like you are using table prefix in the database. Make sure that $config['Database']['tableprefix'] is correctly set in core config.php.

ade291067
09-29-2016, 04:42 PM
no idea where i going wrong or what i need to do i need it explained in baby english lol

this is how it reads

// ****** TABLE PREFIX ******
// Prefix that your vBulletin tables have in the database.
$config['Database']['tableprefix'] = '';

Dragonsys
09-29-2016, 05:20 PM
same error as before

--------------- Added 1475151027 at 1475151027 ---------------

Database error in vBulletin :

Invalid SQL:
SELECT * FROM setting;

MySQL Error : Table 'my database.setting' doesn't exist
Error Number : 1146
Request Date : Thursday, September 29th 2016 @ 02:20:09 PM
Error Date : Thursday, September 29th 2016 @ 02:20:09 PM
Script : http:///
Referrer : http://uptime.commy web site.com
IP Address : 45.79.95.64
Username :
Classname : vB_Database_MySQLi
MySQL Version :

looking at this you need to set your prefix in config.php as
$config['Database']['tableprefix'] = 'my database';

seems odd to have a space in it though...

ade291067
09-29-2016, 06:28 PM
An error has occurred with your database. Please contact vBulletin Support for assistance.

Module: install, Step 2 Database Error:1064

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'databaseaccess ( userid INT UNSIGNED NOT NULL DEFAULT '0', nodeid SMALLINT UNS' at line 3

Query:

CREATE TABLE my databaseaccess (
userid INT UNSIGNED NOT NULL DEFAULT '0',
nodeid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
accessmask SMALLINT UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY userid (userid, nodeid)
) ENGINE = InnoDB

Lynne
09-29-2016, 10:28 PM
You do not enter "my database" into that line... you enter what *your* database prefix is. He was giving an example.

ade291067
09-30-2016, 06:54 AM
You do not enter "my database" into that line... you enter what *your* database prefix is. He was giving an example.
so *your* do you mean the actual database name or something else sorry for being thick but last time they set it up for me

Dragonsys
09-30-2016, 11:52 AM
You do not enter "my database" into that line... you enter what *your* database prefix is. He was giving an example.
so *your* do you mean the actual database name or something else sorry for being thick but last time they set it up for me

You need to log into your database and check the vBulletin tables for a prefix in the names. For example check the event table, anything in the name before the word event, is the prefix.

So if your table is my_event then your prefix is my_

noypiscripter
09-30-2016, 12:33 PM
Just specify 'vb_' or something as long as it doesn't have a space. This will be prepended in your database table names. For example, node table will become vb_node.

ade291067
09-30-2016, 12:55 PM
back to this error

Unexpected Text:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
myemail@gmail.com and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
<hr>
<address>Apache Server at www.let-the-fun-times-start.com Port 80</address>
</body></html>

Lynne
09-30-2016, 05:25 PM
Normally, the first table in your database should be called "access". However, if you are using a prefix, as an example a prefix of "vb_", then the first table would be called "vb_access". So, what is the name of the first table in your vbulleitn database?

ade291067
10-03-2016, 06:33 PM
day 5 and still getting no where at all same errors all the time never had this with vb4

noypiscripter
10-03-2016, 07:10 PM
Lynne has a question in post #19 but you haven't responded to it.