Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 201
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 182
Total: 182

Author Topic: [Mod] Tagging System  (Read 151176 times)

0 Members and 2 Guests are viewing this topic.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod] Tagging System
« Reply #75 on: April 09, 2009, 08:09:35 pm »
Not sure if I updated that mod to support RC1 I don't think I did.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline sudhakar

  • Member
  • *
  • Posts: 6
    • View Profile
Re: [Mod] Tagging System
« Reply #76 on: April 10, 2009, 10:58:48 am »
Not sure if I updated that mod to support RC1 I don't think I did.

Ok Author,

Do we have any update on it.

I miss the tagging system since i have upgrade to 2.0.RC1.

Kindly help me out to fix the issue.

Offline jmtm

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #77 on: May 20, 2009, 03:56:54 am »
Excellent mod! Thanks the Author!

Question: how I can give the chance to all users (except guests) to add and delete tags in any theme?

Thanks!


Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod] Tagging System
« Reply #78 on: May 20, 2009, 07:50:14 am »
In any theme gets tricky you will need to add the code to the display.template.php for each custom theme.

Permissions are found are Admin -> Permissions then modifying each group.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline jmtm

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #79 on: May 20, 2009, 06:13:13 pm »
Sorry, English not my native language...

Here a code in display.template.php
Code: [Select]
// Tagging System
echo '<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="windowbg">
<b>', $txt['smftags_topic'], '</b>';



foreach ($context['topic_tags'] as $i => $tag)
{
echo '<a href="' . $scripturl . '?action=tags;tagid=' . $tag['ID_TAG']  . '">' . $tag['tag'] . '</a>&nbsp;';
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

}

