vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Modification Log (https://vborg.vbsupport.ru/showthread.php?t=71826)

burnist 11-18-2004 08:19 PM

They worrying thing is the thats the same version I'm using. I just looked at the vB install file and it had the equivelant line broken into
[sql]
PRIMARY KEY (modid)
)
[/sql]

Try that and maby it'll work :)

outlaw621 11-18-2004 09:00 PM

Quote:

Originally Posted by burnist
They worrying thing is the thats the same version I'm using. I just looked at the vB install file and it had the equivelant line broken into
[sql]
PRIMARY KEY (modid)
)
[/sql]

Try that and maby it'll work :)

I tried the following but I got the same error:
Code:

CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10)
PRIMARY KEY (modid)
)

and I also tried it this way:
Code:

CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10)
PRIMARY KEY(modid)
)

I tired both ways via vBulletin and also in phpMyAdmin.

burnist 11-19-2004 09:29 AM

[sql]
CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10),
PRIMARY KEY(modid)
)
[/sql]

maby a comma after date int(10) may help =-/

outlaw621 11-19-2004 09:43 AM

Quote:

Originally Posted by burnist
[sql]
CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10),
PRIMARY KEY(modid)
)
[/sql]

maby a comma after date int(10) may help =-/

That did it. Database was created without any errors. Thank you for all your help and patience.

burnist 11-19-2004 03:56 PM

Quote:

That did it. Database was created without any errors. Thank you for all your help and patience.
No problem, happy to help :P

jluerken 11-22-2004 07:56 AM

Quote:

Originally Posted by burnist
No problem, happy to help :P

What about the comment field? *smile*

DS MrSinister 11-26-2004 05:00 AM

I get this error when I try to add in the info of the hacks..

Code:

Database error in vBulletin 3.0.3:

Invalid SQL: INSERT INTO modslog (name,description,author,version,date) VALUES ('Modification Log','Manual Log of Modification add to vb','','1.0.0','1101452197')
mysql error: Unknown column 'author' in 'field list'

mysql error number: 1054


HellRazor 11-27-2004 11:37 PM

That error is due to a bad SQL query in the install text. In the SQL query, "author" is misspelled as "authur".

To fix this:

In AdminCP, go to Execute SQL Query under Import & Maintenance.

First execute this query to delete the incorrect table:

DROP TABLE IF EXISTS modslog;

Then execute this query to create a corrected table;

CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
author varchar(250),
version varchar(250),
date int(10),
PRIMARY KEY(modid))

HellRazor 11-28-2004 12:02 AM

Also, the instructions tell you to place the phrases under Control Panel Global. This is partially incorrect.

Place modslog_actions and modslog_name under Control Panel Global.

Place modslog_moddeleted, modslog_modedited, and modslog_modadded under Control Panel Stop Message.

HellRazor 11-28-2004 12:35 AM

There is another spelling error in modslog.php, where "author" is again misspelled "author". If you don't correct this, the author's name will not get added when you enter a new modification to the log.


All times are GMT. The time now is 04:33 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.01129 seconds
  • Memory Usage 1,740KB
  • 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
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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