vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Can write to datastore, but not retrieve. (https://vborg.vbsupport.ru/showthread.php?t=174723)

Marco van Herwaarden 04-01-2008 08:00 AM

How does that answer my question??

It does not matter what you do with it, but serializing is an array operation, not a string operation.

Boofo 04-01-2008 08:07 AM

I understand. I'm just telling you what I think he is trying to do, not what is the right way to do it.

rob30UK 04-01-2008 03:27 PM

hi, ok I didnt know what serialize was for arrays or not... either way I tried it without serialize.

Please try and reproduce this:-

try this as a cron file:-
Code:

$kwdStr="I will not show at the end of every post!";
build_datastore('glossary_links', $kwdStr);

Then try this as a plugin on postbit_display_complete
Code:

$this->post['message'] .= $vbulletin->glossary_links;
By rights, that code SHOULD work!

I tried swopping the plugin for this code
Code:

if (method_exists($vbulletin->datastore,'do_fetch'))
 { // Datastore extension exists, use it
  $vbulletin->datastore->do_fetch('glossary_links',$errors);
  if ($errors[0])
  { // Fetch failed, use original datastore
  $vbulletin->datastore->do_db_fetch("'glossary_links'");
  }
 }
 else
 { // No extension, use original datastore
  $vbulletin->datastore->do_db_fetch("'glossary_links'");
 }
 $glossary_links = $vbulletin->glossary_links;
$this->post['message'] .= $glossary_links;

That makes much more sense to me and was optimistic that that would work...
but still nothing.

Does anyone know why this isnt working and importantly how to fix it?


All times are GMT. The time now is 07:47 PM.

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.01042 seconds
  • Memory Usage 1,715KB
  • 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
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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