vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Show Thread Enhancements - AME 2.0 -Auto Media Embedding for posts, blogs, visitor and group messsages (https://vborg.vbsupport.ru/showthread.php?t=189267)

wmlvb 09-25-2008 10:22 PM

still not seeing ame cp and help??

wmlvb 09-25-2008 11:35 PM

still not able to use this after 12 hours any help. been trying to install the 2.5 version does that have anything to do w/ why I do not see ame cp??

wmlvb 09-26-2008 12:24 AM

I figured out what was wrong. the xml file did not get imported even though I thought I clicked import button. I tested by deleting and starting over. 2nd try it imported and I saw all the code!! and the AMe Cp after refresh!

wmlvb 09-26-2008 12:39 AM

when I post a youtube vide url the url tags surround it and it does not embed. Do I need to turn off this BB tag?

Digital Jedi 09-26-2008 12:42 AM

Quote:

Originally Posted by wmlvb (Post 1630514)
when I post a youtube vide url the url tags surround it and it does not embed. Do I need to turn off this BB tag?

Yes, you don't use any Media BBCode with the AME definition, or it will conflict. You don't need to turn the regular URL tags off, though.

Just remember for future uploads, the contents of the upload folder will be structured the same way it needs to be in your forum directory. So there's no need to add them one at a time, just put them all in one swoop in the right directory and it will add them where they need to go.

wmlvb 09-26-2008 01:12 AM

ok so the url bbcode ok and it is surrounding the link every time and I do not see any embed

Digital Jedi 09-26-2008 02:08 AM

First things first. Post the link to the thread where your having the problem.

wmlvb 09-26-2008 03:28 PM

After installing AMe. it looks like many of the hyper links created in signatures and post are messed up and are just showing as code. HOw do I fix?

The Ame Mod is working otherwise

Rend Sever 09-26-2008 03:59 PM

Quote:

Originally Posted by MindStar (Post 1608892)
Excellent!

Would you consider using cURL instead of file_get_contents to get the title of the video file?

* we have disabled file_get_contents on our server due to the security risks with using file_get_contents.

Here's a link to an example of using cURL to replace a call to file_get_contents

http://uk3.php.net/manual/en/functio...ents.php#82255

Seconded. Numerous hosts will not allow enabling of file_get_contents, due to security risks.

Rend Sever 09-26-2008 05:04 PM

hacked it to use cURL, only took 2 seconds.

open includes/ame_bbcode.php

add under very top comments:
Code:

function curl_get_file_contents($URL)
    {
        $c = curl_init();
        curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($c, CURLOPT_URL, $URL);
        $contents = curl_exec($c);
        curl_close($c);

        if ($contents) return $contents;
            else return FALSE;
    }


find:

Code:

$www = @file_get_contents

replace with:

Code:

$www = @curl_get_file_contents

Done. Uses cURL, no problems with fetching, no need to mess around with PHP settings or anything.

Such an easy fix, might want to include it in an update perhaps, Geek?


All times are GMT. The time now is 12:14 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.02435 seconds
  • Memory Usage 1,741KB
  • 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
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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