51
tcnet
Re: search for customize my Cms like this one:
  • 2008/11/25 1:57

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Go to the Admin's Control Panel - System - Blocks and reassign the Recent Photos block from the left block to a center block display area. Also, set the Recent photos block to display on the Top Page only.



52
tcnet
Re: WebShow - Page Layout
  • 2008/10/17 18:32

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Quote:
This is one of my favorite mods, which boost why utilizing XOOPS makes sense.


Thanks for the supporting the WebShow module and XOOPS!

Quote:
At sometime I would like to commission you to do some custom work.


Thanks for the offer of work. My services are available by the hour to install and/or customize the module. Drop me a PM with your email address.

Quote:

Let me explain in better detail more about how the right panel would be used.

A - Display an ad as text of a video
B - Display an image
C - Display thumbs of other videos


I think we can accomplish that fairly easily.

Have you thought about adding a right column to your theme and then adding those items using custom blocks? WebShow's Link Block will display thumbnails of other videos sorted by category, random, date, popularity or rating.



53
tcnet
Re: Webshow - Unable to remove logo
  • 2008/10/17 17:49

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Quote:
Can not remove the logo once it has been set. I select "----" and save, I still see the logo.

That is true. In the catalog and block views, media entries with no logo were not displaying well with those that had them. So, I made the script use the default uploads/stock/logo if no logo was entered with the media. I thought it was better than a "no thumbnail available" logo. Probably a bad decision in retrospect.

To remove the hardcoded default logo when no logo is entered you will need to modify the following php files:

index.php line 190
mediasearch.php line 218
playcat.php line 212
playposter.php line 167
singlelink.php line 210

change this:
$logourl XOOPS_URL."/".$xoopsModuleConfig['path_logo']."/stock/logo.png";

To this:
$logourl '';


Quote:
If a logo is changed, is old logo removed from the folder?


Entering a new logo will write over the old one. Setting the logo to blank will remove the logo address from the database but leave the image file behind. I will look into making the script remove the old logo when blank address is entered.
WebShow Support Forum Here



54
tcnet
Re: WebShow - Page Layout
  • 2008/10/17 5:09

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Quote:
Ia there away to have the relevant text that goes with the video to be displayed on the right side?


Yes, but it is not automated at this point. You have to manually copy and paste the text into the WebShow description and/or full body text area.

WebShow's short description area should be a short one sentence summary that includes your keywords. It is used as the page's meta-description tag and is filtered to construct the page's meta-keyword tag.

Once the media entry has been submitted, the Modify Entry Editor will display a full page Text Editor that can be used to add extended text or html to WebShow's singlelink page view.

As far as where these items are displayed in your page layout, you would need to modify templates/style.css and templates/webshow_singlelink.html to rearrange the page elements.

Templates/style.css line 51
#ws_body {float: left; width: 98%; margin: 3px 2px 3px 2px; padding: 0px; text-align: left;}


affects templates/webshow_singlelink.php line 23.
<{if $link.bodytext !=""}>    
 <
div id="ws_body" class="itemBody">
  <
div id="ws_bodyText">
    <
h3 id="ws_bodyTitle"><{$link.ltitle}></h3>         
    <{
$link.bodytext}>
  </
div>
 </
div>                  
<{/if}>


BTW, If you use the Player Editor to make the media player wider the webshow template will automatically change from double to single column. The player will be on top, Info Box in the middle and Full Html page on bottom.

Sorry for the long post. I hope your question was answered.



55
tcnet
Re: WebShow - I am getting double players
  • 2008/10/17 3:57

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Play a YouTube embed link in the WebShow module by entering just the video id from the youtube url.

To embed the video from this url:
http://www.youtube.com/watch?v=c85B2nxgLwU&feature=related

Enter c85B2nxgLwU into the WebShow submit form.

Resized Image


Thanks for using WebShow!



56
tcnet
Re: Tag 2.3RC for Xoops 2.3x Testing Reviews
  • 2008/10/12 13:46

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


The sourceforge zip archive is missing the directory structure modules/tag/.

I am updating from Tag 1.6. Is it OK to overwrite existing files and then update Tag mod in module admin?

Thanks for the update!



57
tcnet
Re: web show 0.65 can not add google video embed
  • 2008/10/12 13:16

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Hi lansnode,

Google Video embeds media from many external sources. The WebShow plugin is for Google media only. Your Google video link is actually an embed from you.video.sina.com.

I have made a plugin that will allow you to embed videos from sina.com. Get this WebShow plugin for you.video.sina

Please use the Web Show Support Forum.

Thanks for trying the Web Show Media Player!



58
tcnet
Re: web show 0.65 can not add google video embed
  • 2008/10/10 9:49

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Quote:
Google video embed won't play or fetch a logo.


Please post or pm the google video link and I test it to find out why it won't play.

Some embed sources have random values in their thumbnail paths and can't be coded to auto fetch. For those sources a image url has to be entered manually and the submitted image url must have a jpg, png or gif extension else the fetch function will fail.

To remove the file extension check, edit submit.functions.php lines 471 -476
Remove or Comment this:
$logoext substr($fetchurl, -4);
      
$allowedlogoext = array(".jpg"".gif"".png");
      if(!
in_array($logoext,$allowedlogoext)){
         echo 
_MD_LOGO_FETCHFAIL." "._MD_EXTENSION_INVALID;
         return 
false;
      }



59
tcnet
Re: web show 0.65 can not add google video embed
  • 2008/10/9 19:19

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Works Ok here.

Enter just the docid from video.google.com.

Google URL=  http://video.google.com/videoplay?docid=-8290192083117426204
Enter this: -8290192083117426204

Possible you found a link that won't play. Post it here and I will try.

Excellent use of WebShow's custom player colors on your site!



60
tcnet
Re: error webshow 0.65 !
  • 2008/10/8 3:29

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Hi lapsa 2000,

Quote:
Warning: Class 'XoopsTree' is deprecated, check 'XoopsObjectTree' in tree.php in file /class/xoopstree.php line 45

This does not effect the module's function. It is a warning notice to the developer, not an error.

Quote:
I can only remove the video, not modify it.


I need more information on this. What is displayed on the Admin's Modify Editor page? Please post a error report from that page.

There have been some issues with the texteditor in the modify form. Is your 2.3 core an install or an upgrade from another version? If its an update, do you have class/xoopseditors/ in the Frameworks folder?

If your Modify Editor shows the Media Manager table with no modify form then try removing lines 515 thru 517 from webshow/include/submitform.inc.php.

REMOVE webshow/include/submitform.inc.php lines 515-517      

if(file_exists(XOOPS_ROOT_PATH."/Frameworks/xoops22/class/xoopsformloader.php")){ 
         !@include_once 
XOOPS_ROOT_PATH."/Frameworks/xoops22/class/xoopsformloader.php";
}


Quote:
The logo fetch you've failed.


I assume you have entered an embed video. Which site was it from?

First, we have to get your Modify Editor working. In testing, any failed logo fetch was corrected by clicking Modify in the Editor.

It is easy for me to miss a support request here. Use WebShow Forum for best response.




TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 21 »



Login

Who's Online

158 user(s) are online (122 user(s) are browsing Support Forums)


Members: 0


Guests: 158


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits