![]() |
i have the version 1.91 and still get problems when edit the post
is there any way to clear the tag[media] from all post ? |
Yoehoeee nix. lol
Time for an update! |
Is it possible to use this product with vBlog?
And how do you activate it? Because i doesnt work for me (version 1.91). |
very nice mod:D
|
im getting a problem when i go into a thread/try to post a new one:
Parse error: syntax error, unexpected T_STRING, expecting ')' in /homepages/38/d208038817/htdocs/goldbrick/plugins/bbcode_create.php on line 53 Any ideas? |
@ Greenskull;
Download and upload the package 1.5 and also upload the 1.91 package. (both!) Chmod goldbrick/cache to 777. |
Ok... I give...
I have been trying all afternoon to set this up to accept images via the attachment manager, and use the goldbrick media player to run them as a slideshow what am I doing wrong? I can post a link to an image in the message box, it works fine. I can upload a video via the attachment manager, it works fine. If I upload an image normally, it uses lightbox still... If I turn lightbox off, and upload an image, it just makes a new window. HELP!! |
anyone?
:confused: |
Hey, you should add compatibility with Revver, that would be great!
|
Hi, nix!
I installed the mod 3 months ago. It works fine for me. But I had problems with the pages with lots of photos, they opend very slowly (about 3 min). I didn't know the cause of this until I found out that the tables gb_cache and gb_media in my database have about 1,5 million records each. After that I turned on Goldbrick Cache in Goldbricks options, as you wrote here, and set the chmod for the cache folder to 777. The cache works fine! The pages with lots of photos load slowly only the first time, after that they open very quickly. But I have one question. You wrote: Quote:
Please, answer. And thanks again for the mod. |
I do not await a reply, tried by myself. Initially, I renamed the tables gb_cache and gb_media. Nothing happened, the forum works fine. Then I just created new tables gb_cache and gb_media, using queries from the file product-goldbrick.xml, and renamed the old tables removed. I understand that when installed option Zend cache these tables are not used. Forum works fine -- quickly, without delay. Well this information would be added to the first message describing Goldbrick.
|
Is there any way to "hide" this variable?
so24437.addVariable("file","http://www.myforum.com/forum/attachment.php?attachmentid=24437.mp3"); Users can't download the mp3 (they can only listen to it), but when they view the page source code and copy / paste this url, they can download the mp3 :( |
is not working ! the pages hang up ! and nothing works ! how to slove ?
|
With firefox this doesnt work at all, with IE it works, but on close it hangs.
IE7 and FF 3.xx, VBB 3.7.x I have some *.swf videos, and sadly it did worked before, cant remember in what config. |
Recently upgraded to 3.7.4 and pages hang up. Ran fine on 3.7.0.
Love this mod, looking forward to the fix. |
I tried 1.91 and my header is messed.
On a thread with media inside it I see the following at the top of the page. Code:
";'); } if ($vbulletin->options['gb_enabled']) { eval('$headinclude .= "' . fetch_template('goldbrick_header') . '";'); } tin->options['gb_height'], 'autoplay' => $vbulletin->options['gb_autoplay'], 'loop' => $vbulletin->options['gb_loop'] ); return $gb_options; } } /** * Fetches all old content from the database, and checks if it's still active. * If it's not, it will be reverted to its [url] form. * * @param integer Expiration period */ function goldbrick_exec_cleanup($hashes) { global $vbulletin; require_once(DIR . '/goldbrick/includes/class_goldbrick_cache.php'); $goldbrick = new Goldbrick_Cache($vbulletin); $media = $goldbrick->fetch_expired_media($hashes); $to_revert = array(); $to_remove = array(); $to_bump = array(); foreach ($media as $link) { if (empty($link['postids'])) { $to_remove[] = $link['hash']; continue; } if ($goldbrick->is_inactive($link['url'])) { $to_revert[] = $link; $to_remove[] = $link['hash']; continue; } $to_bump[] = $link; } if (defined('GOLDBRICK_DEBUG_CLEANUP')) { goldbrick_debug('revert, remove, bump', $to_revert, $to_remove, $to_bump); } if (!empty($to_revert)) { $goldbrick->revert_posts($to_revert); } if (!empty($to_remove)) { $goldbrick->remove($to_remove); } if (!empty($to_bump)) { $goldbrick->bump($to_bump); } } /** * undocumented function * * @return $value **/ function multiarrayearch($needle, $haystack) { $value = false; $x = 0; foreach ($haystack as $temp => $k) { $search = array_search($needle, $k); if (strlen($search) > 0 && $search >= 0) { $value[0] = $x; $value[1] = $search; $found = array($k[$search], $temp); } $x++; } return $found; } ?>of postids */ public function set_uniques($uniques) { if ($this->debug) { goldbrick_debug('PostIDs', $postids); } /*if (is_array($uniques)) { $this->media = $this->fetch_media_from_cache(implode(',', $postids)); } else { $this->media = $this->fetch_media($fetch_hash); }*/ if (!$this->media = $this->fetch_media($uniques)) { return null; } return $this->media; if ($this->debug) { goldbrick_debug('Fetched Media', $this->media); } } /** * Fetches all media associated with $postids from the cache. * * @param string Comma-separated list of post ids * @return array Media records */ private function fetch_media_from_cache($postids) { $result = $this->registry->db->query_read(" SELECT cache.* FROM " . TABLE_PREFIX . "gb_media LEFT JOIN " . TABLE_PREFIX . "gb_cache as cache using (hash) WHERE postid IN ($postids) "); $records = array(); while ($record = $this->registry->db->fetch_array($result)) { $records[] = $record; } $this->registry->db->free_result($record); return $records; } private function fetch_media($uniques) { global $vbulletin; /*$result = $this->registry->db->query_read(" SELECT * FROM " . TABLE_PREFIX . "gb_cache WHERE $uniques = hash "); $records = array(); while ($record = $this->registry->db->fetch_array($result)) { $records = $record; }*/ if ($vbulletin->options['gb_cache']) { $result = $this->cacheCheck($uniques); return $result; } else { return $this->registry->db->query_first(" SELECT * FROM " . TABLE_PREFIX . "gb_cache WHERE hash = '$uniques' "); } } private function cacheCheck($uniques) { require_once(DIR . '/Zend/Cache.php'); $frontendOptions = array( 'lifetime' => 604800, // cache lifetime of 7 days 'automatic_serialization' => true ); $backendOptions = array( 'cache_dir' => './goldbrick/cache/' // Directory where to put the cache files ); // getting a Zend_Cache_Core object $cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions); if(!$result = $cache->load($uniques)) { // cache miss; connect to the database $result = $this->registry->db->query_first(" SELECT * FROM " . TABLE_PREFIX . "gb_cache WHERE hash = '$uniques' "); $cache->save($result, $uniques); return $result; } else { return $result; } } } Code:
'";'); } if ($vbulletin->options['gb_enabled']) { eval('$headinclude .= "' . fetch_template('goldbrick_header') . '";'); } |
How to add the Google Video Player ?
|
Quote:
|
how is it different from AME hack?
|
Quote:
Ame is working and is updated and supported. This one is dead since a year. I would recommand AME if you didnt chose yet. |
Thanks you for this usefull plugin!
I have a question how can i add other Video sites to this plugin? The bbcode is: PHP Code:
|
Looks like a promising project. Thanks for all your hard work! :)
But I have a couple of problems. 1. When I upload wmv-files as attachment the thumbnails look like this: http://www.nettkafeen.no/forums/gold...dbrickplay.gif Could it be possible to make it display the first frame in the wmv-file instead? 2. The "thumbnail" doesn't render on vBadvanced portal either. Have I done something wrong? |
pls help
Your submission could not be processed because a security token was missing. If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error. |
Can I get support for putting it on the CMPS page it states its supported but the Docs dont help at all.
|
WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
I thought I'd take a look at this and it has one very nasty feature not mentioned anywhere. If someone posts a youtube video on your site this product sets a PORN COOKIE in the header of the page with the youtube video and it disables warning messages. If you have already installed this product look in your "goldbrick/includes/sites/youtube.php" file for example and REMOVE THE FOLLOWING ASAP (else Google will take notice and hurt your site rankings... and thats IF your host provider doesn't take offense first and ban your site) Code:
'header' => 'Set-Cookie: 18plus=1; expires=Wed, 25-Oct-2017 02:49:15 GMT; path=/; domain=.megarotic.com', You've been warned, check your files asap. |
May I suggest adding BlogTV?
|
works with vB 3.8?
edit: seems to have :) |
Someone help
Your submission could not be processed because a security token was missing. If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error. It Happen to me on the profile video and i using 3.7.3 Please help pls |
when ever I try and use this i get
Code:
Fatal error: Uncaught exception 'Zend_Cache_Exception' with message 'cache_dir is not writable' in /home/virtual/site36/fst/var/www/html/Zend/Cache.php:144 Stack trace: |
Hi,
Someone on my board has this error when posting : PHP Code:
Thanks in advance. Here is the message : Quote:
|
i want to update so it would be great if this mod works with vB 3.8.0
10x |
When i upgrade to this newer version, old posts across my forum with embedded video's no longer play. New youtube video's and such will play, but old ones will not. Do i need to rebuild my post cache or something?
|
I am getting the "media" tags around all the old video's on my forum, rather than the video's themselves.
Goldbrick is only working on new posts... |
tis thread should be modification grayard since the developer dun support and dun reply
|
Quote:
Does the code work? Absolutely. I've seen it work, and I've gotten it to work myself, so it definitely DOES work. Will it be buggy? Hey, that's what "beta" software is all about. Give the developer a chance to fix things. Remember, people, these guys aren't paid a dime to release their code. Sometimes development will be slow. Since it works (at least on 3.7), there's no reason to put it in the graveyard. |
Quote:
|
sorry my bad english
Site installation has worked successfully, but fla swf flv mpeg wma wmv videos error please help very urgent about this issue |
Mr Nix do u know if it works on 3.6x ?
|
Quote:
Quote:
But you are right. Some people just ignore the time that it takes to answer users' questions and that modifications are offered by independent developers at no cost and no profit. |
Quote:
is really Warming... :confused: |
All times are GMT. The time now is 03:23 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|