Contribute  :  Advanced Search  :  Site Statistics  :  Directory  :  Donations  :  Support  :  Links  :  Polls  :  My Downloads  :  FAQ  :  Calendar  
Plugin CMS Geeklog Resources
Welcome to Plugin CMS
Thursday, September 09 2010 @ 02:24 CEST
   

FAQ 1.0.2

PluginsThe FAQ plugin has been updated and released. It can be downloaded here.

Features added in 1.0.2:
  • Some internal cleanup of the code.
  • Patch so FAQMAN imports now handle content with ' in it.
  • Patch for FAQMAN imports and old FAQMAN autotags.
  • Number of hits and change date now available in faq templates. Templates updated.
  • Allowed HTML now added to edit templates.
If you are using FAQ 1.0.1 I strongly recommend you updating to version 1.0.2 as soon as possible.

Story Options

Trackback

Trackback URL for this entry: http://plugincms.com/trackback.php?id=faq_1_0_2

Here's what others have to say about 'FAQ 1.0.2':

FAQ 1.0.3 from Plugin CMS
The FAQ plugin has been updated and released. It can be downloaded here. [read more]
Tracked on Tuesday, December 26 2006 @ 21:36 CET

FAQ 1.0.2 | 13 comments | Create New Account
The following comments are owned by whomever posted them. This site is not responsible for what they say.
FAQ 1.0.2
Authored by: Anonymous on Tuesday, September 19 2006 @ 15:55 CEST
Thanks for the plugin.

Are you planning to add comment feature to this plugin? It would be handy if there would be discussion about certain question and it's answer.
FAQ 1.0.2
Authored by: Emil Gustafsson on Tuesday, September 19 2006 @ 22:45 CEST
Yes, both comment support and multi-language support are on my ToDo list for this plugin.

---
Creator and maintaner of PluginCMS.
FAQ 1.0.2
Authored by: Anonymous on Wednesday, September 20 2006 @ 16:01 CEST
Are you planning to put up some kind of developer forum or list? I might be interested in helping with comment support if I can find some time for it.
Dev forum/list
Authored by: Emil Gustafsson on Thursday, September 21 2006 @ 07:22 CEST
Putting up some kind of forum here is part of the plan. A developer forum/list was not what I had in mind however.

But if you want to add comment support you may send it to me and I'll use it in a future release.

---
Creator and maintaner of PluginCMS.
FAQ 1.0.2
Authored by: Anonymous on Wednesday, September 20 2006 @ 17:49 CEST
Is it possible to have a "next" and "previous" links with titles with every question. And questions sorted by just some index number, not number of hits?
next/prev and sorting
Authored by: Emil Gustafsson on Thursday, September 21 2006 @ 07:30 CEST
next/prev links is a good idea. Added that to the ToDo list.

Sorting can be configured in the faq/config.php file:
$_FAQ_CONF['cat_sort_order']
$_FAQ_CONF['faq_sort_order']
For example you can use id or title as sort alternatives (see comment before the two settings in the faq/config.php.


---
Creator and maintaner of PluginCMS.
FAQ 1.0.2
Authored by: Anonymous on Thursday, September 28 2006 @ 00:21 CEST
Hi

Is it possible to add the fckeditor to this?
fckeditor
Authored by: Emil Gustafsson on Thursday, September 28 2006 @ 06:51 CEST
I've added it to the feature request list.
I never use that editor myself, but I guess it should not be that much work using it for the plugin either.

---
Creator and maintaner of PluginCMS.
fckeditor
Authored by: Anonymous on Thursday, September 28 2006 @ 13:12 CEST
Is integration to the geeklog search engine also planned?
Geeklog search engine integration
Authored by: Emil Gustafsson on Friday, September 29 2006 @ 16:17 CEST
No it is not "planned" since it is already in there... :-)

Try the search function at this site and you will see it in action...

