Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Tags System Panel

Asked Modified Viewed 16,398 times
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
asked
Veteran Member

[mp]274[/mp]
Edited by HobbyMan on 23-04-2011 00:02,
0 replies

31 posts

V
Vyper69
V
Unprecedented Times call for Unprecedented Measures
  • Senior Member, joined since
  • Contributed 551 posts on the community forums.
  • Started 146 threads in the forums
answered
Senior Member

Great infusion, but what would make it even better, is if it were linked to weblinks.
0 replies
— 1 year earlier —
P
petera
P
petera 10
  • Junior Member, joined since
  • Contributed 15 posts on the community forums.
  • Started 7 threads in the forums
answered
Junior Member

Hi Philip - I really want this one to work for me but it's not playing ball! I've got everything installed into the right places, the system is infused, the panels are enabled and the BB code seems to work but ... nothing. I've entered a few tags into news and photographs but nothing shows up in the tags panel and the only hint of an error I get is if I click on tagged content I get:

Quote

Unknown column 'd.download_description_short' in 'field list'


The only other thing that seems odd is in the tag sytem adminstration the six buttons at the top for admin, news, photos, etc. don't appear to do anything when I click them.

Any ideas? I'm on Fusion 7.01.01.

Thanks for any help.
0 replies
— 4 months earlier —
S
Structor
S
  • Member, joined since
  • Contributed 116 posts on the community forums.
  • Started 11 threads in the forums
answered
Member

I get this errors:

admin/tags_system_admin.php
Undefined index: tags_color4 Linie: 57 05 septembrie 2011 00:04:31

admin/tags_system_admin.php
Undefined index: tags_color3 Linie: 54 05 septembrie 2011 00:04:31

admin/tags_system_admin.php
Undefined index: tags_color1 Linie: 48 05 septembrie 2011 00:04:31

admin/tags_system_admin.php
Undefined index: tags_color2 Linie: 51 05 septembrie 2011 00:04:31

inc/inc.php
Undefined index: tags_color4 Linie: 15 05 septembrie 2011 00:04:31

inc/inc.php
Undefined index: tags_color1 Linie: 12 05 septembrie 2011 00:04:31

inc/inc.php
Undefined index: tags_color3 Linie: 14 05 septembrie 2011 00:04:31

inc/inc.php
Undefined index: tags_color2 Linie: 13
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

V1.5 now has color picker in admin section to make is easier to choose tag colors in panel

http://www.phpnuclear.com/downloads.p...load_id=11
0 replies
— 2 months earlier —
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

This version also includes a bbcode for the tagging of text [tag]tagword[/tag]
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

A new version which now allows tagging of downloads can be downloaded here: http://www.phpnuclear.com/downloads.p...load_id=11 (v1.4)
0 replies
P
Pete_Hes
P
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Cheers :)
here goes
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

The infusion was written for v7.01 and above. get_settings() is not available in v7.00

Upgrade your site to the latest version and it'll work just fine.
0 replies
P
Pete_Hes
P
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

The version on Admin is Panel - v7.00.05
I have tried with a few different versions and enabling / disabling the infusion manually creating the table also as there was a previous error which is now cured
Has anybody else had a similar error?

Thanks
Pete
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

What version is your site?
0 replies
P
Pete_Hes
P
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Hi,
I am trying to use this infusion but I get when infused and uploaded

Fatal error: Call to undefined function get_settings() in D:\WEBSITE\wwwroot\infusions\tags_system_panel\inc\inc.php on line 12

please help
0 replies
A
Arda
A
Arda 10
  • Member, joined since
  • Contributed 150 posts on the community forums.
  • Started 11 threads in the forums
answered
Member

Check the hidden comment on the line, you can also use $current_tags[]=$eachtag; ;)
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

I've been trying something like that. The problem is that neither array_push or array_unique work as they're in a while loop from the dbquery.
If I move them out of the loop they lose the data.
0 replies
A
Arda
A
Arda 10
  • Member, joined since
  • Contributed 150 posts on the community forums.
  • Started 11 threads in the forums
answered
Member

Idea:

If you couldn't manage to use array_unique() First split them with explode(), and use in_array() to check if they are in the $tags array, and then use array_push to add the new tag.

Example:

$current_tags=array("one,","two","three","four","five");

$new_tags="one, two, three, four, six";

$temp_tags=explode(", ",$new_tags);//we splitted new tags and made a $temp_tags array
foreach ($temp_tags as $eachtag) {
if (!in_array($eachtag,$current_tags))
array_push($current_tags, $eachtag); // or $current_tags[]=$eachtag;
}

print_r($current_tags); //six will be added to $current_tags array
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

Thanx m8. I'll have a look at the admin idea. I already tried GROUP BY tag_tags. The problem is it will only group those entire entries that are the same, not individual tag words.

[ulist=disc]one, two, three, four, five
one, two, three, four, six[/ulist]
won't be grouped together.
I played around with other alternatives to just group the individual keywords but I couldn't get it to work right.
0 replies
A
Arda
A
Arda 10
  • Member, joined since
  • Contributed 150 posts on the community forums.
  • Started 11 threads in the forums
answered
Member

Hey Philip, how about this idea:

Add a panel to admin panel (like user_info_panel shown in admin panel (you can edit user_info panel to include panel code simply)) and show the tags area when adding/editing content there. This would be very easy for administrators and they can add the tags while adding the content.

edit: by the way, to disable multiple tag additions, you must do this:

this query:
$result= dbquery("SELECT 
                                tag_id,
                                tag_type,
                                tag_tags
                                FROM ".DB_TAGS."
                                ORDER BY
                                RAND() LIMIT 0,10
                                ");


should change as:
$result= dbquery("SELECT 
                                tag_id,
                                tag_type,
                                tag_tags
                                FROM ".DB_TAGS."
                                GROUP BY tag_tags
                                ORDER BY
                                RAND() LIMIT 0,10
                                ");
Edited by Arda on 23-04-2011 15:20,
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member



v1.2 now in AddonDB

Added tag search to side panel
Added second U-Ctr panel to display tags under each tagged item
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
  • Started this discussions
answered
Veteran Member

That's kind of missing the point of the whole thing and not really possible without a rewrite.

Remember, tags are the key not page id's
0 replies
L
Luke
L
Luke 10
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
answered
Newbie

This is great job Philip! I have only one little request. How to get the tags linked directly to custom page, not to tags.php. I tried to look at the code of panel but i'm noob with that. What should i change?

Thanks in advance.
0 replies
M
mstokens
M
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Very nice Philip! One little problem... an apostrophe in the tag breaks the link :)
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 31 posts
  • Votes 0 votes
  • Topic users 12 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet