41
tcnet
Re: Xoops FAQ V1.15 Beta Released
  • 2009/4/11 5:15

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


I can't extract the zip archive. Do I need an updated decompressor?



42
tcnet
Re: XMDT: Move to Blue - Classic Module Update Phase
  • 2009/4/11 4:52

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Quote:
Let us know which modules don't work and why they are necessary for you and the working of your website?


Please consider updating the original MyLinks module. This module has served as the basic template for many of our Directory type modules. Recoding MyLinks for 2.3 and XoopsObject would provide an example on how to update many of our older modules.

Thanks for leading the module redevelopment initiative!



43
tcnet
Re: How can I display user id or user name?
  • 2009/3/23 11:39

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12





44
tcnet
Re: FAQs module for public users
  • 2009/2/24 6:25

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


SmartFAQ 108 with the FAQ For New Xoopsers extra would provide a starting point. SmartFactory's sql dump is old (2004) but much of it still applies. You will need to modify to suit your module list.


I think Smart Factory pictured a XOOPS community FAQ when they added this preference setting:
Quote:

Path of SmartFAQ's help files
Select from where you would like to access SmartFAQ's help files. If you downloaded the 'SmartFAQ's Help Package' and uploaded it in 'modules/smartfaq/doc/', you can select 'Inside the module'. Alternatively, you can access the module's help file directly from docs.xoops.org by chosing this in the selector. You can also select 'Custom Path' and specify yourself the path of the help files in the next config option 'Custom path of SmartFAQ's help files'






45
tcnet
Re: pop up link
  • 2009/2/17 13:02

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


The javascript required to open a new popup window is already in xoops.js (line 49):

function openWithSelfMain(url,namewidthheightreturnwindow
{
    var 
options "width=" width ",height=" height ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no";
    var 
new_window window.open(urlnameoptions);
    
window.self.name "main";
    
new_window.focus();
    return (
returnwindow != null new_window void(0));    
}


Call it with:
<a href="javascript:openWithSelfMain('http://yoursite.com/yourfile.html','YourWindowName',300,200);">Your Popup Link</a>


See the FAQ: How do I make a link open a popup in my page? by Carnuke



46
tcnet
Re: Changing the image for different sections- how do I?
  • 2009/2/7 12:08

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Changing image per module information here:

https://xoops.org/modules/smartfaq/faq.php?faqid=335

https://xoops.org/modules/newbb/viewtopic.php?topic_id=52247&forum=17&post_id=230574#forumpost230574



47
tcnet
Re: I need Webshow/JW Media Player subtitle help...
  • 2009/2/5 0:51

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Oki napi

To show text subtitles over a WebShow video, create an xml captions file, save it to any public directory (I keep mine in the same directory as the video) and then enter the xml file's url into the "Captions" field.

Please see the WebShow Tutorial titled Add Text Captions to Video to view a demo and a sample captions file.

Kitaakitomattsino




48
tcnet
Re: Video Module
  • 2009/1/13 13:10

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


WebPhoto by Ohwada displays video (flv), mp3 and images in a Flash player. WebPhoto offers user upload and video file conversion using ffmpg.




49
tcnet
Re: I want "Tag Cloud" please :)
  • 2009/1/13 12:34

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Xoops 2.3 is required for Tag 2.3 RC. See here.

For Tags with XOOPS 2.2 or 2.0 core use Tag 1.6 version. Available here.

Tags Module doesn't do anything on its own, it allows tag equipped modules (CBB, Article, News, WebShow, etc.) to use its functions to display tagged keywords.



50
tcnet
Re: Load block "News Modules" From other website used XOOPS too...
  • 2008/12/9 15:02

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


If the News module is installed, the News Headline links are added to your XOOPS backend.php feed.

Here is a way to display a XOOPS backend.php RSS news feed on a static html page.

1) Download rss2html.php. Upload it to the XOOPS server.

2) Make an rss news template (named newstemplate.html) and upload it to the static html site's root directory.
<html>
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<
title>RSS News Feed</title>
</
head>
<
body>
<
H3>~~~FeedTitle~~~</H3>
<
p>~~~FeedDescription~~~</p>
<
TABLE width="100%">
~~~
BeginItemsRecord~~~
<
TR>
<
TD>
<
hr width="90%" align="left">
</
TD>
</
TR>
<
TR>
<
TD>
<
p><A href="~~~ItemLink~~~" target="_blank">~~~ItemTitle~~~</A></p>
</
TD>
</
TR>
<
TR>
<
TD>
~~~
ItemPubShortDate~~~
~~~
ItemPubShortTime~~~
</
TD>
</
TR>
<
TR>
<
TD>
~~~
ItemDescription~~~
</
TD>
</
TR>
~~~
EndItemsRecord~~~
</
TABLE>
</
body>
</
html>

3) Add some iframe code to the html page where you want to display the news feed.
<iframe name="rssnews" src="http://yourxoopssite/rss2html.php?XMLFILE=http://yourxoopssite/backend.php&TEMPLATE=newstemplate.html&MAXITEMS=10" height="400" width="99%" title="RSS News Feed" align="center">
Your browser does not support inline frames.
</
iframe>


The XMLFILE url can point to any xml rss feed.
To display Headlines from a single News category:
XMLFILE=http://yourxoopssite/modules/news/backendt.php?topicid=1




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



Login

Who's Online

75 user(s) are online (41 user(s) are browsing Support Forums)


Members: 0


Guests: 75


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