vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   vBulletin Blog - vBdiary & vBblog - Convert a forum into a diary or weblog (blog) forum. (https://vborg.vbsupport.ru/showthread.php?t=134497)

Calibre_k 12-22-2006 10:40 PM

ADULT SEO... any ideas why I get this........

I get this when I try to add .xml

Database error in vBulletin 3.6.4:

Invalid SQL:
ALTER TABLE `forum` ADD `is_diary` INT( 5 ) NOT NULL DEFAULT '0';;

MySQL Error : Duplicate column name 'is_diary'
Error Number : 1060

Adult SEO 12-22-2006 11:15 PM

Hi!

I don't know as the Install Script should suppress errors.

This is the orignal v1.1 install code:
PHP Code:

$db->hide_errors();
$result $db->query_write("ALTER TABLE `".$vbulletin->config["Database"]["tableprefix"]."forum` ADD `is_diary` INT( 5 ) NOT NULL DEFAULT '0';");
$result $db->query_write("ALTER TABLE `".$vbulletin->config["Database"]["tableprefix"]."thread` CHANGE `password` `diary_password` VARCHAR( 255 ) NOT NULL;");
$result $db->query_write("ALTER TABLE `".$vbulletin->config["Database"]["tableprefix"]."thread` ADD `diary_password` VARCHAR( 255 ) NOT NULL DEFAULT '';");
$result $db->query_write("CREATE TABLE `".$vbulletin->config["Database"]["tableprefix"]."diarythumbnails` (  `threadid` int(20) unsigned NOT NULL DEFAULT '0',  `filedata` mediumblob,  `dateline` int(10) unsigned NOT NULL DEFAULT '0',  `filename` varchar(100) NOT NULL DEFAULT '',  `visible` smallint(6) NOT NULL DEFAULT '1',  `filesize` int(10) unsigned NOT NULL DEFAULT '0',  `width` smallint(5) unsigned NOT NULL DEFAULT '0',  `height` smallint(5) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`threadid`));");
$db->show_errors(); 

You can try to do each query manualy from your vBulletin adminpanel -> Maintainance -> Execute SQL Query

You simply copy the code between the query_write("..."); and replace ".$vbulletin->config["Database"]["tableprefix"]." with your table prefix.

Best Regards,
Jan Jaap

Adrian Schneider 12-23-2006 06:59 AM

Just to save you some time, you can use this
PHP Code:

TABLE_PREFIX 

instead of
PHP Code:

$vbulletin->config["Database"]["tableprefix"


basilrath 12-23-2006 02:35 PM

Quote:

Error in the ACP. No announcement. see screenshout
Attached Thumbnails

same here

Adult SEO 12-23-2006 02:46 PM

Quote:

Originally Posted by basilrath (Post 1144011)
same here

Hi!

This is due to missing phrases. This will be fixed with the next update.

Again hours of work have been spent on the original vBulletin datamanager wich is pretty adanced!

I'm almost done with it.

The nice thing of all this work is, that all will perform like vBulletin default.

Best Regards,
Jan Jaap

basilrath 12-23-2006 03:16 PM

sorry to moan !!!!!!!!!!

its a great hack

daft question can we allow members to view the blog or diary etc without them being able to post in reply to the postings within the particular diary or does the password set up mean you can view and post in reply all time.

im confusing myself lol

i mean can you make it so members can view the particular diary / blog entry but not be able to reply to it unless that particular member allowas it.

the password system stops the viewing but allows posting in reply when not passworded.

just wondererd sorry to go on lol merry xmas by the way !

Adult SEO 12-23-2006 04:43 PM

Hi!

Other users then the author even the admin should not be able to reply!

How were you able to reply to a diary of a difrent user?

Best Regards,
Jan Jaap

fishmaster 12-23-2006 04:57 PM

Jan,

When a member has GARS loaded it causes GARS to malfunction causing a database error. I believe it may be do to the template?

Adult SEO 12-23-2006 09:58 PM

Hi!

The Mod has been updated! It now offers an entry page where registered users are able to post comments.

It may look simple, yet it took me 15 hours today to get the comment system setup since it's based on the original vBulletin Postbit factory. The effort is that it will be useable on big high traffic forums and that it's compatible with all servers.

Have Fun!
Jan Jaap

Adult SEO 12-23-2006 09:59 PM

<a href="http://www.grijsje.nl/grijze-roodstaart-dagboeken/8135-dagboek-isis.html" target="_blank">http://www.grijsje.nl/grijze-roodsta...boek-isis.html</a>

MrNase 12-23-2006 10:23 PM

Stupid question but what is the difference between 'blog' and 'diary'?

Why are all diary entries titled with '1 January 1970' and here's the error I get when I comment a diary entry:

Quote:


Warnung: require_once(/www/htdocs/includes/functions_diarycomment.php) [function.require-once]: failed to open stream: No such file or directory in /includes/vbdiary_handlecommentpost.php (Zeile 2)

Fatal error: require_once() [function.require]: Failed opening required '/www/htdocs/includes/functions_diarycomment.php' (include_path='.:/usr/share/php:..') in /www/htdocs/includes/vbdiary_handlecommentpost.php on line 2

Adult SEO 12-23-2006 10:36 PM

Hi!

I forgot to include the functions_diarycomment.php file in the zip. I will upload it now.

Regarding the titles, this must be a bug. I will check it.

Best Regards,
Jan Jaap

Adult SEO 12-24-2006 07:18 AM

Hi!

I am not able to reproduce the title date error. Could you please provide me with an url where this occurs?

Best Regards,
Jan Jaap

basilrath 12-24-2006 09:48 AM

ive got the same error in as much the entries all have date entry of 1 january 1970

the entries are fine and the product works other than the date as i can see ?

this is the url to the site ........i created a test diary forum as you can see jaap

http://www.recommenditall.com/thebig/forums/index.php

i have left it open for non registered to view so you can see the problem with the date settings

Hornstar 12-24-2006 11:39 AM

Nice work, this is something ill give a go on my other site. thanks.

Adult SEO 12-24-2006 03:16 PM

Ok, thanks I will check the date issue after Christmas.

LILMORA4 12-24-2006 04:59 PM

does this work on vb 3.6.3?

LILMORA4 12-24-2006 06:06 PM

Is there even instructions to this?

basilrath 12-24-2006 06:43 PM

there dont need to be just upload as needed to relevant root

LILMORA4 12-24-2006 08:42 PM

Quote:

Originally Posted by basilrath (Post 1144561)
there dont need to be just upload as needed to relevant root

Still dont quite understand ya...Thanks tho!:cross-eyed:

soletrader 12-25-2006 03:58 AM

How do I make it so that anyone can post entries and not just the author?

fishmaster 12-25-2006 02:03 PM

Can you look at the conflict between GARS and this VB Hack.

When you are using GARS, this script disables GARS.

VB 3.6.3

Lottis 12-25-2006 04:48 PM

Quote:

Originally Posted by LILMORA4 (Post 1144625)
Still dont quite understand ya...Thanks tho!:cross-eyed:

There is no instruction, so i have to try to guess my way to upload to the correct roots.
But nothing shows up, so i must be wrong.
I tought --->diaryimage.php should be in the forumroot.
But, as i wrote, im not shure. Because it wont show up in the forummanager i ACP.

tme_power 12-26-2006 10:14 AM

When I delete post I saw this error
Code:

Database error in vBulletin 3.6.4:

Invalid SQL:

                                UPDATE user AS user, post AS post
                                SET
                                        `user.vbbux` = `user.vbbux` + `post.vbbux`
                                WHERE
                                        post.threadid = '15668'
                                        AND user.userid = post.userid;

MySQL Error  : Unknown column 'user.vbbux' in 'field list'
Error Number : 1054
Date        : Tuesday, December 26th 2006 @ 06:12:46 AM
Script      : http://domain/inlinemod.php?do=dodeletethreads&threadids=15668
Referrer    : http://domain/inlinemod.php?forumid=125
IP Address  : 222.253.24.54
Username    : administrator
Classname    : vb_database


adonfun 12-26-2006 10:42 AM

Great Plugin!!

Nominated for MOTM!!

Groetjes

navajotex 12-26-2006 10:55 AM

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, December 26th 2006 @ 01:50:13 PM

basilrath 12-26-2006 12:41 PM

jaap i believe is looking at the problem

maxicep 12-26-2006 12:42 PM

thanks nice hack.
but take some errorrs 3.6.2

adonfun 12-26-2006 01:30 PM


Fatal error: Class 'vB_DataManager_blog' not found in /home/...../includes/functions_diarycomment.php on line 206

I did upload the file, so it should be ok, right.
________________________________________

Why not add a few lines of instructions, or use mine if these are correct:

1. Upload the content of /includes to your /includes directory on the server
2. Upload diaryimage.php to the root of your forum (for example /forum)
3. Login into your admin panel > Plugins & Products > Manage Products > [Add/Import Product] and import the file /import/product-vbulletindiary.xml
4. You are done

Forumi Shqiptar 12-26-2006 09:52 PM

And where can u configure the forums??? Where do u go to make ur forum to look as a blog or diary???? Please do give full instructions as not everyone might know all this.

Thanks waiting for explanation b4 i click install

basilrath 12-27-2006 05:56 AM

First of all upload the relevant files to relevant areas ie..............

Diaryimage forum root
Files within includes to forumroot/includes
Import vbulletin - diary as a product

Go to ACP /Forums and Moderators / add a forum ...........title, description, parent etc
Then make it a diary or blog (drop down box at the bottom)

Should be done

However i beieve jan is working on the issue with the date problem.............

adonfun 12-27-2006 10:31 AM

How were your christmas days Jaap :)

I suddenly get the errer "no Datamanager" when posting a new blog...but the message is posted..raar

Also...when I post several blog entries all is fine and looking good. But when I delete all blogs and leave 1,..then it looks like a regular forum post. So when I try to add another blog it is just a forum post. It doesn't give me the possibility to enter a password or use an image for the blog. I checked the forum and it somehow jumped back to Forum type (default, diary or blog): Default Forum

__________________________________________________ _

Oke, here a summary of the bugs that I encountered with the BLOG. Hoping that it might help you Jaap fixing these bugs one day if more people have these bugs :)
  1. Error message "no datamanager" when posting a new blog with Weblog Thumnail
    BUT the post appears in the blogforum. Posting a blog with or without password is no problem.
  2. Forum type (default, diary or blog) switches back to Default Forumwhen deleting a blogpost.
  3. When posting a 'quick reply' in a existing blogpost I get the error:
    
    Fatal error: Class 'vB_DataManager_blog' not found in /home/eikwijt/domains/mijneikwijt.nl/public_html/forum/includes/functions_diarycomment.php on line 206
  4. When I post an empty 'quick reply' in a blogpost then an empty popup popuppes. But when I post an empty 'reply' in a blogpost then the popup contains the reason why it popuppes.
  5. When posting a 'reply' no error encounters
  6. When I hide a blogpost, I can not tell which one I hided as admin. This blogpost isn't marked or anything, nothing says to me which blogpost is hided or soft deleted.

Am I the only one with these bugs?

basilrath 12-27-2006 12:44 PM

nope i can say ive got the same although its early stages as the guy has said ............

xmas is a relaxing time lol

give hime time

adonfun 12-27-2006 01:05 PM

Quote:

Originally Posted by basilrath (Post 1145776)
nope i can say ive got the same although its early stages as the guy has said ............

xmas is a relaxing time lol

give hime time

I am not rushing him Basil. I am only posting what I encounter in case he wasn't aware of it. If I am the only one with these bugs then there is something wrong with my forum script. But if more people have these bugs then Jaap can do something about it. If I don't speak, Jaap wouldn't know perhaps.

ETA: where do I get the name Jan from? His name is Jaap right?
ETA2.. nvm.. Jan Jaap it is :)

basilrath 12-27-2006 01:17 PM

lol jan is correct !

i agree and yes its always worth knowing bugs .............much better for the end product !

Lottis 12-27-2006 02:21 PM

Quote:

Originally Posted by basilrath (Post 1145653)
First of all upload the relevant files to relevant areas ie..............

Diaryimage forum root
Files within includes to forumroot/includes
Import vbulletin - diary as a product

Go to ACP /Forums and Moderators / add a forum ...........title, description, parent etc
Then make it a diary or blog (drop down box at the bottom)


Should be done


However i beieve jan is working on the issue with the date problem.............


Thank you. :)

ccmoon 12-27-2006 05:59 PM

Is this working OK with 3.6.0?

basilrath 12-27-2006 11:00 PM

its got a few probs as stated on 3.6.x

be patient

parabat 12-30-2006 11:36 PM

Waiting for the bug fixes before I install on my 3.6.4 board. Have the perfect use for it :classic:

-Parabat

scan-pa 12-31-2006 04:48 PM

Great MOD, will install on main Board after these Errors are fixed. This add-on will be well used by one of my users.


All times are GMT. The time now is 11:41 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.01390 seconds
  • Memory Usage 1,840KB
  • 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
  • (1)bbcode_code_printable
  • (3)bbcode_php_printable
  • (7)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
  • (40)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