vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - 8WayRun.Com - Media Library (https://vborg.vbsupport.ru/showthread.php?t=240677)

basilrath 08-06-2010 08:04 PM

Fantastic Mod ................. top mod in my opinion

I have no issues and would like to ask the following

1...The pm thats sent to admin to say theres a new video and would you like to comment - is there a way to send to registered members aswell

2...Is there a way to get latest comments to the thread or a thread or something etc

Thanks by the way for the fantastic work put into this

Dave

epsol 08-06-2010 08:12 PM

I noticed in the latest version of this mod that it was missing the localvideo and localaudio services. What you need to do is check the 'services' and if they are not there, add them. Otherwise what I did was uninstall the 1.5 and installed the 1.1, then I installed the 1.5 and it worked just fine. As for media url, it would be localvideo:blue_crab.flv

compact123 08-07-2010 08:21 AM

>>> dailyMotion videos cannot be thumbnailed :(

compact123 08-07-2010 08:26 AM

Quote:

Originally Posted by juhler (Post 2080101)
I had a problem getting this to import correct letters from YouTube. This could be: ???...

The reason this happens is that you made it to just import the data from YouTube (and thats ok if you are not using ??? or any other UTF-8 coding).

The way I fixed it works for import only:

In the file media/media_submit.php

Find:
Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', $feed['title']);
        $xml->add_tag('description', $feed['description']);
        $xml->add_tag('taglist', $feed['taglist']);
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', $feed['source']);
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Replace:
Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', utf8_decode($feed['title']));
        $xml->add_tag('description', utf8_decode($feed['description']));
        $xml->add_tag('taglist', utf8_decode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', utf8_decode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Hope this helps the others I have seen asking for an update that would allow special chars.

Edit: PS hope its ok that I changed you code to fit my needs ?

- juhler

still i have problem with korean special characters =/
http://www.youtube.com/watch?v=qRGOE-gE8FE

https://vborg.vbsupport.ru/

EquinoxWorld 08-07-2010 02:21 PM

Quote:

Originally Posted by compact123 (Post 2080440)
>>> dailyMotion videos cannot be thumbnailed :(

Have you tried this:


Quote:

Originally Posted by Jaxel (Post 2078697)
Change the daily motion thumbnail field to the following:

Code:

$arr['channel']['item']['media:thumbnail']['url']; $thu = substr($thu, 0, strpos($thu, '?'))


kho91 08-07-2010 05:59 PM

i dont't undersant woh i can creat playists?

EquinoxWorld 08-07-2010 06:55 PM

Quote:

Originally Posted by kho91 (Post 2080575)
i dont't undersant woh i can creat playists?

Check your permissions to see if you can create playlist ("can create playllist" set to yes). After giving permissions under the playlist drop down menu you will see "create playlist"

iJay 08-07-2010 11:24 PM

The side block doesn't seem to display on VB 4.0.5 :(
Any insight?

Code:

ob_start();
require_once(DIR.'/media/media_functions_hrefs.php');

$medias = vB::$vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "media ORDER BY dateline DESC LIMIT 3");

while ($media = vB::$vbulletin->db->fetch_array($medias))
{
        if ($media['length'] == 0)
        {
                $media['length'] = "???";
        }
        else
        {
                $duration = $media['length'];
                $minutes = floor($duration / 60);
                $seconds = $duration % 60;
                $seconds = str_pad($seconds, 2, "0", STR_PAD_LEFT);
                $media['length'] = "$minutes:$seconds";
        }

        $media['intrate'] = intval($media['rating']);
        $media['thumbnail'] = vB::$vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
        $media['href'] = construct_href_details($media);

        $templater = vB_Template::create('8WR_media_block');
        $templater->register('media', $media);
        $mediabits .= $templater->render();
}

$output = $mediabits;
ob_end_clean();


EquinoxWorld 08-07-2010 11:55 PM

do you have any other mods from VSA? this works for me on vb4.0.5 perfectly.

kho91 08-08-2010 05:18 PM

any idea to add adsense in side bar block?

juhler 08-08-2010 06:46 PM

Quote:

Originally Posted by compact123 (Post 2080442)
still i have problem with korean special characters =/
http://www.youtube.com/watch?v=qRGOE-gE8FE[IMG]

Well I dont have korean at my board but I can change the code so it imports some other chars to, try this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', gzdecode($feed['title']));
        $xml->add_tag('description', gzdecode($feed['description']));
        $xml->add_tag('taglist', gzdecode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', gzdecode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Or this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', utf8_encode($feed['title']));
        $xml->add_tag('description', utf8_encode($feed['description']));
        $xml->add_tag('taglist', utf8_encode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', utf8_encode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Otherwise I need to know a little more about this charset stuff and what charset Korea use =)

blue7 08-08-2010 07:29 PM

How can i disable comments apprivation ?

Tahooma 08-09-2010 09:26 AM

solved...

CMSTemplateZ 08-09-2010 11:38 AM

Thanks for the mod :) great work...

Having an issue with VBSEO on my Xbox Kinect website <--- See the url... i am using VBSEO.. on my other board using your older mod i was able to get vbseo re-writing the urls just fine...

There is also some other having this issue.. please see here: http://www.vbseo.com/f23/media-libra...54/index3.html (read the first few posts and then the last few).. someone almost has it working...

Any help on this would be great, Thanks

Ahmet Turan 08-09-2010 02:02 PM

Not work VBSEO help

EquinoxWorld 08-10-2010 11:49 AM

This is my post I have in VBSEO . I'm posting it here to see if maybe anyone else has any input. Thanks for everyone's time and consideration.

Quote:

Hello everyone, just thought I put some info from my behalf. The only thing that does not work properly is the first edit to the media_functions_hrefs.php . The second works fine which adds the category name to the title. The CRR work completely except the view media page ( for example AniWorlds Forums - InuYasha - 58 which is:
HTML Code:

http://www.aniworlds.net/forum/media.php?do=details&mid=19003
).
the URL provides the title if pasted but the actual URL still remains the above. Since playlist were added , there is now a if condition in the href file that specifies playlist ID. The CRR for the view video page before was:

'^media\.php\?do=details&mid=(\d+)&title=(.+)$'=>' media-library/$2-$1/'

I was able to edit the href file and get the CRR to work but I get a bunch of letters and playlist at the end. I have checked each one of the rewrites and that one is the only one that does not work , and of course there would have to be a new CRR for the playlists now. I am writing this here to see if we can all put our heads together and figure this one out, were almost there everyone. I thank VBSEO for providing support from the previous version of this most popular mod, and any input they may have is as always very much appreciated. If anyone has any input please share with the world.

compact123 08-10-2010 04:12 PM

Quote:

Originally Posted by compact123 (Post 2080440)
>>> dailyMotion videos cannot be thumbnailed :(

Quote:

Originally Posted by EquinoxWorld (Post 2080524)
Have you tried this:

Quote:

Originally Posted by Originally Posted by Jaxel
Change the daily motion thumbnail field to the following:

$arr['channel'
['item']['media:thumbnail']['url']; $thu = substr($thu, 0, strpos($thu, '?'))







ummm sir what do i need to edit the php file for this code?

compact123 08-10-2010 04:23 PM

Quote:

Originally Posted by juhler (Post 2080975)
Well I dont have korean at my board but I can change the code so it imports some other chars to, try this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', gzdecode($feed['title']));
        $xml->add_tag('description', gzdecode($feed['description']));
        $xml->add_tag('taglist', gzdecode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', gzdecode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Or this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', utf8_encode($feed['title']));
        $xml->add_tag('description', utf8_encode($feed['description']));
        $xml->add_tag('taglist', utf8_encode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', utf8_encode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Otherwise I need to know a little more about this charset stuff and what charset Korea use =)

actually sir we are using utf8 charset but i dont know whats wrong with it kkkk but korean charset like that: euc-kr
and for all;
Korean ##charset=ks_c_5601-1987
Korean (EUC) ##charset=euc-kr
Korean (ISO) ##charset=iso-2022-kr
Korean (Johab) ##charset=Johab
Korean (Mac) ##charset=x-mac-korean
-------------------------------------------------------
ko_KR.EUC-KR... done
ko_KR.UTF-8... done

*** wel and i have a questions umm is multi-lingual character encoding in PHP forms not possible? as utf8, korean, hapan, chinise, turkish, english bla bla xD

EquinoxWorld 08-10-2010 04:25 PM

Quote:

Originally Posted by compact123 (Post 2081777)
ummm sir what do i need to edit the php file for this code?

No my friend , just go to subnavbar: ------> Administrative------>Services------>Edit under Dailymotion---->Replace where "thumbnail" with the above code, click save changes and all done.

compact123 08-10-2010 07:28 PM

@EquinoxWorld, thanks sir for your help, im not at home now when i arrive at home i will try it, thanks again >.<

EquinoxWorld 08-10-2010 08:54 PM

Your most welcome, although thanks should be given to the real author of this masterpiece; Jaxel.

Speedy1505 08-11-2010 08:09 AM

A small problem still. If one inserts the BB code from the respective entry in a subject, this is translated to HTML. Thus it is no longer possible to edit a post. It would be better to install a BB Code, and the ads will be left to the parser. Thus, a contribution will be processed in spite of an embedded code.

Veer 08-11-2010 08:46 AM

Quote:

Originally Posted by iJay (Post 2080665)
The side block doesn't seem to display on VB 4.0.5 :(
Any insight?

Code:

ob_start();
require_once(DIR.'/media/media_functions_hrefs.php');

$medias = vB::$vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "media ORDER BY dateline DESC LIMIT 3");

while ($media = vB::$vbulletin->db->fetch_array($medias))
{
        if ($media['length'] == 0)
        {
                $media['length'] = "???";
        }
        else
        {
                $duration = $media['length'];
                $minutes = floor($duration / 60);
                $seconds = $duration % 60;
                $seconds = str_pad($seconds, 2, "0", STR_PAD_LEFT);
                $media['length'] = "$minutes:$seconds";
        }

        $media['intrate'] = intval($media['rating']);
        $media['thumbnail'] = vB::$vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
        $media['href'] = construct_href_details($media);

        $templater = vB_Template::create('8WR_media_block');
        $templater->register('media', $media);
        $mediabits .= $templater->render();
}

$output = $mediabits;
ob_end_clean();


Mine too not working on vb4.0.4

Jaxel, need your help for CMS Widget.

EquinoxWorld 08-11-2010 12:11 PM

Quote:

Originally Posted by Veer (Post 2082064)
Mine too not working on vb4.0.4

Jaxel, need your help for CMS Widget.

Do you mean the sideblock for forum home or the CMS sidebar.

For the CMS widget just insert this into a php direct execution widget.

Code:

 
global $vbulletin;
require_once(DIR.'/media/media_functions_hrefs.php');

//  %d
$show_count = 5; 

$medias = $vbulletin->db->query_read("
    SELECT media.*, media_service.*
    FROM " . TABLE_PREFIX . "media AS media
    LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
    ORDER BY media.dateline DESC
    LIMIT ".$show_count);


$output = '
  <style type="text/css">
    .thumbnail img{
      width: 90px;
      height: 70px;
      border: 1px solid #ccc;
      padding: 5px;
      margin: 5px;
      float: left;
    }
   
    .video_bit {
      min-height: 90px;
    }
 
  </style>
                                                           
';

while ($media = $vbulletin->db->fetch_array($medias))
{

    $media['thumbnail'] = $vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
    $media['href'] = construct_href_details($media);

    extract($media);
   
    $title = substr($title,0,60);
   
    $mediabits .= sprintf('<div class="cms_widget_post_bit video_bit"><div class="thumbnail"><a href="%s"><img src="%s"></a></div><div class="cms_widget_post_header"><a href="%s">%s</a></div><div class="cms_widget_post_userinfo"><a href="member.php/u=%d">%s</a> On %s</div></div>',$href,$thumbnail,$href,$title,$userid,$username,date('F j, Y, g:i a',$dateline));
}



$output .= $mediabits;

For the forum home sidebar .

add this to a new (php content type using template: " block html") forum block:

Code:

global $vbulletin;
require_once(DIR.'/media/media_functions_hrefs.php');

//  %d
$show_count = 13;

$medias = $vbulletin->db->query_read("
    SELECT media.*, media_service.*
    FROM " . TABLE_PREFIX . "media AS media
    LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
    ORDER BY media.dateline DESC
    LIMIT ".$show_count);


$output = '
  <style type="text/css">
    .thumbnail img{
      width: 135px;
      height: 90px;
      border: 1px solid #ccc;
      padding: 5px;
      margin: 5px;
      text-align: center;
      float: center;
    }
   
    .video_bit {
      text-align: center;
      min-height: 120px;
    }
 
  </style>
                                                         
';

while ($media = $vbulletin->db->fetch_array($medias))
{

    $media['thumbnail'] = $vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
    $media['href'] = construct_href_details($media);

    extract($media);
   
    $title = substr($title,0,60);
   
    $mediabits .= sprintf('<div class="cms_widget_post_bit video_bit"><div class="thumbnail"><a href="%s"><img src="%s"></a></div><div class="cms_widget_post_header"><a href="%s">%s</a></div><div class="cms_widget_post_userinfo"><a href="member.php">%s</a> By %s</div></div>',$href,$thumbnail,$href,$title,$userid,$username,date('F j, Y, g:i a',$dateline));
}



$output .= $mediabits;

If you have any questions regarding the CMS widget go here for more instructions.

https://vborg.vbsupport.ru/showthread.php?t=244058

Veer 08-11-2010 01:21 PM

Thanks EquinoxWorld CMS widgetis now working fine.

The only problem I found is it showing incorrect URL of users.
It shows: http://www.domain.com/member.php/u=0
Correct URL should be: http://www.domain.com/members/9542-Sehwag

EquinoxWorld 08-11-2010 03:38 PM

Quote:

Originally Posted by Veer (Post 2082163)
Thanks EquinoxWorld CMS widgetis now working fine.

The only problem I found is it showing incorrect URL of users.
It shows: http://www.domain.com/member.php/u=0
Correct URL should be: http://www.domain.com/members/9542-Sehwag

Is it the wrong URL as in it redirects you somewhere it is not suppose to or that is has not been rewritten for SEO?

Veer 08-11-2010 08:02 PM

Quote:

Originally Posted by EquinoxWorld (Post 2082222)
Is it the wrong URL as in it redirects you somewhere it is not suppose to or that is has not been rewritten for SEO?

In both ways its incorrect.

It exactly shows:
Code:

http://www.domain.com/member.php/u=0
with every user.

EquinoxWorld 08-11-2010 09:42 PM

Quote:

Originally Posted by Veer (Post 2082319)
In both ways its incorrect.

It exactly shows:
Code:

http://www.domain.com/member.php/u=0
with every user.

Make sure to follow exactly the instructions found here: https://vborg.vbsupport.ru/showthread.php?t=244058 and try again. Make sure this is for the CMS widget .

Jaxel 08-13-2010 12:01 PM

CMS Widget currently on: http://www.8wayrun.com/

Code:

require_once(DIR.'/media/media_functions_hrefs.php');

$medias = vB::$vbulletin->db->query_read("
        SELECT media.*, media_service.*
        FROM " . TABLE_PREFIX . "media AS media
        LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
        ORDER BY media.dateline DESC
        LIMIT 3
");

while ($media = vB::$vbulletin->db->fetch_array($medias))
{
        if ($media['length'] == 0)
        {
                $media['length'] = "???";
        }
        else
        {
                $duration = $media['length'];
                $minutes = floor($duration / 60);
                $seconds = $duration % 60;
                $seconds = str_pad($seconds, 2, "0", STR_PAD_LEFT);
                $media['length'] = "$minutes:$seconds";
        }

        $media['intrate'] = intval($media['rating']);
        $media['thumbnail'] = vB::$vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
        $media['href'] = construct_href_details($media);

        $templater = vB_Template::create('8WR_media_WIDGET');
                $templater->register('media', $media);
        $mediabits .= $templater->render();
}

$output = $mediabits;


Tahooma 08-14-2010 11:05 AM

Media URL contained invalid data.

Some Youtube Videos work, lots of others dont.
No, not new videos, videos with 2+ Million views :(
NO SEO activatted, just a standard install...

Jaxel 08-14-2010 11:49 PM

Quote:

Originally Posted by Tahooma (Post 2083643)
Media URL contained invalid data.

Some Youtube Videos work, lots of others dont.
No, not new videos, videos with 2+ Million views :(
NO SEO activatted, just a standard install...

Some people disable embedding on their videos. If they do, you wont be able to add it to the library.

kho91 08-15-2010 03:41 AM

megavideo don't work for me??

stwan 08-15-2010 05:39 AM

Favorites not working in vb 4.0.6

Tahooma 08-15-2010 06:49 AM

Quote:

Originally Posted by Jaxel (Post 2084013)
Some people disable embedding on their videos. If they do, you wont be able to add it to the library.

Well, i can enbed it into facebook...
So this cant be the issue... :(

stwan 08-15-2010 08:28 AM

Errors in playlist:
Quote:

Originally Posted by Invalid SQL
SELECT * FROM media_playlist WHERE playlistID = '1';

Ошибка MySQL : Table '.media_playlist' doesn't exist
Номер ошибки : 1146
Дата запроса : Sunday, August 15th 2010 @ 01:26:28 PM
Дата ошибки : Sunday, August 15th 2010 @ 01:26:28 PM
Скрипт : http://www.mysite.ru/forum/media.php...s&mid=31&pid=1
Реферер : http://www.mysite.ru/forum/media.php?do=playlist&pid=1
IP адрес :
Имя пользователя :
Имя класса : vB_Database
Версия MySQL : 5.0.67-percona-highperf-b7-log


GR Matticus 08-15-2010 11:57 AM

Just installed and looks great but getting some bother. I can't edit categories, tags etc as nothing is displayed and can't play videos, clicking play doesn't do anything. I've applied the fix but still no luck. Any thoughts?

Thanks.

http://www.gamersrest.com/forum

your24hourstore 08-15-2010 12:44 PM

Quote:

Originally Posted by GR Matticus (Post 2084195)
Just installed and looks great but getting some bother. I can't edit categories, tags etc as nothing is displayed and can't play videos, clicking play doesn't do anything. I've applied the fix but still no luck. Any thoughts?

Thanks.

http://www.gamersrest.com/forum

you don't have permissions set correctly in admincp user and or admincp settings/8way

also if you run vbseo the patch is listed in the main post

paulvev 08-15-2010 12:53 PM

Quote:

Originally Posted by paulvev (Post 2079045)
How do i get it to count video views as my earlier post? Everything else is ok apart from its not counting the views.

Guys? Everything is working ok for me on 4.0.5 apart from its not updating the views on the thumbnails. I can view the videos though. Strange, all else is ok including playlists and favourites. All views are showing as 1 next to the play icon on the thumbnails, even when they've been viewed many times.

Any ideas on my views issue?

GR Matticus 08-15-2010 01:20 PM

Quote:

Originally Posted by harleyparts (Post 2084207)
you don't have permissions set correctly in admincp user and or admincp settings/8way

also if you run vbseo the patch is listed in the main post

Thanks, I don't run vbseo. I've set permissions in usersgroups, Admin all to yes, last 2 parts of the permissions for Media Library. Same for the others. I don't see setting for 8way permission in settings, only 8way Details and Customs. Am I missing something?

GR Matticus 08-15-2010 02:03 PM

Quote:

Originally Posted by GR Matticus (Post 2084195)
Just installed and looks great but getting some bother. I can't edit categories, tags etc as nothing is displayed and can't play videos, clicking play doesn't do anything. I've applied the fix but still no luck. Any thoughts?

Thanks.

http://www.gamersrest.com/forum

This is a problem with SEO URL's somewhere. After setting to "No", everything works ok, I have a .htaccess file for the forum. Are any edits required to this to enable this feature?

EDIT: Possibly down to my forum path as it's not in root?


All times are GMT. The time now is 03:41 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.03837 seconds
  • Memory Usage 1,914KB
  • 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
  • (14)bbcode_code_printable
  • (1)bbcode_html_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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