---
Creator and maintaner of PluginCMS.
Geeklog search engine integration
Authored by: Anonymous on Saturday, September 30 2006 @ 16:38 CEST
Yeah sorry, for some reason it wasn't working for me before
Geeklog search engine integration
Authored by: Anonymous on Tuesday, November 14 2006 @ 06:08 CET
Same for me, the topics showup in the search, but when I click on them I not going to the topic

It redirects to the main FAQ page seeing a long list of all FAQ's
fckeditor
Authored by: Dazzy on Monday, November 27 2006 @ 16:47 CET
Hey

I posted the original comment about the FCKeditor adn thanks to code I found on Geeklog.net by Samstone, I managed to add it myself.

NB this is only tested with 1.4.1

Code for the new faqedit.thtml

<!-- added for fck editor-->
<script type="text/javascript">
// Setup editor path for FCKeditor JS Functions
geeklogEditorBasePath = "{site_url}/fckeditor/" ;
window.onload = function() {
var oFCKeditor1 = new FCKeditor( 'faq_desc' ) ;
oFCKeditor1.Config['CustomConfigurationsPath'] = geeklogEditorBaseUrl + '/fckeditor/myconfig.js';
oFCKeditor1.BasePath = geeklogEditorBasePath;
oFCKeditor1.ToolbarSet = 'editor-toolbar3';
oFCKeditor1.Height = 200 ;
oFCKeditor1.ReplaceTextarea() ;
}
</script>
<!-- end off fck editor hack-->
<form action="{site_admin_url}/plugins/faq/index.php" method="post">
<input type="hidden" name="mode" value="faq"/>
<table border="0" cellspacing="0" cellpadding="2" width="100%">

<tr>
<td align="right">{faq_lang_id}:</td>
<td>
<input type="text" size="40" maxlength="40" name="faq_id" value="{faq_id}">
</td>
</tr>
<tr>
<td align="right">{faq_lang_title}:</td>
<td>
<input type="text" size="69" maxlength="250" name="faq_title" value="{faq_title}">
</td>
</tr>
<tr>
<td align="right" valign="top">{faq_lang_desc}:</td>
<!--<td>-->
<td style="width:100%;"><textarea rows="12" id="faq_desc" name="faq_desc" cols="50">{faq_desc}</textarea></td>
<!-- <textarea name="faq_desc" cols="50" rows="8">{faq_desc}</textarea>-->
<br>{lang_allowed_html}
<!--</td>-->
</tr>
<tr>
<td align="right">{faq_lang_category}:</td>
<td>
<select name="faq_category">
{faq_category_options}
</select>
</td>
</tr>
<tr>
<td align="right">{faq_lang_hits}:</td>
<td>
{faq_hits_edit}
</td>
</tr>
<tr>
<td align="right" valign="top">{faq_lang_date}:</td>
<td>
{faq_date}<br>{faq_date_edit}
</td>
</tr>
<tr>
<td colspan="2"><hr><td>
</tr>
<tr>
<td colspan="2"><b>{lang_accessrights}</b></td>
</tr>
<tr>
<td align="right">{lang_owner}:</td>
<td>{owner_username}<input type="hidden" name="owner_id" value="{faq_ownerid}"></td>
</tr>
<tr>
<td align="right">{lang_group}:</td>
<td>
{group_dropdown}
</td>
<tr>
<tr>
<td colspan="2"><b>{lang_permissions}</b>:</td>
</tr>
<!--tr>
<td colspan="2"></td>
</tr-->
<tr>
<td colspan="2">{lang_permissionskey}</td>
</tr>
<tr>
<td colspan="2">
{permissions_editor}
</td>
</tr>
<tr>
<td colspan="2">{lang_lockmsg}<td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td colspan="2">
<input type="submit" value="{lang_save}" name="action">
<input type="submit" value="{lang_cancel}" name="action">
{delete_option}
<input type="hidden" value="{faq_id}" name="faq_old_id">
</td>
</tr>
</table>
</form>
<script language="JavaScript1.2" defer>
editor_generate('description');
</script>