global $topic;
if(!$context['user']['is_guest'] && allowedTo('smftags_add'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>

</td>
</tr>
</table>';

//End Tagging System

If I have correctly understood... This part of a code allows the admin to delete tags
Code: [Select]
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

This part of a code allows the admin to add tags
Code: [Select]
if(!$context['user']['is_guest'] && allowedTo('smftags_add'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>

I understand that "sa" it is the administrator, but I do not know how to designate other Membergroups.
Set please an example of a code for for other Membergroups!

Thanks!

Offline jmtm

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #80 on: May 20, 2009, 07:20:52 pm »
Sorry, has downloaded mod from your site, has reinstalled, all works! Thanks!
« Last Edit: May 20, 2009, 10:41:28 pm by jmtm »

Offline Vincent Volmer

  • Hero Member
  • *****
  • Posts: 519
  • SMF 2.0.17
    • View Profile
    • Digiscrap.nl
Re: [Mod] Tagging System
« Reply #81 on: May 22, 2009, 04:10:43 pm »
When I save a post with some tags I get an error:

Code: [Select]
Fatal error: Call to undefined function create_control_autosuggest() in /shared/usr/wzen1234567/DOMAIN/www.digiscrap.nl/HTML/Sources/Post.php on line 1809
Thanks in advance,
Vincent

Offline Vincent Volmer

  • Hero Member
  • *****
  • Posts: 519
  • SMF 2.0.17
    • View Profile
    • Digiscrap.nl
Re: [Mod] Tagging System
« Reply #82 on: May 22, 2009, 04:29:57 pm »
I tried un-install the mod and install it again but now i see the next error:


Code: [Select]
http://digiscrap.nl/index.php?action=admin;area=packages;sa=install2;package=TaggingSystemForTopicsSMF2.1.zip;pid=0
Databaseerror: Table 'centanin486.tags' doesn't exist
File: /shared/usr/wcen7085654/DOMAIN/www.digiscrap.nl/HTML/Packages/temp/tagsql.php
Line: 46


And it tells me that I have an out dated database (2.0RC1) instead of RC1-1.
I upgraded SMF from RC1 to RC1-1 yesterday. So...... what happened when I uninstalled the mod? Did it destroy the database somehow?

Brrrrr please help me on this....

Vincent

Offline Vincent Volmer

  • Hero Member
  • *****
  • Posts: 519
  • SMF 2.0.17
    • View Profile
    • Digiscrap.nl
Re: [Mod] Tagging System
« Reply #83 on: May 23, 2009, 01:03:30 am »
I installed it on my test website and the installation went fine. Yesterday evening I was a bit to enthusiastic and installed it on the live website instead of the test website...  :(

So, there must be something with one of the other mods on my live website which caused the errors..... maybe....

1.     Pretty URLs Reverter      0.9.1
2.    Custom Fields On Memberlist
3.    Sitemap    2.0.0
4.    Latest Members RC1    1.1
5.    SMF Gallery Pro Recent Profile Images    1.0
6.    PortaMx v0.956    0.956
7.    SMF 1.0.17 / 1.1.9 / 2.0 RC1 Update    1.0
8.    PortaMx v0.957 Rev1    0.957r1
9.    Prettier_Quotes    1.12
10.    Stop Spammer    2.2
11.    Global Headers Footers    2.0
12.    Internal_Links_Use_Same_Window    1.2
13.    Ad Managment    2.3.4
14.    Downloads System Pro    1.0.4
15.    PortaMx v0.957 Rev2    0.957r2
16.    Users Online Today    1.5.4
17.    SMF Gallery Pro    1.4.5
18.    PortaMx v0.957    0.957
19.    SMF Gallery Pro SSI    2.0
20.    Member Color Link    3.0.6
21.    SMF Canonical Tag    1.2
22.    SMF Gallery Pro Recent Comments Board Index    2.0
23.    SSI Latest Members    1.0.1
24.    MCLegendII RC1    3.0

Offline wimvincken

  • Member
  • *
  • Posts: 6
    • View Profile
Re: [Mod] Tagging System
« Reply #84 on: July 24, 2009, 06:09:09 am »
I tried to install this amazing tagging system and I have the SMF 2.0 RC1.2
Installing it via the package manager goes well, only two problems.

One with the admin.php and the second with the Display.template.php
The admin.php is quickly resolved, but the Display.template.php not.

After some moving around and playing with the results, I found it!

I look and when I add a new post, I see the textbox with the tags.
But then when I want to save the data, I see a blank screen!

Not only that, but where does he displays all the tags at the bottom of the post? I have no idea. At the end it was safer to roll back and wait until there is a real version for the SMF 2.0 RC1.2

Offline voythas

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« Reply #85 on: July 25, 2009, 11:03:47 am »
Hey buddy,
I like your mods and hacks for SMF, however I have one question about it. On my forum there is installed also: SMF Articles and SMF Downloads. Is it possible to combine keywords from those mods and put them into one Cloud Tag with Threads? Oh and I mean for SMF 1.1.10.

It would be really helpful.
Thanks in advance - voythas.
« Last Edit: July 25, 2009, 11:05:28 am by voythas »

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod] Tagging System
« Reply #86 on: July 25, 2009, 11:31:57 am »
Not at the moment would require a good amount of work to do so.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline dazzledark

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #87 on: September 09, 2009, 03:13:57 pm »
http://www.meydangorusu.com/forum/index.php?action=tags

Invalid use of group function
Dosya: /vhosts/meydangorusu.com/http/forum/Sources/Tags.php
Satır: 106

how can i fix this_?

Offline dazzledark

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #88 on: September 09, 2009, 03:47:43 pm »
no solutions?

Offline nico

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« Reply #89 on: May 08, 2010, 12:10:32 pm »
http://www.meydangorusu.com/forum/index.php?action=tags

Invalid use of group function
Dosya: /vhosts/meydangorusu.com/http/forum/Sources/Tags.php
Satır: 106

how can i fix this_?

Hello,

i have same error, what can i do?

Thank you & nice WE

nico

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
3671 Views
Last post July 06, 2007, 09:06:45 pm
by GenoDemoN
5 Replies
6872 Views
Last post November 09, 2007, 06:39:44 pm
by cru
1 Replies
4032 Views
Last post February 04, 2013, 02:06:54 pm
by SMFHacks
7 Replies
9089 Views
Last post December 11, 2013, 01:20:36 am
by Zavoolon
2 Replies
5645 Views
Last post October 21, 2013, 12:05:37 pm
by insider

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal