- Posts: 7
- Thank you received: 1
Can't add tags to jDownloads
- EstebanMax
- Topic Author
- Offline
- New Member
Less
More
7 years 3 months ago #2579
by EstebanMax
Can't add tags to jDownloads was created by EstebanMax
Hello I bought the extension as I need it to add properties to jDownloads items.
However after installation (with the installation package) I can't see the "CP tags" button in the items' content editor.
Thanks
Stefano
However after installation (with the installation package) I can't see the "CP tags" button in the items' content editor.
Thanks
Stefano
Please Log in or Create an account to join the conversation.
- andrea_4g
- Offline
- Administrator
Less
More
- Posts: 1122
- Thank you received: 163
7 years 3 months ago #2580
by andrea_4g
Replied by andrea_4g on topic Can't add tags to jDownloads
Please make sure that jDownloads content element connector is enabled:
Extensions > Custom Properties > Utilities > Manage Content Elements Connectors
Install jDownloads and 'Content'
Extensions > Custom Properties > Utilities > Manage Content Elements Connectors
Install jDownloads and 'Content'
Please Log in or Create an account to join the conversation.
- EstebanMax
- Topic Author
- Offline
- New Member
Less
More
- Posts: 7
- Thank you received: 1
7 years 3 months ago #2581
by EstebanMax
Replied by EstebanMax on topic Can't add tags to jDownloads
Ok thank you.
I have another issue however. After installing Custom properties and save a new property, I get the error message (see also attachment):
0 Call to undefined function mysql_escape_string()
and this also occurs also if I try to create new content in other places (jDownloads, Articles, etc).
The content itself is created, but first I have that error.
That occurred only after installation of the component and If I uninstall it the administration works fine.
I have another issue however. After installing Custom properties and save a new property, I get the error message (see also attachment):
0 Call to undefined function mysql_escape_string()
and this also occurs also if I try to create new content in other places (jDownloads, Articles, etc).
The content itself is created, but first I have that error.
That occurred only after installation of the component and If I uninstall it the administration works fine.
Please Log in or Create an account to join the conversation.
- andrea_4g
- Offline
- Administrator
Less
More
- Posts: 1122
- Thank you received: 163
7 years 3 months ago - 7 years 3 months ago #2582
by andrea_4g
Replied by andrea_4g on topic Can't add tags to jDownloads
You unearthed a bug.
Here's a quick fix:
Edit file plugins\content\cptags\cptags.php
Modifiy line 112 from:
to
Save
That should do the trick.
Please give us some feedback (we'll then release an updated version of Custom Properties).
Here's a quick fix:
Edit file plugins\content\cptags\cptags.php
Modifiy line 112 from:
Code:
$content_id = mysql_escape_string($article->$article_id_key);
Code:
$content_id = mysql_real_escape_string($article->$article_id_key);
That should do the trick.
Please give us some feedback (we'll then release an updated version of Custom Properties).
Last edit: 7 years 3 months ago by andrea_4g.
Please Log in or Create an account to join the conversation.
- EstebanMax
- Topic Author
- Offline
- New Member
Less
More
- Posts: 7
- Thank you received: 1
7 years 3 months ago #2583
by EstebanMax
Replied by EstebanMax on topic Can't add tags to jDownloads
Hello I made the change but the same issue, in the attachment the change in code
Please Log in or Create an account to join the conversation.
- andrea_4g
- Offline
- Administrator
Less
More
- Posts: 1122
- Thank you received: 163
7 years 3 months ago #2584
by andrea_4g
Replied by andrea_4g on topic Can't add tags to jDownloads
Here's a modified (and more elegant) fix that should definitely work.
Edit file plugins\content\cptags\cptags.php
Modifiy the very same 112 line from:
to
Save
Edit file plugins\content\cptags\cptags.php
Modifiy the very same 112 line from:
Code:
$content_id = mysql_escape_string($article->$article_id_key);
Code:
$content_id = $db->escape($article->$article_id_key);
Please Log in or Create an account to join the conversation.
Time to create page: 0.179 seconds