DISQUS

Linkr Support (codes): Linkr Support

  • Piotr Skowronek · 1 year ago
    Hi All,

    First of all, Linkr is great - the very nice extension.

    I came across a problem with listing files, though. The files and directories aren't being listed when hosting account seems to be chroot'ed - ie, php root directory is set to "/".

    I found workaround, though don't known whether it can be considered as a real fix for linkr ('cuz it might be the problem w joomla itself). The source of the problem is that
    Joomla sets JPATH_ROOT to empty string when script root directory is "/".
    Linkr's helper.php under linkr/backend (components/com_linkr/models) is doing following security checking at line 44 and 77:

    if (empty( $path ) || JString::strpos( $path, JPATH_ROOT ) === false) {
    return $dirs; // <-- empty array()
    }


    As JPATH_ROOT is empty, it won't be found in given $path, hence - no files are being listed.

    Workaround is to alter condition in above line with following code:

    if (strlen(JPATH_ROOT) > 0 && (empty( $path ) || JString::strpos( $path, JPATH_ROOT ) === false)) {
    return $dirs;
    }


    Additionally, this code at the begining of listDirectories (line 39) has to be added:
    if (strlen($path) == 0) {
    $path = '/';
    }

    The one problem still exists, image thumbnails are not generated :/

    Linkr version:
    com.linkr_2.2.2_2008-08-10
    Joomla version:
    1.5.6
  • Piotr Skowronek · 1 year ago
    As it comes to image thumbnails, a quick dirty fix is to replace
    two following lines 110-111 in helper.php:

    $f->icon = JString::str_ireplace( JPATH_ROOT.DS, JURI::root(), $f->path );
    $f->icon = str_replace( DS, '/', $f->icon );


    with:


    if (strlen(JPATH_ROOT) > 0) {
    $f->icon = JString::str_ireplace( JPATH_ROOT.DS, JURI::root(), $f->path );
    $f->icon = str_replace( DS, '/', $f->icon );
    } else {
    $f->icon = JURI::root() . $f->path;
    }


    Hope it will be helpful,
    Regards,
    Piotr
  • l33p · 1 year ago
    Post your suggestions, questions and problems here.

    -Frank
  • l33p · 1 year ago
    Who else is having problems with Linkr displaying unpublished articles?
  • Poh · 1 year ago
    Hi,
    I've just started using Linkr and after successfully linking the first 3-4 articles, Linkr is not picking up newly saved articles unless I logout and login again.

    Here are the steps of what I did:
    1) Create a new uncategorised article and save it.
    2) Open an existing article (different article to the one created earlier) and highlighted some text.
    3) I click on Linkr -> Articles and selected Uncategorized for both drop-down menu.
    4) The newly created/saved article doesn't show up on the final drop-down menu unless I logout and login from Joomla back-end.

    I'm not sure if I'm using Linkr incorrectly but I didn't have that problem when linking the first 3-4 newly created article.

    Please advise. Thanks.
  • Partho · 1 year ago
    Hi I have installed Linkr in two websites and they work perfectly.
    I don't know where i went wrong this time. but the linkr button refuses to show.
    And when I try to uninstall the Linkr button plug-in I get this message.

    "Plugin Uninstall: Manifest File invalid or not found
    Uninstall Plugin Error"

    if I enable the Plugin- It crashes my administrator.

    Please help


    Is there a way to correct this manually via FTP etc.
  • Partho · 1 year ago
    Sorry I worked it out.
    I manually replaced the two files in the plugins>editors-xtd>
    and enables the plug-in and bingo everyhting was working again.

    thanks for the super extension :)
  • l33p · 1 year ago
    @ Poh:

    You're not using it wrong. That's probably due to caching, and needs to be fixed. I'll look into that too.

    @ Partho:

    Great!
  • Poh · 1 year ago
    Thanks for the quick respond and thanks for creating this great extension.
  • egy_st3alth · 1 year ago
    hello,
    the component have an error when i try to install it
    i need the manual way to install it
    thanks
  • l33p · 1 year ago
    Hi
    What version of Joomla! are you using?
  • egy_st3alth · 1 year ago
    pleeeeease help
  • ian · 1 year ago
    I can't link to anchor points between tabs within the same article (jch tabs) but this may be a template issue (ja_purity). Any ideas how to make this work?

    Ian
  • l33p · 1 year ago
    Linkr doesn't have that functionality at this moment. It would be interesting to see Linkr work with jch tabs...

    For now, there's nothing you can do about it :( But I'll add it to my "todo" list
  • Oran · 1 year ago
    Please help! I installed Linkr, the installation was successful and I know have a link under "components" called "linkr" - it is a help file. HOWEVER, when going to edit an article, I see NO Linkr button, link, option. Even not when I open "external linking window". HELP! What am I doing wrong?
  • Oran · 1 year ago
    PS. I have enabled Plugins and am using the latest version of Joomla.
  • Oran · 1 year ago
    No answer yet....?
  • l33p · 1 year ago
    Note that there are two plugins. You need to make sure the button, called "Editor Button - Linkr", is enabled, and not only the "Content - Linkr" plugin. You should see the button appear next to the "Image", "Read More" and "Page Break" buttons.
  • Melissa · 1 year ago
    I installed Linkr on Jooma 1.56 with Tiny Mice

    The Linkr editor plugin has been enabled.

    However, I can seem to activate the Linkr Related Articles and the other options
  • marrett · 1 year ago
    Hi

    I installed Linkr and its 2 plugs in on a Joomla 1.56 localhost site ( running WAMP ).

    I go to my articles and the Linkr button is there.

    However, I am unable to activate any of the links under "Tools" or "Link".

    Hence I cant use Linkr at all .Please help
  • l33p · 1 year ago
    @ Marrett and Melissa

    What are the browsers your using? Linkr uses a lot of javascript, so it assumes that you have javascript enabled in your browser too.
  • marrett · 1 year ago
    Hi
    Thanks for the prompt response.
    I found the problem - I have to indicate the " Frontpage " field to " No " in Content -Linkr plugin and then it works .I am using the JoomlaArt Teline II template .I think it has something to do with how the template was structured ?

    Now I have another problem.I want to change the title " Related Articles " to " Other Useful Articles " .I change it at " Content-Linkr plugin but the title still appears as " Related Articles "

    I am using Google Chrome with Javascript enabled .The editor is JCE
    Thanks
    Marrett
  • marrett · 1 year ago
    Solved title problem.Apparently my localhost/template/J1.56 and Linkr combination needed a system restart to get the new title displayed.Thanks

    By the way a wish list : admin can select to have titles displayed in any color and also to have "box' or table around the articles chosen to be displayed.

    A very useful extension. Thank you very much. Will vote the extension as the choice extension in Joomla !
  • l33p · 1 year ago
    Great!
    Since you had to reboot everything, the problem is probably due to caching. I'll have to add that to the FAQs page.

    The articles are already displayed inside a "div" element, with the class "linkr-rl". But I'll take note of your suggestion, and I'll add more flexibility to customize the look through CSS styles.

    Thanks for the feedback.
  • Sela · 1 year ago
    Hi eveybody,
    I'm using Linkr but I've changed my folder with files, is not "images" but "uploaded" (in the same level as "images")
    In the site's settings I've modified my media folder, but Linkr show me only the "images" folder.
    How can I show also the "uploaded" folder`?
  • l33p · 1 year ago
    The current version of Linkr has some problems with caching. Try closing the browser and logging in again.
  • Eric Leung · 1 year ago
    I am using linkr to allow users from the frontend to create links in articles to files for download. This seems to work fine but I want to change the starting directory. Right now when I click the linkr button, and Link->Files, it starts out at the Joomla! root directory and I need to navigate down to where the files I want to link are stored. Any way to set the starting point?
  • l33p · 1 year ago
    There's no way of setting an initial directory :(
    But that's an interesting suggestion.
  • l33p · 1 year ago
    @ Piotr

    I don't think its a problem in Joomla, Its more a bug in Linkr (which I never would have seen myself ! ) .

    Your workaround does work, and I've already added this fix to my ToDo list.

    Thanks for bringing that up,
    Frank
  • Ben Kilah · 1 year ago
    HI there,

    Thanks for an awesome plugin!

    I have one question tho. Whenever we highlight text and use the Linkr function, once we have selected the link and closed the linkr window, the text with the link always gets moved to the top of the document rather then staying at the original position.

    Is there some code I need to change in the javascript to fix this?

    Thanks
    Ben
  • l33p · 1 year ago
    Unfortunately not. Linkr creates the links, but Joomla! inserts it into the article and closes the box.

    Others have had the same problem. I have a few questions for you:

    - Whats the browser your using? and what OS?
    - If you don't select any text, but you place your cursor inside the text somewhere, does the link still get inserted at the top?
    -If you try inserting a "Related Links" or "Bookmarks" code, does it get inserted at the top too?

    I would test all of these myself, but I can't reproduce that bug!

    Thanks for your help
  • Ben Kilah · 1 year ago
    Hi francis,

    I'm using IE7 on Vista 64.

    Still does it with the latest version :(

    Another quick question for you. The only folder that appears in my files list when i'm in the root directory is the "images" folder. I'd love to be able to link to files that docman has uploaded so I can keep a central repository of all files.

    Is there an array of allowed directory names or is there something I am missing.

    Cheers,
    Ben
  • bak1 · 1 year ago
    Hi

    I have installed it, activated it, but still don't see how i can't see how to insert internal links in a article. I don't see any Linkr button.

    Please help.
  • l33p · 1 year ago
    @ bak

    Make sure BOTH the content and button plugins have been enabled. to see the button, try and edit an article. The button should appear next to the "images" link or "Page Break".
  • Poh · 1 year ago
    Hi,

    Stupid question... if I've previously installed Linkr but would like to install the new version. Can I just install the button, component & plugin or do I need to uninstall the previous version first?

    Thanks.
  • l33p · 1 year ago
    Yup, you should uninstall the previous version.
  • carlo · 1 year ago
    How do I upgrade? Dis.installing the old version and reinstalling the new version? Or thereem is any other way?

    Is there an italian translation? I will offer to do it... if and when i have time..

    Thanks
  • carlo · 1 year ago
    sorryyyyyyyy I did not see the last post with the reply to halm mine question...
  • Paul · 1 year ago
    Weeirdd. I installed the newest version (s). I hit the LINKR icon at the bottom. The window pops up... but no matter what I click on, nothing happens. Its like all the links are inactive/dead.... heard of this before? And what did I do wrong? :( This seems like the perfect tool for me to use along with sh404sef!
  • Paul · 1 year ago
    Sorry, update for ya. If I navigate to an article with Linkr turned on in IE7, I get errors and cannot continue. As soon as I turn it off, it works just fine. I don't know if one thing has to do with the other, but I use FF anyway. :) Thanks!
  • Helga · 1 year ago
    Linkr won't show any articles, no matter where I click in the pop-up. Firebug gets following errors :

    missing ; before statement (in com_linkr/assets/help.js line 13)
    LinkrHelper has no properties (in the html created by linkr on the webpage)
    LinkrAPI is not defined (in the html created by linkr on the webpage)

    Anyone else having this problem?

    I'm using Firefox 2 and IE7.
  • l33p · 1 year ago
    @ Helga & Paul

    The problem was that the wrong script file was packaged with Linkr by mistake... The two plugins are ok, but you should download the component part (now 2.2.3a) with the fix. That should fix everything.
  • Paul · 1 year ago
    That did the trick! Much appreciated.
  • Craig · 1 year ago
    I believe I am having the same issue as Paul and Helga. The pop-up window never returns a list of articles or menu items to choose from. The link to Files and Contacts works fine. I installed the 2.2.3a component per the instructions, but am still having this problem. I'm on FireFox 3.0.2 and also tested it in IR 6.X.
  • Shawn · 1 year ago
    I just wanted to thank you for sharing your hard work with a beginner. I offer a special thank you for the time and resources you provided for the nice documentation, as well.
    Yours,
    Shawn
  • Mori · 1 year ago
    Greets. I was wondering if anyone knows how to change the plugin to obtain a different url for the link. Right now it's giving me
    http://localhost/mywebsite/index.php?option=com...
    but I just want to have
    http://localhost/mywebsite/index.php?option=com...
    How would you go about doing that?

    Thanks
  • l33p · 1 year ago
    @ Craig
    hmm.. try clearing your browser's cache.

    @ Mori
    If your using Linkr 2.2.3, you can change that in the plugin parameters. See the "FAQs" page in your site's back-end.

    Frank
  • Patrick · 1 year ago
    Hello everybody,

    i have this problem that when i press the "create links" button nothing happens in internet explorer 7 but it does work in google chrome. Can anybody explain or help me how to get this working on internet explorer 4
  • l33p · 1 year ago
    IE Problem

    I made some changes to the component. But before I post it up, I want to know if it works for you. You need to uninstall 2.2.3a and install 2.3.3b: http://codes.statsful.com/files/com.linkr_2.2.3...

    No need for uninstalling the plugins.
    Frank
  • Patrick · 1 year ago
    First let me apologize for not answering directly. I have tried the component but it still doesn't show anything in internet explorer. Could you please look at it again.
    Thank you for your help.
  • Nick · 1 year ago
    Is there a way to create a link that links to an entire section? I am trying to create a restaurant menu and I have 3 menus (dinner, dessert, and wine) and I am making each menu item (such as dishes and wines) as their own article. The menu page itself is a "section blog layout" and I would like to create a link that would open the "section blog layout" with all the articles shown.
  • l33p · 1 year ago
    @Nick
    No, there isn't. You would have to create a menu link first. That sounds like a feature to add to future versions...

    @Ben Kilah
    To choose which directories to show in the files list, go to "Administrator » Components » Linkr » Parameters" and type in the folders you would like to display for browsing.

    Internet Explorer problem
    I uploaded a fix which works for me. You can download it here: http://codes.statsful.com/files/com.linkr_2.2.3...
  • Julian · 1 year ago
    Hi,

    This statement on you web does not make sense? can you link to articles or not?

    Can Linkr create links to articles?
    No. Linkr is a tool for adding links to articles and improving SEO for your site. If you want to create a new link, you need to use the Menu Manager.
  • l33p · 1 year ago
    Linkr can link to articles, but it cant create menu links.

    If the menu link (e.g. "example.com/about-us.html") already exists, than Linkr will help you link to it. But if it does not exist, and you want to create it, you need to use the Menu Manager.

    regards,
    Frank
  • Aman · 1 year ago
    Hi,
    I have tried everything as you have stated, b ut I cant see the Linkr Button any where in the article page. Its been activated from plugin manager.

    What should I do?
  • Robbie · 1 year ago
    Is it possible to remove the article ID from the URL? As it stands, my URLs consist of the article ID, followed by the article name: e.g. http://site.com/month/44-article-name

    Is it at all possible to have the URL only list the article name? If so, where would I find documentation on how to do this?

    Kindly,
    Robbie in Florida
  • scott maxworthy · 1 year ago
    Hi All

    Great extension just one little problem I'm having

    When bookmarking the links generated are "http:www." instead of "http://www."?
  • l33p · 1 year ago
    @ Robbie
    Unfortunately, Linkr doesn't decide how your URLs look like. To remove the article ID, you would have to download a "SEF plugin" like sh404SEF or ARTIO JoomSEF. You can find some here: http://extensions.joomla.org/component/option,c...

    @ Aman
    If "Editor - Linkr Button" is activated then it should show. Is it just the Linkr button that's missing? or are you missing the "image" and "read more" buttons too? Also, make sure you're using the latest version of Linkr on Joomla 1.5.1 or later.

    @ Maxworthy
    I don't know how that can happen :S If you add "related links" with Linkr, do they show properly? Also, do you have a SEF plugin installed? Let me know and I will look into it..
  • l33p · 1 year ago
  • Robbie · 1 year ago
    Thanks for the speedy response... I'll look into it.
  • paulissen · 1 year ago
    I uploaded a pdf-file through Linkr, it works just fine, except for the destination folder. According to the documentation the deafult folder is /images, but the pdf-file landed in the root.
    Also I was not able to ad lookuo-folders for Linkr via the admin menu.
    When I try to link a file I should be able to choose between several menu's but Linkr doesn't sho them.

    Can you give me some clues.

    Thanks
  • paulissen · 1 year ago
    The problem is fixed now. Probably I used an older version.

    Linkr for President
  • l33p · 1 year ago
    great lol
  • Matt · 1 year ago
    Linkr is great, but how can I force it to make a secure/SSL link??
  • l33p · 1 year ago
    You would have to manually edit the link to add "https://your-site" for a secure link.
  • raffy · 1 year ago
    First of all, thank you for this great extension!
    I noticed only a thing:
    Environment:
    An aritcle shown also on front page with an internal link to another article, and with a read more button.
    On front page the link differs fron the one shown inside the full article page (read more).
    Example
    In front page: http://www.robotale.net/robotalecms/component/c...
    In article page:
    http://www.robotale.net/robotalecms/the-news/28...

    Can you help me?

    Thank you!
    Raffy
  • l33p · 1 year ago
    Hi Raffy

    I can see you have SEF turned on in your web site. Every time you visit your web site, the links are built by Joomla's SEF plugin. That means that Linkr doesn't control how your links look like in the end.

    Linkr was made that way so that you can decide if you want to use Joomla's SEF solution or other solutions, or change solutions at any time.

    I think there talking about "duplicate URLs" (like yours) in the forum. There probably going to fix this in a future release.

    Frank
  • maccs · 1 year ago
    Hi all,
    I have a problem!

    why obtein this error:

    403 - Invalid Token

    with linkr version:
    com.linkr_2.2.3_2008-10-13
    Joomla version:
    1.5.7

    Thanks

    Maccs
  • l33p · 1 year ago
    Hi! where do you get this error? is it when your linking an article? In any case, you should try refreshing the page, or closing and re-opening the Linkr box.

    Frank
  • sHuRuLuNi · 1 year ago
    OK, how would I go on extending this for linking to Mosets Tree Listing?
    Basically, I wanna be able to link a phrase in content with the respective Mosets Tree Listing. I had a look on the plugin & component source but couldn't (yet:) figure out how to do it. Is it possible at all?
  • sHuRuLuNi · 1 year ago
    OK, I managed to bring up the Mtree Categories in the Dropdown, and I can select a category, but then this shows ALL listings (not only those for THAT category), and when I select one listing I get a "bad request". When I use "search" I get the message I should type at least 3 characters. I can't for the life of me figure out why.
  • sHuRuLuNi · 1 year ago
    Anyone?
  • l33p · 1 year ago
    Hi

    If you type in more than 3 letters in the search box, you shouldn't get this message. Post back here if you do.

    Frank
  • sHuRuLuNi · 1 year ago
    I think you missunderstood. The search issue was for Mosets Tree, which I am trying to make Linkr work with. As I said, I managed to bring up the Mosets Tree Listing Categories in the Dropdown, and I can select one, but then I get "bad request". And if i simply search for something (yes, more than 3 letters) I get the message I wrote in the post above. So, the search DOES work for Articles, but my Problem is how to extend Linkr to also work with Mosets Tree?
  • l33p · 1 year ago
    Ok. This might be a bug. Let me check it out and get back to you. You're using Mosets Tree in Legacy mode right?
  • sHuRuLuNi · 1 year ago
    Yes. But, as you know mtree is not supported in Linkr, so I had to basically "massacre" the articles_menu.php just to modify it and try to make it work with Mtree :). Would be nice if there was a "real" articles_mtree.php.
  • l33p · 1 year ago
    Ok. If you know a little bit of JavaScript, then you can create a plugin to add Mosets Tree to Linkr. See http://codes.statsful.com/linkr-api

    I was trying to download Mosets Tree, but there doesn't seem to be a registration area on the web site. Do you think you could send me a copy of the installation file?
    my email is FrancisAmankrah - at - gmail
  • sHuRuLuNi · 1 year ago
    Hey Frank, have you received my mail?
  • l33p · 1 year ago
    yup - thanks
  • Tom · 1 year ago
    I set up website on localhost and your extension worked great.
    Uploaded site to siteground and get the following error when I try to edit articles with Linkr button enabled

    Fatal error: Call to undefined method stdClass::onDisplay() in /home/tdmoxam/public_html/libraries/joomla/html/editor.php on line 261

    If I disable button, I can edit articles
  • l33p · 1 year ago
    Hi Tom. Do you know what version of PHP is on siteground?
    I'll try to see how you can get that error.
  • Tom Moxam · 1 year ago
    PHP versions currently supported are: PHP 5.0, PHP 5.1 and PHP 5.2
  • l33p · 1 year ago
    A new version will be released soon, hopefully it fixes that issue. I'll post back here when it's ready.
  • Tom Moxam · 1 year ago
    Need help getting LINKR to work on Siteground.

    Site worked great building on localhost, but, when i uploaded to siteground could not edit articles.

    When I disable linkr it works fine?
  • l33p · 1 year ago
    Hi,

    What happens exactly? do you get a blank page? or an error message?
  • Tom Moxam · 1 year ago
    See article above,
  • l33p · 1 year ago
    A new version will be released soon, hopefully it fixes that issue. I'll post back here when it's ready.
  • fabricio · 1 year ago
    I'm getting a problem with the URL not showing corretly. I'm getting http://meneame.net/submit.php?url=http:elpp.es/... inseat of http://meneame.net/submit.php?url=http://elpp.e.... I've got sh404SEF installed.
  • fabricio · 1 year ago
    OK digging throught the code I found the problem to be in $this->_furl which is returning http:site instead of http://site .Where is the value coming from? I cant find on the global configuration where to add site URL...
  • l33p · 1 year ago
    There's no global configuration for that. The value comes from variables in Joomla, so it's automatically set.
    I checked www.elpp.com and the links seem to be fine. Did you fix this yourself? I would be glad to add this fix to the next release.
  • Frederik · 1 year ago
    It look s a great solution, because I despered need to link too PDF files.
    Hoewever, when i hit the linkr button, I see only link_article and nothing else.
    Can't browse too files en can't browse directorys. Please how do I solve this?
    Thanks!
  • Frederik · 1 year ago
    Problem Solved.
    Plugin seems to be corrupt. I removed linkr from de database, installed again, everythinks works fine now!
  • l33p · 1 year ago
    Great! I'll double check the installation files to make sure there's no mistakes.
  • marco · 1 year ago
    i have a problem with your plug in.
    i installed (and activated) it but i can't see any button it in my editor.
    i have joomla 1.5.8. and the default editor
    Thank'you for your job and for your answer
    Marco
  • l33p · 1 year ago
    make sure you activate both plugins. did you activate "Editor Button - Linkr" as well?
    If you did and the button still doesnt show, do you see the "Read More" button?

    If the only button that doesn't show is the Linkr button, it might have something to do with the editor.
  • marco · 1 year ago
    thank'you.
    Now your job works well.
    It was all ok. I modified nothing and it........ works.
    I don't know waht happened !
    Marco
  • Pete · 1 year ago
    Linkr is great and I use it a lot. I would however like the popup window to be higher, how can I tweak this setting?

    Pete
  • l33p · 1 year ago
    Unfortunately, that can't be changed, since the popup window is automatically centered (not by Linkr).

    A new version will be released soon, maybe the size should be editable?
  • Matthew · 1 year ago
    In the bookmarks it removes the // at the end of the http://.

    So for the stumble, it has the URL: http://www.stumbleupon.com/submit?url=http:www....

    which causes stumbleupon to be confused as it's not a valid URL.
  • l33p · 1 year ago
    You're not the first to report a problem like that. But when I visit http://www.polarisrising.com/november-2008.html the links seem to be fine... Did you fix this yourself? or are you still getting that problem?
  • Matthew · 12 months ago
    yes, I did a code hack.

    I replaced in plugins/content/linkr_content.php :
    $this->_furl = str_replace(JURI::base(true).'/','',JURI::base());
    with
    $this->_furl = "http://www.polarisrising.com";

    without this, it has what I described above
  • Loh · 1 year ago
    There isn't a Save or Submit button in the popup box when I click on Linkr button in an article. That is, i cannot save the changes i make.
  • Loh · 1 year ago
    I've figured that out .. now I'm feeling a little dumb for asking that question lol

    Now another dumb question : Can a bookmark (eg digg) open in a new window? I don't want my visitors to leave my site.
  • l33p · 1 year ago
    hmm.. you would have to edit that yourself, in "Administrator » Components » Linkr » Bookmarks" and by selecting the bookmark you want to edit. To change Digg for example, you would have to add " target="_blank" " before href="...

    I'm starting to think that there should be a way to automate this..

    Do you have anymore stupid questions? lol im just kidding.. this is what the Support page is for.
  • Loh · 1 year ago
    Thanks for the quick response, I'm going to do that now, yeah, makes more sense for it to open in a new window or a popup. I was planning to use addthis if there's no way to hack the target= ..

    I did not say stupid, I said dumb .. well though they mean the same thing, but it sounds cuter lol
  • Schley Andrew Kutz · 1 year ago
    If you change

    //$index = 'index.php?option=com_content&view=article&id='. $id .'&catid='. $cid;

    to

    $index = 'index.php?option=com_content&view=article&id=' . $id . '&Itemid=' . $id;

    And then turn on Joomla's rewrite capabilities then URL will be rendered normally without the article ID. This looks much nicer IMO.
  • l33p · 12 months ago
    Hi

    You can leave it that way if it works for you. Linkr builds the links the same way Joomla! does, that way it can stay compatible with other extensions, especially SEF extensions.
  • Peter · 12 months ago
    I am getting a 'invalid token' error when trying to install Linkr on my Joomla 1.5.8. website...

    What is causing this error?
  • l33p · 12 months ago
    Try using the latest version of Linkr.

    If you're already using the latest version of Linkr, then there might be a bug in your Joomla! installation. Try closing the window and logging in again. If you still get that error, post back here.

    -Frank
  • Jay · 12 months ago
    Hi - This extension looks fantastic, except that I can't quite get it to work for me! I've got the same problem people have mentioned before - the URL is returned as "http:site.com" rather than "http://site.com". I can't see an indication on here about how people have fixed it. Any thoughts?
  • l33p · 12 months ago
    Yes.. I would also like to know how they fixed it. Are you still getting that problem today?
  • Tod · 12 months ago
    Great extension - much better than other social bookmarking plugins!

    But is there a way to make the bookmarks appear at the top of the article, instead of the bottom? Or, even better, how about being able to choose some bookmarks at the top and others at the bottom?

    Just my suggestions for future releases :)
  • l33p · 12 months ago
    That's a good idea. This will definitely be taken into consideration.

    Thanks for the suggestion!
  • ball.in.th · 12 months ago
    Hi,

    This extension is great. I love it. I am having a little problem with it regarding SEF though. When a link is created when SEF is on, once SEF is turned off, the created link still points to the SEF style and would no longer work.
  • ball.in.th · 12 months ago
    More information about problem with SEF: it seems the links are created correctly (index.php?...), but once the article has been edited and saved when SEF is turned on, all links would get changed to the SEF style permanently. After this, once SEF is turned off, all links would no longer work.
  • l33p · 12 months ago
    Are you using an SEF extension? Or a content plugin/extension?
  • ball.in.th · 12 months ago
    I enable all SEO Settings in Global Configuration. There's no other SEF or content extensions. It sounds like you're unable to reproduce this problem. hmmm I am using the TinyMCE editor, do I have to change anything there? The editor has code cleanup options.
  • l33p · 11 months ago
    TinyMCE is probably not the problem. I guess I'll have to look into it deeper.. You're using Joomla 1.5.8?
  • Clive Churchyard · 11 months ago
    Hi there

    I've installed as per your instructions but am unable to find the Linkr button
    I am running Joomla 1.5.7 will this be my issue?
    Cheers
    Clive
  • Clive Churchyard · 11 months ago
    Just tried it on a 1.5.8 installation and still don't see the button in the editor
    Help!!
  • l33p · 11 months ago
    Hi

    Make sure you activated the two plugins. The button plugin is called "Editor Button - Linkr" and the other one is called "Content - Linkr".
  • Herman van Delen · 11 months ago
    Something went wrong with the Linkr installation so I want to uninstall and reinstall Linkr but get the message "Plugin Uninstall: Manifest File invalid or not found ". Is there an alternative way to uninstall Linkr? Thanks!
  • l33p · 11 months ago
    You'll need to access the files in your site.

    Try browsing to "plugins/content" to see if there is anything called "linkr_content". Delete those files.

    Then, there might also be a file in "plugins/editors-xtd" called linkr_button. Delete those files too.

    If you can access your database, you should check your joomla database for the plugin entries in the "jos_plugins" table. delete anything called Linkr (there should be one or two entries).

    This might not be necessary: try closing your window and re-opening it, and re-downloading Linkr,

    -Frank
  • CK · 11 months ago
    Is it possible for Related Items to be limited to categories/sections? Currently it is pulling all types of content even those that aren't supposed to be there.

    I know there's the option to Exclude items manually but it only takes care of existing unrelated content, the problem will be back when new content is added down the road
  • l33p · 11 months ago
    No. But that's a feature I'm looking to implement soon enough.
  • l33p · 11 months ago
    A newer Linkr was uploaded today. I suggest you try it out, since it fixes some of the issues reported here.

    -Frank
  • McBirdie · 11 months ago
    I've just recently switched over to SEF--using the Joomla standard set up, not an additional component. Now, though, my Linkr button doesn't work when I'm trying to insert links into my articles. I was getting a 404 error until I reinstalled everything.

    Now it works fine for 'articles', but when I click to have it select files or menu items, it pops up the main page of my site in the Linkr box. Any ideas on how to fix this?
  • l33p · 11 months ago
    It looks like I made a type in the code. I'll upload a fix today or tomorrow.

    You can easily fix this manually by looking for the file "administrator / components / com_linkr / views / articles / view.html.php". At the end of the file (line 151) there is a line:

    //$doc->setBase( $c );

    which needs to be changed to

    $doc->setBase( $r );

    This will fix the problem.
  • McBirdie · 11 months ago
    Thank you so much! I really need to learn such magicks. :)
  • pvd · 11 months ago
    I've got a problem and I'm not sure where the culprit is. I have TinyMCE and SEF turned on, and I can use Linkr to add the links. Suppose I have a "History" page with this URL:

    http://www.cfcnews.net/who/history.html

    Then I use Linkr to add a link to a "Resources" page in another section. It appears to work. But, on the front-end, users see this link:

    http://www.cfcnews.net/who/history/75-resources...

    Unfortunately I wanted it to create THIS link:

    http://www.cfcnews.net/news/resources.html

    Also, I use Extended Menus to create side menus for specific sections. And something strange happens: When someone clicks on the wrong link (e.g. shown above with "75-resources.html"), a strange thing happens: the page loads the content from the Resources page, but it's shown with the same page template and sidebar as the History page from which it is linking!

    Is this a problem with Linkr, a problem with Extended Menus, or a problem with Joomla and SEF??? Help! I just want to link to other pages and actually GO to those other pages......
  • pvd · 11 months ago
    Additional comment... the SEF doesn't matter; the linked page content loads into the current page layout/sidebar even if I turn off the SEF. Still, is this a Joomla problem or a Linkr problem?
  • l33p · 11 months ago
    The SEF plugin (in your case Joomla SEF) is what decides how your URLs look.

    What happens is this: Linkr creates a regular link (with the category and article IDs) and that is saved with your article. Once you enable SEF URLs, every time an article is shown in your web site, the SEF plugin will look for article links (whether they were created by Linkr or not) and replace them with what it thinks should be the SEF URL.

    It's been noted, and the Joomla! developers are aware that for one article, different URLs are generated, depending on where you are inside the Web site. In fact, the J! people are working on a way to have 1 URL per article only.

    You mentioned that you would like your URLs to look a specific way (without any numbers i think). That's a feature that many site owners want. That's why Linkr doesn't interfere with the link-building. If you find an SEF plugin (other than the default) that you like, just install it and use it. None of your links created by linkr will be broken.

    Just post back here if you need anymore details. You can find some SEF plugins here: http://extensions.joomla.org/extensions/site-ma...
  • faizan · 11 months ago
    hi1
    i have a sections for events, news and opinions
    they all have a category called human rights
    now i what i want is that when a user click on the menu button called human rights he/she sees news ,opinions and events related to human rights.
    in short how can i link a menu item to different categories
  • l33p · 11 months ago
    Well.. Linkr can't really do that. My best guess is, instead of having 3 sections, you should have one section called human rights, and 3 categories for events, news, and opinions. That way, you can create a menu link to the human rights section.
  • Todd Gray · 10 months ago
    My add link / edit link buttons vanished in JCE Joomla Content Editor after installing Linkr component, plug-in, button. Is there a fix? I didn't see anything about this in FAQ.
  • l33p · 10 months ago
    So, all the other buttons are there except for that one? I don't know how that happened. Try closing the browser and logging in again.
  • Scorptech · 10 months ago
    Hi, I've started to use linkr and found it to be very good however, when you setup a customer html module and you setup a link from the module to an article, the article displays but the rest of the modules on the page don't show up. Example: I've gone into the "who's online" module to add it to the article, but the article doesn't show in the list as it is an article, not a menu item.

    So do you have any idea's why I cannot get the rest of the modules on the page (I don't have the modules on all the pages for specific reasons). This is happening on all the Linkr module links.

    If you want to view the website to see what is happening let me know.

    Regards

    Scorptech
  • l33p · 10 months ago
    Im not sure I understand what you mean by "module links". But I can tell you that, if your linked page doesn't look like you expected, it might be because you choose the wrong ItemID. For example, when you link an article, you can click on "configure link" and the last option will be to pick an "Itemid" (because you might have different menu links for one article).
  • cat · 10 months ago
    Ok this is silly, but I just want to make sure. I have an older version and I want to set up the new version. Do I just uninstall the old and reinstall? will my existing links break? what is the right procedure.
    Thanks,
    Cat
  • l33p · 10 months ago
    You should uninstall the component, the plugin and the button, and reinstall al three.

    Unless you're using Linkr 1, your links wont be broken

    -good luck!
  • Chelena · 10 months ago
    Hi

    I would like the "read more" to show BEFORE related articles, it does that with only plugin installed not after I installed the component, I want the related articles to show only if you view the full article.

    Thank you for a very usable component.
  • Chelena · 10 months ago
    Got it sorted out, I thought front-page means front-page component, also means here intro , thank you it works like a charm.
  • Shiller · 10 months ago
    How do I prevent an article to be shown in the RELATED ARTICLES?
  • l33p · 10 months ago
    If you're adding "related articles" manually, you can exclude individual articles by clicking on "Show all articles" and un-checking unwanted articles.

    For automatic "related articles", this isn't a possibility for the moment.
  • Finn · 10 months ago
    Scandinavian umlauts do not work when linking to another article. Can it be somehow fixed?
  • l33p · 10 months ago
    Do you mean you can't link to text like "ä" or you can't link to an article with a title like "ä"? In any case, an example would be helpful. I'm sure it can be fixed.
  • Morktral · 10 months ago
    Hello I´m using J1.5.9 with MyBlog (2.0.1 Build 282). I used your Linkr component, which is a great help to me, but now, on my Blog page I get this error:

    Fatal error: Call to a member function on a non-object in /var/www/virtual/dunklekreaturen.de/htdocs/plugins/content/linkr_content.php on line 98

    Any Idea about this?
    (My Website is http://www.dunklekreaturen.de, but I have disabled the plugin...)
  • l33p · 10 months ago
    I'll get a trial version of the component and try to figure out the problem. I'll let you know what happens
  • Morktral · 10 months ago
    Any news about this?
  • l33p · 10 months ago
    I tried it out, and I do get the same problem. It is coming from MyBlog. Here's the quick fix:

    Find the file "plugins / content / linkr_content.php"

    On line 42 (near the top) there should be a line that looks like: "$this->loadLanguage('plg_content_linkr_content', JPATH_ADMINISTRATOR);".

    Right after that, add the following lines:
    --------------------------------------------------------
    if (!$this->params || empty($this->params))
    {
    $db = & JFactory::getDBO();
    $db->setQuery(
    ' SELECT '. $db->nameQuote('params') .
    ' FROM #__plugins WHERE '. $db->nameQuote('element') .
    ' = '. $db->Quote('linkr_content'));
    $params = (string) $db->loadResult();
    $this->params = new JParameter($params);
    }
    --------------------------------------------------------

    If you can't edit that file for some reason, let me know.

    -Frank
  • Morktral · 10 months ago
    Thank you for your help. It´s working :) Great plugin, very helpful!
  • bela · 10 months ago
    I'm using Linkr extensively and find it very handy. Unfortunately, if in the link text there are "exotic" (non-english) characters, I get their 2-byte UTF representation that must always be fixed manually.
    Example:
    FÊkteåkÜzl�

    What am I doing wrong?
  • Pal · 10 months ago
    I have the same problem. I think it must be about the encoding of the plugin. I will post here if I figure it out.
  • l33p · 10 months ago
    Hi

    hmm.. Could one of you provide me with an example text that results in gibberish (eg FÊkteåkÜzl�)?
  • Pal · 10 months ago
    "Lue lisää" transforms to "Lue lisää »"
    "Ympäristönsuojelu maksaa, mutta ympäristön pilaaminen vasta kalliiksi käy." transforms to "Ympäristönsuojelu maksaa, mutta ympäristön pilaaminen vasta kalliiksi käy."

    These excamples are in Finnish.
  • l33p · 10 months ago
    Alright, I'll look into it. In the mean time, I would like to know what browser and what editor you're using.
  • Pal · 10 months ago
    MacOSX Leopard, Firefox 3, standard TinyMCE 2 editor. :) Thanks for your help. This extension is great and should be added to Joomla core.
  • bela · 10 months ago
    To complement:
    Also Firefox 3 (US English) , but on XP SP3 (also US)
    Editor is TinyMCE 2.0

    "AntennĂĄk ĂŠs hullĂĄmterjedĂŠs" instead of
    "Antennák és hullámterjedés"
    (in Hungarian.)

    Thanks for looking into this issue!
  • bela · 10 months ago
    A quick note: sometimes the Category dropdown list contains gibberish, some other time not. The Section dropdown and the final link text is invariably gibberish.
  • l33p · 10 months ago
    I would like you to try and re-install Linkr (just the component part). Your links wont be affected, but if you added new bookmakrs, you should export them from "Administrator > Components > Linkr > Import / Export".

    When you uninstall "Linkr" from "Components", re-install it from this link: http://codes.statsful.com/files/com.linkr.utf8t...

    Also, do you know what encoding your browsers use? If you have time to check, edit an article and open Linkr in a new window (by left-clicking the Linkr button).
    In Firefox, in the toolbar after "File" and "Edit", go to "View > Character Encoding". What does it say?

    Let me know how the new component works. Take your time.

    -Frank
  • l33p · 10 months ago
    Also, I'm noticing that these squares are getting smaller and smaller... if it gets too small, you can follow this thread here instead: http://linkr.disqus.com/linkr_support/
  • Guy · 10 months ago
    Hi! The website I am using this in is using utf8 encoding and my browser is in autodetect-mode.
  • l33p · 10 months ago
    Thanks for testing. I think I might have found where the problem is. I'm already on it.
  • zerochaos · 10 months ago
    how do I link an image in a custom module to a word in an article with linkr
  • l33p · 10 months ago
    Edit an article, open Linkr, and click on "Files". Then, browse to the file you want to link.

    If the folder is not shown, you'll need to log in as an Administrator and update the list of folders in "Administrator > Components > Linkr > Parameters > Global Configuration > Folders"
  • Brian Pence · 10 months ago
    in linkr_content.php, I believe a space before the title is missing. This causes validation failure when validated with the w3c.com html validator.

    '<div class="hasTip linkr-bm-b"title="'. $title .'">'.
    should be
    '<div class="hasTip linkr-bm-b" title="'. $title .'">'.
  • l33p · 10 months ago
    That's true. Since you've found it, you can add the space yourself. That will be fixed in the future.
  • macuser · 10 months ago
    Tried to install Component and got this error:



    * JInstaller::install: SQL Error. DB function failed with error number 2006
    MySQL server has gone away SQL=DROP TABLE IF EXISTS `jos_linkr_bookmarks`;
    SQL =

    DROP TABLE IF EXISTS `jos_linkr_bookmarks`;

    * Component Install: SQL error or missing or unreadable SQL file. DB function failed with error number 2006
    MySQL server has gone away SQL=DROP TABLE IF EXISTS `jos_linkr_bookmarks`;
    SQL =

    DROP TABLE IF EXISTS `jos_linkr_bookmarks`;

    Plugins installed fine. What is the problem and howdo I fix it?
    1.5.7 Joomla is installed.
  • l33p · 10 months ago
    Try re-installing it. Something happened on your server when you did it the first time. See: http://dev.mysql.com/doc/refman/5.0/en/gone-awa...
  • Sandra Both · 10 months ago
    I have an article that has a link to it in my menu. In a second article I would like to link to this first article and use the itemid that corresponds to the menu-item this first article is in. But when I click 'Configure link' in Linkr, the dropdownlist for 'Menu Link' does not show this menu-item. It only shows the name of the first article with '(no itemid)'.

    I debugged a little and found that the query built up in models\articles_article.php has the '_' character in 'com_content' escaped with a slash, like this:

    SELECT id,name,alias FROM #__menu WHERE link LIKE 'option=com\_content' AND link LIKE 'view=article' AND link LIKE 'id=1' ORDER BY id

    When I run the query without the slash it does return rows from jos_menu.

    Am I doing something wrong? Or is this a bug somehow?

    Joomla: 1.5.9
    Linkr:
    com.linkr_2.3.0b_2009-01-04
    plg.button_2.3.0_2008-12-22
    plg.linkr_content_2.3.0_2008-12-22

    Thanks for any help!
  • l33p · 10 months ago
    It looks like you've stumbled onto a bug! This actually affects many other things, but if you haven't got a quick fix for this, try this:

    Go back to that file (admin/.../models/articles_article.php) and look for line 160 (3/4th of the way down). You should see a comment "// Get Itemids". Change line 163 from "$this->_Q('option=com_content', true)" to "$this->_db->Quote('option=com_content')"

    That should do the trick.
  • stevetsi · 10 months ago
    I tried the fix above, but I also still get '(no itemid)' after the article name (when configuring the link).

    Any suggestions?
  • l33p · 10 months ago
    There's always going to be an option with "no itemid". That is the default option. Sometimes, however, you might create a menu-link to an article, for which you're going to have specific conditions (e.g. modules, article title, etc.). In those cases, you'll be able to choose what version of the article you want to link to: either the default version or the "menu-link" version.

    For more information, see the Joomla! documentation: http://docs.joomla.org/Adding_a_menu_item_which...
  • stevetsi · 10 months ago
    By the way, the solution to the Item ID issue is MUCH more complicated than it seems at first glance.

    In a large website with mulitple templates and many modules assigned to multiple different menu items and positions, it becomes critical to link to the exact URL of the generate page which contains all these elements. In that situation, you really only have ONE Joomla url, mapped to an SEF URL which provides that content.

    I use sh404sef to manage my urls. The table jos_redirections has a list of all cached Joomla SEF URLs. What I did (in testing) was to query the 'newurl' field for the option, view, id, etc. and retrieve the EXACT Joomla url which produces the *complete* page view with all module positions and correct template assigned.

    This results in a even more powerful tool which is actually able to find a Joomla page as it appears to the end user, which is really what we expect to get of a tool like Linkr, anyway.
  • l33p · 10 months ago
    That would make the links more accurate in your case. But Linkr does not do that because different users might use different SEF plugins. Also, by using the "sf404sef" specific URLs, it makes it harder to make changes in the future. Say for example, you make an update to your Site which affects the way the URLs are built, then are your links become outdated.

    By building the links Joomla!'s way, sf404sef will always be able to recognize the URLs and direct the user to the right page.

    I have to admit though, in a large Web Site, the URLs might never change, and it might just be simpler to link to the sf404sef URLs...

    I'll see if I can think of something. Just post back here if you have any other suggestions.
  • jan · 10 months ago
    I cannot install the third file (com.linkr), i get the message "unable to write entry". I probably did something wrong, but don't know what. Can i install these files by hand (ftp) and in what places do i have to put them? Perhaps jou have an answer for me,
    thanks very much! Jan
  • l33p · 10 months ago
    Hi Jan.

    I'll first suggest that you try to install it again.

    To install it manually, first unzip "com.linkr". Upload the contents of "backend" to the a new folder called "administrator / components / com_linkr" on your site. In that folder, there will be a file called "en-GB.com_linkr.ini". Move that file to "administrator / language / en-GB". Then, upload the contents of "frontend" to a new folder in the root of your site: "components / com_linkr".

    Once that is done, there is one file left called "linkr.xml". That file goes in "administrator / components / com_linkr".

    From here, you should access your Joomla! database. Find the file "com.linkr / backend / install.sql". Either use that directly to install the tables, or open the file with a text editor, copy the contents and "execute the query" (in phpMyAdmin: either "Run SQL query" or "Import").

    Finally, you'll have to add a record to the "jos_components" table ("jos_" will be your database prefix). Access that table and create a new record (in phpMyAdmin: select the table from the left-side navigation and select the "Insert" tab at the top).

    Enter the following information (without any quotes):
    id: (leave blank)
    name: "Linkr"
    link: "option=com_linkr"
    menuid: (leave blank)
    parent: (leave blank)
    admin_menu_link: "option=com_linkr"
    admin_menu_alt: "Linkr"
    option: "com_linkr"
    ordering: (leave blank)
    admin_menu_img: "components/com_linkr/assets/linkr.gif"
    iscore: "0"
    params: (leave blank)
    enabled: "1"

    let me know how this goes
  • Mike · 10 months ago
    I think this is an excellent component, and it's saved me a lot of time. 2 Questions:

    When using the Related Articles I need to turn off the CSS, or else each article has 2 bullets in front of each listing. I'm using J 1.58 with ja_purity, JCE and sh404sef. I'm unable to find what I need to change so I can use the CSS version of this tool (related articles). What do I need to change to eliminate that first bullet?

    2nd - on the bookmarks tool, how do I get them to align to the left instead of on the right?

    Thanks for the excellent extension,

    Mike
  • l33p · 10 months ago
    Here's how to fix the two problems:

    1- Login to the administration of your Site
    2- Go to "Extensions > Plugin Manager" and look for "Content - Linkr"
    3- In the plugin parameters, find "Default CSS" (halfway through) and select "No"
    4- Find it again (last parameter before "Advanced Parameters") and do the same thing.

    You should be able to use your own CSS styles
  • Anthony McLin · 10 months ago
    When the linkr plugin is enabled, it overrides Joomla's settings for php error display, AS WELL as any options set in a php.ini file. This should be considered as a bug because it causes problems in development environments when you want to display bugs.
  • l33p · 10 months ago
    There is a way to disable that. For debugging purposes, you can login to the administration of your Site and go to "Extensions > Plugin Manager" to find "Content - Linkr". There, under "Advanced Parameters", change "Suppress PHP notices" from "yes" to "no"
  • ottogiugno · 10 months ago
    I'm trying to use linkr on my Photo Gallery page.
    In the preview it works, but as I publish it it doesn't.
    The h**p://www.site*it/index.php/le-foto/name-of-the-gallery doesn't load the page, whilt in the preview it does.
    What should I do?
  • l33p · 10 months ago
    Do you mean the "related links"? I'm not sure if it'll work with your photo gallery. What is the name of your gallery extension?
  • Dude · 10 months ago
    Hi! I am the one who needs to link using Finnish language with umlauts like ä. ö and å (Ä, Ö, Å). you posted this UTF8 test file to test. I installed it and noticed that it works partially: the link text now gets umlauts right. However, there is a weird "" line before listing the found articles. And still the prelook of the article doesn't show umlauts right.

    Thanks for your great plugin and support!
  • l33p · 10 months ago
    I'm about to release another version. Try it out: http://codes.statsful.com/files/com.linkr_2.3.1.... If it works well, you can download the plugins here: http://codes.statsful.com/files/plg.linkr_butto... and here: http://codes.statsful.com/files/plg.linkr_conte...
  • Pal · 10 months ago
    Thanks pal. I tried to install this one but it said that the installation XML file is not there or it is wrong.
  • bela · 9 months ago
    Hi,

    I experienced the same. The most important is that the links are now perfect, as are the contents of the list boxes as well. I also noticed the "weird" lines in front of the list boxes and the glitch with the preview, but the component is totally usable now, as my No. 1. extension to Joomla :-) Many thanks for having this corrected!
  • Moke · 10 months ago
    Hey i'm using the related articles feature , i get a links of articles but before the links i'm getting a "<" and under the links i'm getting "r}"

    can anyone help me
    I've typed in my editor the following

    {linkr:related;keywords:article;exclude:64,51,50,48,59,47,63,65,66,67,68,70,49,60,62;limit:5;title:More Articles}

    it look like this

    <
    More Articles
    -article 1
    -article 2
    -article 3
    -article 4
    r}
  • Moke · 10 months ago
    when i checked out the source of my page i saw this:

    <<div class="linkr-rl"> <div class="linkr-rl-t">More Articles</div>
    in the linkr_content.php i've changed the following

    $content = '<div class="linkr-rl">

    to
    $content = 'div class="linkr-rl">
  • Moke · 10 months ago
    but the r} at the bottom isn't gone

    any ideas??
  • l33p · 10 months ago
    Are you using other "content" plugins?
  • moke · 10 months ago
    yes, i'm using morfeoshow for my galleries and euhmm also Joomlacomment plugin

    i don't think that's the reason.. but euhm.. i don't know
  • l33p · 9 months ago
    I really have no clue. It's the first time I hear this.

    I'll post back here if I find anything
  • Marek Trusik · 10 months ago
    Hi,

    I have a little prob. I installed all the three packages and enabled them.
    But when I select the text and click on the linkr button, it doesnt appears properly.
    Its possible to pick a section, but thats all. The other buttons like tools and also search dont work.
    screenshot: http://www.gjh.sk/marektrusik/screen.jpg
  • l33p · 10 months ago
    Which browser are you using?
  • Marek Trusik · 9 months ago
    Mozilla Firefox 3.0.6.
    But I suppose it's not problem of browser. I also tried IE and it's the same.
  • l33p · 9 months ago
    No, that's a bug with Linkr. But that shouldn't happen with the latest version. Make sure you get it from http://joomlacode.org/gf/project/linkr2/frs/.
  • pal · 10 months ago
    Okay, I installed the new versions (2.3.1) you linked to earlier. It seems that Linkr cannot connect the database while using the new version. I try to make seach from articles but nothing happens. It just keeps showing two different animated circles at the same time.

    However, I noticed that there are many new and great features coming. Thank you for your support and great developping plugin, man!
  • pal · 10 months ago
    This search problem may be due the installation because Joomla didn't accept the XML file. Thus, I made the installation updating the files by hand. I should try to run the sql script in phpmyadmin and try again. I think you have done some changes to the relations.
  • pal · 10 months ago
    Now I'm flooding. I ran the sql script and it still does the same thing.I stay with the older version until you have finished 2.3.1.
  • l33p · 9 months ago
    Thanks. but I don't seem to have any problems installing it though. Did you try uninstalling the earlier version first?
  • Cathy · 10 months ago
    I totally love Linkr. It does exactly what I need it to do. One thing I can't figure out, though. When I add the related articles block, the articles show up in a very random order. Is there any way of sorting them?

    Thanks for a great product.
  • l33p · 9 months ago
    Right now there isn't. The aim was that all related articles would have an equal chance of getting listed. You're not the first to come with this question though.

    Are you voting to add this feature?
  • metawake · 9 months ago
    I have category names in Russian.
    But when I open Linkr with Linkr buttom,
    category list shows Russian category names as gibberish (Категория1) .
    Looks like encoding problem with Linkr
    Database is UTF-general-ci, page is in UTF-8 format.
    I am using Joomla 1.5.9 and Firefox.
  • l33p · 9 months ago
    Yes, that's a problem with Linkr. The newer version will be posted at the top of this thread before it's uploaded to JoomlaCode.org. Make sure to check it out.
  • Caleb · 9 months ago
    Hello, having some weird breadcrumbs issues. Articles that i linked the other day when i initially installed linkr are showing up in the breadcrumbs of the page see here: http://www.okacco.com/newsite/Staff/gayle-ward.... . However, today when im trying to link my articles, i looks like this: http://www.okacco.com/newsite/Staff/jim-dougher... . Breadcrumbs should say Home>Contact Us>Persons Name but today all the ones i link just show Home>Contact Us

    Anyone seen this before?
  • l33p · 9 months ago
    Hi,

    when you're linking articles, you sometimes need to pay attention to the ItemID. Before clicking on "get link", click on "configure link" an find the "ItemID" attribute. If there is no "ItemID" attribute, that means the article has no ItemID. Else, a list of possible ItemIDs to choose from will show.
  • kadaffy · 9 months ago
    hello,
    i really enjoy you component, but please, where is the define the "bm_def_css" or whit class in my css themplate works,,,,

    Tks!
  • l33p · 9 months ago
    I'm not sure I understood what you meant.. to disable the default CSS styles, go to "Administrator » Extensions » Plugin Manager » Content - Linkr" and switch the last parameter in "Plugin Parameters" to "No"
  • kadaffy · 9 months ago
    The basic idea is to customize the css.
    For example :
    if I use with css, the custom icon for bookmark have a hover. With no css, the custom icon for bookmark are position on vertical….
    If I want to remove some of that stuff with somthing for my like, where can I find the css file….?
  • l33p · 9 months ago
    There's no css file. but you can find the styles in "plugins / content / linkr_content.php" on line 232 (1/3 of the way down the page).

    Let me know if you can't find it.
  • kadaffy · 9 months ago
    exactly what I was looking for. Know the show perfectly as I want them.
    Tks very much for help.

    bm_def_css is not exactly there, but I’ve manage to find it quick.

    Tks again.
  • kadaffy · 9 months ago
    by the way, sorry for my very,very poor english....
  • l33p · 9 months ago
    its all good. good luck with your projects
  • l33p · 9 months ago
  • Barry Mavin · 9 months ago
    Hi Francis, thanks for a very useful component.

    One minor thing i have noticed is that when searching for related articles, if the user does not have access to the section or category that the article belongs too, then it is still being included in the "Related Articles". It would be nice to have these articles excluded from the list.
  • Barry Mavin · 9 months ago
    Hmm can't seem to add any more comments.
  • Barry Mavin · 9 months ago
    Change the query in linkr_content.php to this:

    LEFT JOIN #__categories AS c ON c.id = a.catid
    LEFT JOIN #__sections AS b ON b.id = a.sectionid
    WHERE a.state = 1 AND '. (dollar)where . 'AND c.access <= "' . (dollar)my->gid . '" AND b.access <= "'. (dollar)my->gid .'"' . ' '.
  • Barry Mavin · 9 months ago
    That will restrict related links by access level.

    Again, thanks for this component.
  • Barry Mavin · 9 months ago
    Hi francis,

    I have made changes to the code to handle access control of related links. The related links displayed can be restricted by:

    1. access mode of user
    2. exclude a list of sections
    3. exclude a list of categories

    The files i changed are:

    en-GB.plg_content_linkr_content.ini
    linkr_content.xml
    linkr_content.php

    Let me know if you want these changes and i will zip them up and forward to you.
  • l33p · 9 months ago
    Hi Barry

    Yes, I think these will benefit everybody. Did you make these changes to Linkr 2.3.0? or to the version I posted here?

    You can send the changes to francisamankrah - gmail - com
  • l33p · 9 months ago
    Barry,

    I will include the changes you mentioned to Linkr. What did you change in the language file though?
  • Arild K · 9 months ago
    I have just added the wonderful Wordpress integration to my joomla 1.5.9 website --
    guess what -- your wonderfull LINKR also get the wordpress articles!

    I have a dream:
    Could you please "fix" this wonderfull app so I also can get Links to my gallery2 photo allbums?
  • l33p · 9 months ago
    Hi. Im glad it works for your wordpress extension. I was planning creating a plugin for RSGallery2 someday, but what gallery are you talking about?
  • fjellfinn · 8 months ago
    I am talking about the best photo gallery in the world :-)
    --- the Gallery2:

    http://gallery.menalto.com/

    When you release the plugin for Gallery2 -- your Linkr will be the best component for Joomla :-)
    Please do it ;-)
  • blahher · 9 months ago
    Hi! Very good component! However I'm having problems with the latest version (2.3.1) when trying to link articles. When I click on a section I get an error: "Database Error: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause SQL=SELECT s.id AS id, s.title AS title, s.description AS description, COUNT(c.id) AS categories FROM jos_sections AS s LEFT JOIN jos_categories AS c ON c.section = s.id WHERE s.published = 1 AND c.published = 1 AND s.id = 17"

    Previous version is working ok.
  • l33p · 9 months ago
    Thanks for letting me know. I will try to fix it in my free time, sometime this weekend.
  • blahher · 9 months ago
    Hi! This 2.3.1b version seems to work alright. Thank you!
  • Tsiobanis · 9 months ago
    Hi
    I have the same problem. Also i use Greek characters at my site (UTF-8) and the plugin does not work
  • Robert · 9 months ago
    I'm a Linkr newbie. Got it installed fine and linked text directly to a pdf file to open in a new window. Question is how to I not display the pdf icon? In the link dialog box, I select "no" for the icon, but it still shows up.
  • l33p · 9 months ago
    If the icon is already there, and you create a link using Linkr, the icon will not disapear. You'll have to delete it using your editor.
  • Robert · 9 months ago
    When I go into the HTML editor, I only see the text and image source and the PDF file I'm linking too, but don't see where I can detele the little icon. Where else do I look? The HTML is below:

    Current Issue



    <div style="text-align: center"><img src="images/stories/feb_09.jpg" border="0" alt="Feb 2009" title="Feb 2009 Volunteer Reporter" /></div>

     

  • l33p · 9 months ago
    Usually, you can just select the icon and click delete on your keyboard. If you're not using an editor (and you edit the source code directly), just select the code for the icon, and delete it.
  • Tovy · 9 months ago
    Thank for a nice application. It look very useful, but I have a problem with it.
    I use joomla 1.5.7
    After normal installation of the component, plugin and button, i can see button in editor, I succsessful added cod of related links to the bottom of my article, but when I load this article after editing - no any related links there.
    Can you help me, please?
  • l33p · 9 months ago
    Make sure to activate the plugin called "Content - Linkr". Also, what other content plugins are you using? I know the "CrossContent" plugin acts in a way that disables Linkr...
  • Tovy · 9 months ago
    I added this code to my article
    When I try to open it- no any links appeared and i get this error massage
    Notice: Undefined variable: html in /home/d/doc4ur/public_html/templates/colourful-world/html/pagination.php on line 150

    Notice: Undefined variable: list in /home/d/doc4ur/public_html/templates/colourful-world/html/pagination.php on line 151
  • Tovy · 9 months ago
    Sorry- my last post is not relevant
    Here is right: I have added cod to article - plagin is enable, no any additional suspected plagin for content - it is standart set of joomla
    {linkr:related;keywords:%D0%BE%D0%BF%D1%83%D1%85%D0%BE%D0%BB%D1%8C;exclude:64,121,8;limit:5;title:Related%20Articles}
    After saving of article-I have message:

    Notice: Undefined property: id in /home/d/doc4ur/public_html/plugins/content/linkr_content.php on line 765

    Notice: Undefined property: id in /home/d/doc4ur/public_html/plugins/content/linkr_content.php on line 923

    No any generated links in opened article
    Do you have idea what to solve a problem?
    Thanks a lot
  • l33p · 9 months ago
    Im not sure how that can happen. Log in to your site admin, browse to "Components » Linkr" and find the "Parameters" button in the top-right corner. Switch "Debug" to "Yes".

    Put the Linkr anchor back in the article and browse back to that article. There should be a log file in "you site / logs / linkr.php". Maybe that will shed some light on this problem
  • Zorana · 9 months ago
    HELP!
    After installing Linkr my article manager crashed.Everything else work ,but I can't see or edit articles.Do you have any suggestions?
    I don't see anyone had that problem.
  • l33p · 9 months ago
    Hi. Which version of Joomla! and Linkr are you using?
  • Claude · 9 months ago
    Is there any way to have linker display its related article links in other areas than the main article area? For example can it be configured such that it can post to the RIGHT or to the LEFT or to the BOTTOM - in containers which reside at these locations?
  • l33p · 9 months ago
    Currently, it's not possible to have the related links show outside the article.
  • Claude · 9 months ago
    I am having trouble integrating Linkr into MyBlog. When I publish content Linkr in Myblog - it creates the following error

    Fatal error: Call to a member function get() on a non-object in /home/gmoodi/public_html/joomla/plugins/content/linkr_content.php on line 98

    Any help would be appreciated
  • l33p · 9 months ago
    Hi Claude

    This has something to do with the way MyBlog handles plugins. If you upgrade to Linkr 2.3.1, you should not have that problem anymore.
  • Patrick · 9 months ago
    Is there a way to turn off linkr for static uncategorized pages? I see you can exclude sections but you cannot exclude a static page or pages. Thanks in Advance.
  • Patrick · 9 months ago
    Nevermind... found it in your FAQs....but do have one question which I will submit a new post.
  • Patrick · 9 months ago
    I noticed that linkr, even though it is set to be excluded from an article (which works) is actually being pulled into a contact us form that was created using Chronoforms which is being loaded within the article with the chronoforms own plugin tag code. The linkr, despite being disabled for this article is now showing inside the Contact us form. Any ideas of what is bypassing the no linkr setting and loading it "inside" the chronoforms form?
  • l33p · 9 months ago
    I did some digging, and I found that chronoforms will include content plugins itself. You can disable that for your specific form by logging in to admin of your site, and browsing to "Components » Chrono Forms » Forms Management" and selecting your form. In the first tab ("General"), switch the last parameter ("Enable mambots?") to "no".

    That should do the trick
  • blahher · 8 months ago
    Hi!

    I would like to request two features:
    - ability to set to search in title only
    - to change the listing method of categories, sections, articles (alphabetical, id, date, ...)

    Thank you.
  • l33p · 8 months ago
    thx for the suggestions.
  • JWatLU · 8 months ago
    Hey, I'm having a problem using Linkr & JCal Pro 1.5. Linkr works fine throughout my site, but I get an error on my calendar page. This is the error/warning:

    Warning: Attempt to assign property of non-object in /home/pabclcs/public_html/joomla15/plugins/content/linkr_content.php on line 213

    Any ideas as to how to fix this? I'm assuming the problem is that the calendar component is trying to pull up the plugin, but I don't know how to prevent that.

    Thanks!
  • l33p · 8 months ago
    This is coming from JCal Pro. I can't find out how to prevent this since this is a commercial component, but here's the quick fix:

    You'll have to find the linkr file in "your site / plugins / content / linkr_content.php" and open it for editing. Find the line "function onPrepareContent( &$article, &$params )" on line 205 (about a fifth of the way down the page).

    You should see this:
    ------------------------------------------------
    // Debugging
    Linkr::log('---Linkr .......

    // Set some stuff
    $this->findRouter();
    $this->article = & $article;
    ------------------------------------------------

    After that last line, add this:
    ------------------------------------------------
    $this->article = is_object($this->article) ? $this->article : new JObject();
    ------------------------------------------------

    So now the code looks like this:
    ------------------------------------------------
    // Debugging
    Linkr::log('---Linkr .......

    // Set some stuff
    $this->findRouter();
    $this->article = & $article;
    $this->article = is_object($this->article) ? $this->article : new JObject();
    ------------------------------------------------

    This should fix the warning messages you get.
  • JWatLU · 8 months ago
    Thanks! You are right. It is completely a JCal issue, and it was corrected. I just had to upgrade to the latest build. I appreciate your help.
  • JWatLU · 8 months ago
    How do I go about adding text immediately before the linkr buttons? I would like it to say something like "Share this:" and then show the buttons to the right on the same line. Where do I need to insert code and what code to I insert in order to achieve this? Thanks!
  • l33p · 8 months ago
    There's currently no option for that. Maybe that'll be a feature in a newer version.
  • JWatLU · 8 months ago
    That would be an awesome addition to this useful tool. Thanks!
  • Bert · 8 months ago
    I installed Linkr on a Joomla 1.5.9 site. When I click the Linkr button and try to link to an article, I get a JSON Error 406.

    I tried first on my local xampp site with no problems.
    What is wrong?

    Thanks
  • l33p · 8 months ago
    Are you using Linkr 2.3.1? Also, I'll assume that your local install has the Joomla! sample data. Are you getting that error on your site using sample data as well?
  • Bert · 8 months ago
    Yes, it is Linkr 2.3.1 I am using.
    And yes, my local install has Joomla sample data, my production site hasn't.

    Can I solve this, without the sample data on my site?
  • l33p · 8 months ago
    Probably. I'll have to do some testing on my side.

    Just two more questions: Do you use non-english characters on your site? and, do you get this error directly in Linkr, or in a pop-up, or as a browser error msg, etc?
  • Bert · 8 months ago
    There could be some non-english characters, it is a dutch site I am working on.

    While editing an article, I click the Linkr button. In its popup window I select 'articles'. That is the moment that I get an browser error message JSON Error 406.
  • vladges · 8 months ago
    Bert,

    I had the same problem. It is because of your hosting server, which thinks someone is trying an sql injection on you site. This is because the Linkr ajax makes a request which contains "select ... from ... where" in the URL. I have just fixed this on my site, but have not tested it sufficient enough to say it will always work, but here is the fix. The idea is to hide from the server that you are asking for an SQL query, so that it will not block the request. I have done this simply by replacing the "WHERE" word in the query with something else (in this case "_WH_"). Then, in the php file, we need to replace it back so the the SQL query will function and return the correct results.

    You have to hack 3 linkr files. Most likely, a new patch will be issued for this, but for now this will work.

    Firstly, install the 2.3.1c pach for linkr. This adds an urlencode js function that makes it easier to hack. Then, edit those files:

    1.components\com_linkr\assets\js\helper.js - find the urlencode function and add "str=str.replace('WHERE','_WH_');" just after "str=str.replace('%20','+');"

    2.components\com_linkr\assets\js\helper-UCP.js - find the urlencode function and add "str = str.replace('WHERE', '_WH_');" on the next line after "str = str.replace('%20', '+');" (this is line 292)

    3.administrator\components\com_linkr\models\articles_x.php - add this code "$q = JString::str_ireplace('_WH_', 'WHERE', $q);" before each line that replaces the "_PREFIX_" parameter (lines 48 and 72, should look like this: "$q = JString::str_ireplace('_PREFIX_', '#__', $q);")

    I have also uploaded a zip file with the 3 modified files (after 2.3.1c path has been applied). You can find it at http://www.simpatic.ro/files/linkr_406_patch.zip (just unzip in your application root folder).

    That should work, it does on my site. Hope this helps.
  • l33p · 8 months ago
    Hi vladges,

    thanks for finding the bug, squashing it and posting a fix! I'll make sure to include this in the next release.

    I feel I owe you some credits for this. If you have a Web site, go ahead and email it to me.

    @ Bert:

    This might explain the trouble you are having. Expect a patch by the end of this week.
  • bobwhosmiles · 8 months ago
    I tried making the amendments to the code as suggested but it didn't seem to work.

    Assuming I'd made some kind of mistake, I downloaded vladges zip file, renamed the three broken files, unzipped vladges new files to the relevant directories but still have the same error message.

    I cleared the cache in Joomla, and then cleared the browser cache. Still the same problem so I changed browser. Same problem.

    Any ideas why it might still be a problem?
  • l33p · 8 months ago
    vladges was probably right about the bug, but maybe the patch doesn't fix it completely.

    A new version of Linkr is just about come out, so either that will have it fixed or another patch will.
  • Rob · 8 months ago
    I have only one thing to say... GREAT TOOL !!!
    This is what I was looking for. I Installed on Joomla 1.5.9 and it works like it should work.

    But one question, why didn't you put everything in one package? This wonderfull tool consists of 3 files. Isn't it possible to put this in one installer?

    Great job.
  • blahher · 8 months ago
    Hi!

    I receive an error message when I use some of the accentuated letters (for example á, é, í) in the serach:
    "Database Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '_ OR LOWER(a.alias) LIKE'%_"
    Some letters are working although (like ő, ű).
  • l33p · 8 months ago
    Hi

    Thanks for reporting this. I did some digging, and it turns out this is a Linkr bug. It has a simple fix, so I will probably try and upload a patch this week.
  • l33p · 8 months ago
    Here's a patch you can install through the Joomla! installer. I'll will overwrite the troubled files.

    http://joomlacode.org/gf/download/frsrelease/97...
  • blahher · 8 months ago
    Thank you, it seems working alright now. :)
  • NG · 8 months ago
    Hi there,

    I love this modul, nice job. Unfortunately i have to use the Internet Explorer. So i have the Problem with the Link on the Top off the article.
    The FAQ´s says
    "How come my links are always inserted at the top?
    This happens in Internet Explorer if you click in an empty space before inserting the link. When linking anything, make sure not to click any empty spaces in the page."

    But how can i not click an empty space? If i mark a Word an Try to Link it, i have to insert a text. If i insert the text, i unmark the selected word and the link is inserted at the top.

    Please help me i m getting crazy about this.
  • l33p · 8 months ago
    This is really unfortunate for Internet Explorer users. But this isn't a Linkr issue. In fact, if you select an image and try to replace it with another image using the "Image" button, the same problem can happen.

    I would suggest you enter the text in your article first, so that you don't have to edit it in Linkr.

    While using the "Image" button or "Linkr" button, the selected text will be unselected as soon as you click an empty space, or even an input box.

    Sorry for the inconvenience.
  • NG · 8 months ago
    Thx for the fast reply. It seems a have to live with it. Damn IE ^^
  • Uponnothing · 8 months ago
    Just to say thanks for a really great extension, it added the bookmark features I really wanted with absolutely no hassle.

    Fantastic work and much appreciated.
  • Kees Lina · 8 months ago
    Hello, when i select a text and i want to turn it into link , i press the linkr button. Then i find my article i want to link to ,and press Get link.
    The Link Text which i can edit under "configure link" automaticly contains the whole text for the article. (so my link text is like 500 words long). Is there any mod how i can change this auto-fill-in link text . ?

    Sorry for my bad english, i hope you can understand my problem!



    Greetings,

    Kees Lina, Netherlands
  • l33p · 8 months ago
    Hey kees,

    What versions of Linkr and Joomla are you running? And do you get this problem when editing an article or something else? And your english is not that bad..
  • David Boggitt · 8 months ago
    I have this same problem too. I'm running Joomla 1.5.10 and Linkr 2.3.2 (just installed it). I'm also getting another problem, when I'm trying to link to an article, I can't select uncategorised articles as only the sections come up in the list!

    Thanks for any help you can offer,

    Dave.

    p.s. Linking to a MENU is just fine!
  • levans · 8 months ago
    I am getting a 'bad request' error when I try to upload a file via Linkr.

    Any ideas?

    Thanks,
    levans
  • l33p · 8 months ago
    The problem could be coming from different places.

    What you should do when you have time is browse to the Linkr page in the administrator part of your site, and click on the "parameters" button. Set debug to "yes", and try uploading a file again. If you still get that error, Linkr should give more detailed information about it in the log file in "YOUR SITE / logs / linkr.php".
  • Sebastian · 8 months ago
    Still having problems with SEF URLs.
    Just installed the plugin from scratch, created the link and getting a 500 error when SEF are turned on.
    Any suggestions? Running the latest version with patch 2.3.1c installed.
  • l33p · 8 months ago
    Are you sure the error is coming from Linkr? Try disabling Linkr to see if it has any effect.
  • Danijel · 8 months ago
    Hello,
    how can i change text link's color?
    i've tryed everywhere (in my template CSS and in 2 CSS files that comes with Linkr), no succes.
    any hints?

    Thanks
  • l33p · 8 months ago
    The links should be the same color as the other links on your site. If you're trying to change the link color only for the Linkr bookmarks, then you'll need to specify that in your CSS.

    For an example of how the bookmarks are displayed in HTML, see the documentation in your site admin in "Administration » Components » Linkr » Documentation » Go to: Bookmarking".
  • Bob · 8 months ago
    Anyone still got the JSON 406 error even after using Vladges' patched files (see above)?
  • panducho · 8 months ago
    when i go to administrator-components-linkr it doesn't appear the parameters option and if i click in linkr option a 404 error window appear and shows the message "component not found"... what happened??? and also if i'm in an article and i click in the linkr button the same window appear inside the linkr window and i can´'t edit mi link... can u help me please... thanks
  • l33p · 8 months ago
    You should try re-installing Linkr. If you installed it manually, use the Joomla! installer next time
  • Son · 8 months ago
    Optional module to show the 'related articles/links' in a module instead of a content plugin. So these than can be shown outside of the 'content' area and in a module position instead.
  • l33p · 8 months ago
    noted. I'll see what I can do.
  • l33p · 8 months ago
    Linkr 2.3.2 is available. Try it out.
  • fjellfinn · 8 months ago
    Fantastic plugin! The new 2.3.2 is almost perfect, but still - missing something very important!

    Could you fix a Gallery2 "plugin" for Linkr for me?
  • l33p · 8 months ago
    loll i'll be looking into it soon enough..
  • skibbbi · 8 months ago
    Linkr still don't support UTF-8 properly :(
    I used Polish UTF, Joomla 1.5.10
  • l33p · 8 months ago
    tell me, if you use the image button to add an image, and you use polish characters for the "Image Description" or the "Image Title", do they appear properly in your editor and in your article?
  • MikeC · 8 months ago
    Great component and plugin. I'm using the bookmarks now and noticed the following error when validating css
    34 div.linkr-bm div.linkr-bm-b Value Error : border transparant is not a color value : 1px solid transparant

    It looks like a spelling error. Can you please point me to the correct file so I can make the change on my site?

    I also noticed some xhtml issues, but I'll look at this separately.

    Thanks for the great work on this.

    Thanks,

    Mike
  • l33p · 8 months ago
    Mike,

    The styles aren't included in any CSS file. To change them, you'll need to find the plugin file in "your site / plugins / content / linkr_content.php".

    Find the line (line 395 in version 2.3.2, 1/3 of the way down the page) that starts with:
    ------------------------------------------
    // Default styles
    if ($this->params->get('bm_def_css', 1))
    ------------------------------------------

    And you'll find the style declaration.
  • Mike · 8 months ago
    Thank you. I went to that file and changed the "transparant" to "transparent" and this fixed it.

    Mike
  • bobwhosmiles · 8 months ago
    Hi F,

    Cheers for the new version. It fixes the JSON 406 error I was getting. Unfortunately I've now got another SQL related problem:

    If I know the name of an article and search for it, everything works fine. If on the other hand, I choose a Section from the drop-down, the list of Sections is correctly populated, but as soon as I select a Section, I get the following error:

    Database Error: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause SQL=SELECT c.id, c.title, c.description, c.section, COUNT(a.id) AS articles, CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(":", c.id, c.alias) ELSE c.id END AS slug FROM jos_categories AS c LEFT JOIN jos_content AS a ON a.catid = c.id WHERE c.published = 1 AND a.state = 1 AND c.id = 41

    Any idea what might be causing this?

    Oh...I should add, I'm using v 2.3.2

    Cheers
  • l33p · 8 months ago
    Hi bobwhosmiles..

    I didn't have time to check this myself, but someone came to me with a fix that seems to work, so I made it into a patch: http://codes.statsful.com/files/com.linkr.patch...

    Download that file and install it through the Joomla! installer. Let me know how it works out.

    -Franksmilesback :)
  • bobwhosmiles · 8 months ago
    Cheers Francis!

    Now I'm really smiling. This fixes it completely - what a fantastic extension!

    Thanks for the quick support and glad this has probably helped others out too.

    Bob
  • arkadiy_a · 8 months ago
    Founded a bug like previous bug with russian encoding.
    Using Joomla 1.5.6 linkr 2.3.2 database utf-8
    Sympthoms: when adding {linkr:related;keywords:..........} in front-end i see article titles like ???? ?? ??????? ????
    Looks like problem with utf-8 dialing with from cyrilllic(russian) symbols.

    Temp. solution found:

    In file File linkr_content.php commenting out string: $articleTitle = $this->HTMLEncode($this->UTF8Decode($a->title));
    Adding in this place $articleTitle = $a->title;

    if u (developers) need more debug info or even access to my ftp, & admin panel- contact me at erm.firm@gmail[dot]com
  • l33p · 8 months ago
    Thanks for the fix. Did you have this problem with Linkr 2.3.1 too (if you
    were using it) ?

    -Frank
  • doug Steinberg · 8 months ago
    This is a great component! We are using a third party component for content (joomsuite resources content) so our articles do not appear under default joomla cotent section. Is there a way to get linker to point to and see content other than the core content?
  • l33p · 8 months ago
    The only way to do that would be to extend Linkr with another plugin using the Linkr API. I don't think there are any plugins yet to integrate with joomsuite resources.. :(

    I guess the short answer is no (or not yet).
  • RIDVAN · 8 months ago
    Hi there,
    first...thanks for the great extension...
    but i have some problems about ajax i think...

    in the article editor page, when i click the linkr button, the popup frame opens but the ajax doesnt work...
    Sample :
    "Select a contact"
    and the ajax installing image always turning turning and turning but there isnt any content on popup frame (just the links of linkr extension)

    i installed the latest package of the component and others,
    i reinstalled the package for being sure,
    i activated the plugins...

    so what can we do for this ?
    thanks
    Ridvan
  • l33p · 8 months ago
    Hi

    which browser are you using?

    also, do the other links work e.g. "Articles", "Files", etc?
  • RIDVAN BAL · 7 months ago
    hi again,
    i tried with several browsers as firefox,ie6-7-8 ,opera... nothing at all, its not working in my panel.
    I think there's a problem about lightbox or ajax script in there, all links didnt work in lightbox...
    i reinstalled it with latest patches, still not working :(

    im using joomla 1.5.9,
    php5 installed in linux server,
    my folder rights all writeble 755,

    what can i do ?
    is there any alternative plugin as yours for linking articles for joomla?

    thanks
    Ridvan
  • l33p · 6 months ago
    If you insert an image using the "Image" button, does that work?

    I have heard of another plugin (it used to be for Joomla 1.0) called TitleLink. Just search for TitleLink in the Joomla! extensions directory.
  • Anna Lindgren · 8 months ago
    I get an error message on the site where I have installed Linkr; Notice: Undefined property: stdClass::$id in /home/r/website/website/web.website.com/plugins/content/linkr_content.php on line 765

    I cannot really sort this out, since I'm not so experienced with PHP, and I cannot find anything about similar errors in the FAQ. Can anyone help with this? I really like this extension and it is working properly as far as I can see, but I get this annoying error message.
  • l33p · 8 months ago
    Hi Lindgren

    On what page does this happen: is it on an article page, or section, or an extension you downloaded yourself?
  • Anna Lindgren · 8 months ago
    I happens on all pages when this is installed. But now I have disabled all error reporting so the message is not showing
  • jeffreyd00 · 8 months ago
    Problem still with "Database Error: Mixing of GROUP columns"
    I am using version 2.3.2 and get this error when selecting an Article... I am using php 5.2.6

    Database Error: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause SQL=SELECT c.id, c.title, c.description, c.section, COUNT(a.id) AS articles, CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(":", c.id, c.alias) ELSE c.id END AS slug FROM jos_categories AS c LEFT JOIN jos_content AS a ON a.catid = c.id WHERE c.published = 1 AND a.state = 1 AND c.id = 8
  • l33p · 8 months ago
    You'll have to download the patch "com.linkr.patch-232(b).zip" and install
    it though the Joomla! installer.

    You can find it here:
    http://joomlacode.org/gf/download/frsrelease/10...
  • Tecia · 7 months ago
    I have the same problem but with patch i have the some error.
    I install the patch though Joomla installer
  • l33p · 7 months ago
    Make sure to clean your cache after installing the patch
  • mintymike · 7 months ago
    installed the patch, cleaned the cache, it didn't help... still receiving error copied by the bloke above. Cannot display articles browsed by section and category.
  • l33p · 7 months ago
    Could you check your database version?
  • Jon Clark · 8 months ago
    Hi,

    thanks for the great component.

    I am trying to change the margin/paddingh around the bookmarking icons. Where can I change the CSS?


    Thanks and keep up the great work.

    CU
    JC
  • l33p · 8 months ago
    Hi

    For the moment, the CSS is included manually. So you can either use the default CSS, or disable it completely to use your own. You can find the CSS for the bookmarks in the file "your site / plugins / content / linkr_content.php". If your using Linkr 2.3.2, you'll find it on line 403. In any case, it is roughly a 3rd of the way down the page.

    You can edit the CSS there directly, or you can copy and modify it the way you see fit.

    Note: if you have "search for text" functionality, try searching for "if (!isset($this->bmStyles))".
  • vincent · 7 months ago
    hello
    i am using this mod likr on the site www.weltmeer.ch and it works normaly grat.
    But if you have a Link in a content and the content is not called up throu the menu - but going direclty because it is on the starting page - the link will fail. It will also fail if you go from a contetent directly to the SubCategorie a link will also fail

    have a nice day
    vincent
  • l33p · 7 months ago
    Hi

    Because of the way the Joomla! SEF plugin works, links on the homepage might differ from links on other pages. Maybe instead of having "index.php/the-news/..." you'll have "index.php/component/article/...".

    I'll inform myself about that.

    When you say the link fails, do you mean the link is different? or that the link doesn't work at all?
  • vincent · 7 months ago
    Hello
    thanks for your feedback.
    the link show the wrong articel.
    go www.weltmeer.ch top you go segeln - on the leftmenu you click [meine Ausbildung] look for [02.04.2009 CCS Radarkurs (Praxisnachweis)] click on weiterlesen...
    on the bootem of the content you have a link - and on the right side you also have a link "Verwandter Artikel".
    Both will link to the same place - but not both do it!
    have a nice day
    vincent
  • l33p · 7 months ago
    I just checked your links.. the two pages are completely different. I'll have to ask the Joomla! gurus about this...
  • mactech · 7 months ago
    Hi
    I downloaded "plg.linkr_button.upgrade-any-to-2.3.2", "com.linkr_2.3.2b_2009-04-08" and "plg.linkr_content.upgrade-any-to-2.3.2b"
    I activated all the plugins.
    I use Joomla 1.5.9.
    But when I use "related links" in an article, in the frontend, I have the line {linkr:related;keywords:L%27impression+des+%C3%83%C2%A9tiquettes;limit:5;title:Related+Articles} instead of the links

    Could you please tell me why ?
  • l33p · 7 months ago
    Are you using PHP4?

    If you are, try installing this patch through the Joomla! installer: http://codes.statsful.com/files/plg.linkr_conte...
  • blahher · 7 months ago
    I would like to request a feature: a tickbox to search in titles only (instead of the full article text).
  • l33p · 7 months ago
    -noted
  • David Boggitt · 7 months ago
    Hi,

    I'm having two problems:

    1) The link text which i can edit under "configure link" automatically contains the whole text for the article. Is there a fix or known workaroud for this?

    2) When I'm trying to link to an article, I can't select uncategorised articles as only the sections come up in the list!

    I'm on J1.5.10 and Linkr2.3.2b (I had to install the patch as I got a database error that is talked about here).

    Thanks for any help you can offer,

    Dave.
  • l33p · 7 months ago
    When the whole text shows up, is it the text of the edited article, or the text for the article you're linking too? Also, does this happen only when linking an article, or also when linking a category, section, or menu link?

    To be honest, I have no idea how that happens! But of course, I'll be looking into it.
  • David Boggitt · 7 months ago
    Hi,

    It's the text of the entire article. The strange thing is, I think this used to happen, then a future version of Linkr fixed it (for me, anyway) and it's now happening again. I'm happy to PM/email you an admin login if this helps you at all.

    It happens for an article, section, category and a menu link.

    Thanks for your time on this.

    Dave.

    P.S. Any thoughts as to why the uncategorised articles aren't showing up either?
  • l33p · 7 months ago
    A concrete example would help me a lot. You know my email right?

    As for uncategorized articles, the only way to get to them is to search for them. But, I'll make sure this feature comes back.
  • Liam Laurent · 7 months ago
    Hello,

    I recently installed the following Linkr files:

    com.linkr_2.3.2b_2009-04-08.zip
    plg.linkr_button.upgrade-any-to-2.3.2.zip
    plg.linkr_content.upgrade-any-to-2.3.2b.zip

    The Joomla! installer confirmed that all the files were installed properly. I then enabled the Content - Linkr and EditorButton - Linkr plugins. When I try to create a link within an article to another article I get the followin error on the Linkr screen that pops up:

    JSON Error!
    Linkr says:error 403
    Forbidden
    You don't have permission to access /administrator/index.php on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/1.3.37 Server at agriculture.gov.dm Port 80
    Click hereto go to the Linkr Support page.


    Can you provide any insight as to what may be causing the problem?

    Thaks
    Liam
  • l33p · 7 months ago
    Something seems to be blocking Linkr. Is your backend password-protected somehow (besides the Joomla! login)?

    And do you have problems doing anything else with Linkr (linking files, bookmakrs, etc)?
  • Liam Laurent · 7 months ago
    Thanks for the reply. My backend is not password protected (besides the Joomla Login). Could it be a permissions issue with a folder that Linkr should have access too?

    And in response to your second question, the same error pops up when I try to insert a link to a Contact, Menu or Article. When I try to link to a File or Bookmark the Linkr screen just shows that it is loading and never moves from that state.

    By the way I am using Joomla! v1.5.8 and my host's Server is using PHP 4.4.4 and Apache 1.3.37. Hope this helps in solving the problem. I also recently installed the following packages:

    com.linkr.patch-232b.zip
    plg.linkr_content.upgrade-any-to-2.3.2(c).zip

    They however had no impact on the error.

    Liam
  • l33p · 7 months ago
    Yes, it could be due to file permissions. You should find a way to make sure your all your folders are "0755" and all your files are "0644". (see http://docs.joomla.org/Security_and_Performance...)
  • Liam Laurent · 7 months ago
    Are you referring to the Linkr related files or folders? If so could you please indicate to me which files and folders that I need to change permissions for?

    Liam
  • l33p · 7 months ago
    I meant both. I can't tell which files or folders might be the problem, but I can send you a file that will fix permissions for all of your site if you'd like.

    Basically, only one file (or folder) that Linkr uses needs to have the wrong permissions to affect all of Linkr, and that can come from many places.
  • Liam Laurent · 7 months ago
    That would be great. Please email the file to me.

    Thanks
    Liam
  • thirdangle · 7 months ago
    How to show related links in custom positiion? i.e In between article text?
  • l33p · 7 months ago
    They can't automatically show between text. But you can insert them manually by using the Linkr button and clicking "Create related links".

    Once you insert the "Linkr anchor" (e.g. {linkr:related;...) just cut it and copy it where you want it to appear.
  • Andreas Wildi · 7 months ago
    Hello,

    I've activated the Option 'Allow Upload in Frontend', but I still don't see the Upload Form in the Frontend.
    Everything works fine in the Backend. I can use all features of Linkr in the Frontend except the uploadform.

    Do you have any idea what might be causing this?
  • l33p · 7 months ago
    Hi

    You just stumbled onto a bug. Unfortunately, there's no easy fix...

    It'll be corrected in the next release.
  • kellyrued · 7 months ago
    Love Linkr but am trying to modify so that it won't show unpublished articles in the "relevant links" ouptut before the publish date. This results in a 404 error if the user clicks thru the relevant link to an unpublished article. Any ideas how I can patch this?

    Other than that small issue, this is an excellent extension!!

    Thanks,
    Kelly

    PS (I linked to my site in the comment form but wanted to warn you it's NSFW/adult in case you visit)
  • l33p · 7 months ago
    thx for the warning. what version of Linkr are you using?
  • kellyrued · 7 months ago
    I just upgraded to Linkr 2.3.3
  • vincent · 7 months ago
    Hello
    do you think to add also URL-Links to your tool?
    have a nice day
    vincent
  • l33p · 7 months ago
    I wasn't going too. Are you voting to add that feature?
  • vincent · 5 months ago
    yes it would be nice to have it
    vincent
  • tcs101 · 7 months ago
    Has anyone had a problem where the installation went fine, the linkr button is on the editor, and when i pull it up to link to an internal article, the little rotating image appears "busy", but then nothing ever pops up? No search results are ever generated, it just hangs forever. The little animation continues to look busy the whole time but still no results and its been easily 15 minutes.
  • wilson · 7 months ago
    I'm getting this error in my search results: Warning: fopen(/home/artemis7/public_html/test/logs/linkr.php) [function.fopen]: failed to open stream: Permission denied in /home/artemis7/public_html/test/libraries/joomla/error/log.php on line 202

    The file linkr.php does not exist in the logs directory. Where is it?
  • l33p · 7 months ago
    The file should be created automatically by Joomla!. The problem might be coming from your server:

    -Maybe you have "safe_mode" on
    -Maybe the "fopen" function is disabled on your server
    -Maybe the "logs" folder has the wrong permissions (should be at leat 0755)

    You can check some of these settings in "Administrator » Help » System info"
  • tcs101 · 7 months ago
    I am running Joomla 1.5.9 , installed Linker Super installer and patch listed. Everything is enabled, button is on JCE editor. When I click it the box comes up, and then it hangs while the little circular animation continues indefinitely. I can't use it because it never lists the articles, and the other options have the same problem. It hangs.

    Any ideas? Please guys, really need to get this working.

    thanks ahead of time.
  • tcs101 · 7 months ago
    If anyone's wondering - problem is fixed. It has nothing to do with the code.

    If your popup window hangs, increase the server memory size and make sure its php5 not 4. That's what I changed to make it work.
  • l33p · 7 months ago
    Hi

    thanks for posting this fix. Can I ask what was your memory size before you changed it?
  • Andy · 7 months ago
    I'm having the same problem, but to my shame, I don't know how to increase the server memory size. What do you have to do?
  • Andy · 7 months ago
    ok I found the php.ini file and doubled the server memory size to 64, but still no joy.
    I'm running Joomla 1.5.9 new install of Linkr. Though I've used it before everything seems to be in order.

    Any ideas?
  • l33p · 7 months ago
    hey Andy. Are you still having this problem? And have you installed the latest patches too? if so, let me know which editor and browser you're using, I'll try to figure it out.
  • Andy · 7 months ago
    Hi Thanks for responding on this one. I've just this minute reinstalled using the superinstaller and still no joy. I'm browsing on Firefox/3.0.6 and I'm using the TinyMCE 2.0.

    Just in case it's important i've also installed the eventlist plugin. I've added my website incase it helps to see what else I've got installed on top of 1.5.9

    Cheers for looking
  • l33p · 7 months ago
    Linkr 2.3.3 was just released. Try disabling the eventlist plugin, and upgrading your Linkr extensions. See if that helps.
  • Andy · 7 months ago
    Hi

    I uninstalled Linkr and all related plugins inc eventlist. Installed 2.3.3 from the superinstaller. and still no joy.

    I did notice that the plugins were already enabled when i went to activate them, if that helps.
  • l33p · 7 months ago
    At this point, I really have no idea what the problem might be. I use Firefox as well, and I can't reproduce the problem myself. If you're getting this problem on a "localhost", try using Linkr online. If you're using it online already, maybe you could setup a separate account for me to have a look?

    Sorry.
  • wilson · 7 months ago
    Also getting this problem:

    Database Error: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause SQL=SELECT c.id, c.title, c.description, c.section, COUNT(a.id) AS articles, CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(":", c.id, c.alias) ELSE c.id END AS slug FROM jos_categories AS c LEFT JOIN jos_content AS a ON a.catid = c.id WHERE c.published = 1 AND a.state = 1 AND c.id = 63

    I saw a link to a patch but the link is now dead.
  • l33p · 7 months ago
    Hi

    You can get the page on JoomlaCode:
    http://joomlacode.org/gf/project/linkr2/frs/
  • wilson · 7 months ago
    I found the patch and was able to install it. I couldn't install through the joomla installer but i was able to upload and replace the files. The patch fixed my problems.
  • Jesko · 7 months ago
    Sorry, but there is no linkr button in jce. I am using Joomla 1.5.3, JCE 1.5.0 (com), JCE 1.5.1 (plg). Both linkr plgs are definitely activated. In JCE Plugin-Manager is no linkr button and also in JCE article editor there is no additional buttton. I am confused. Can you help me?
  • Jesko · 7 months ago
    my own fault. I looked above but should hae looked below :). Sorry for double post, too.
  • Jesko · 7 months ago
    Sorry, but there is no linkr button in jce. I am using Joomla 1.5.3, JCE 1.5.0 (com), JCE 1.5.1 (plg). Both linkr plgs are definitely activated. In JCE Plugin-Manager is no linkr button and also in JCE article editor there is no additional buttton. I am confused. Can you help me?
  • blahher · 7 months ago
    Hi!

    Is it possible to integrate this extension in the WYSIWYG editor of Jevents extension?
  • l33p · 7 months ago
    yes!
  • blahher · 7 months ago
    How?
  • l33p · 7 months ago
    If you're a developer, you can do this by using the Linkr API (http://codes.statsful.com/linkr-api). Or are you asking if I've planned on doing this myself?
  • blahher · 7 months ago
    I'm not a developer. Yes I'm asking if you're planning. Kind of a feature request :)
  • l33p · 7 months ago
    lol ok. ill see what i can do.
  • Sergey · 7 months ago
    Found problem: Linkr extention and Attachments for content article (http://extensions.joomla.org/extensions/directo...) conflict with each other. Cannot resolve this problem self.
  • l33p · 7 months ago
    Hi

    I can't reproduce the problem. Tried it with Attachments 1.3.4 and Linkr 2.3.2, and they seem to work fine. Do you use other content plugins?
  • Brujo · 7 months ago
    if i use the related Article i get many errors with the xhtml validator

    what can i do?
    Brujo
  • l33p · 7 months ago
    Hi. This is just a typo in the code. I'll upload a patch today.

    Look for the file "plg.linkr_content.upgrade-any-to-2.3.3(a)"
  • Brujo · 7 months ago
    perfect all errors gone

    thanks a lot for this quick response & support
  • Kristian · 7 months ago
    After the last update I can only insert Popular Bookmarks. I tried only to insert Facebook, but :p is selected.
    I can also insert all :*, but how do I insert only Facebook?

    Best regards
  • l33p · 7 months ago
    When you use the Linkr button, click on "clear" then click on "facebook". This should insert an anchor that looks like "{linkr:book ... badges:18}" or something.
  • Matthew · 7 months ago
    I love the related articles. Is it possible to get it to show in RSS feeds?
  • l33p · 7 months ago
    Not at the moment. Are you casting your vote for this feature?
  • Matthew · 6 months ago
    Yes! It would be wonderful. Totally my vote. Having control of related articles in RSS feeds would be fantastic.
  • Ghilou · 7 months ago
    Ok I have a strange behaviour (not calling it a bug yet).
    I use linkr to create a link to the current article (it allows me to create nice looking clicky images in place of the intro text in blog view). Works wonder except for the obvious drawback (article must be published thus forcing a two-pass creation, its a long winded process where I would have prefered something automatic etc).

    But there is that one article with wich the linkr popup keep creating the wrong link. That is : Open any article -> highlight whatever text or image -> click the linkr button -> browse to the faulty article -> get link -> the link created points to a whole another article.

    This issue is worked around by actually going to the 'configure link' dialog and setting the "Item ID" to 'none'. Sure enough, it pointed on the other article.

    The 'itemID' dropdown only appears when configure THIS link (I went through all my articles to check). The only thing the faulty article has special is it has ID 1.

    I would like to avoid this behaviour when the site will go live.
  • l33p · 6 months ago
    Hi Ghilou,

    Thanks for reporting this. What's happening is that Linkr is finding the wrong ItemID. In any case, this is an important bug, and it will need a patch.

    Thanks again, and don't hesitate to post back here if you notice any other weird behavior.
  • l33p · 6 months ago
    Hi. There's a new patch on the download page: http://joomlacode.org/gf/project/linkr2/frs/ See if it fixes this problem for you - it's called com.linkr.patch-233(a).zip
  • Kim · 7 months ago
    I used Linkr to add an image to a custom html module. When I "linked" the image, it did not appear in the "Custom Output" box within the module editor as I had expected. However, when I viewed my site, the picture was showing outside the module (above the module in the header) and I can't get rid of it. Please help.
  • l33p · 6 months ago
    I'm not sure what you're doing wrong here. What editor are you using? Often, if the editor can't display the image, you can toggle the editor to "HTML" mode (or "Source Code") and manually find the image tag (it will look like "<img src=..."). It should be at the beginning. Once you've found it, just select it and delete it.

    But your editor should be able to display images though.
  • Mark · 6 months ago
    I get this database error when using linkr to link to an exsting article

    Database Error: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause SQL=SELECT c.id, c.title, c.description, c.section, COUNT(a.id) AS articles, CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(":", c.id, c.alias) ELSE c.id END AS slug FROM jos_categories AS c LEFT JOIN jos_content AS a ON a.catid = c.id WHERE c.published = 1 AND a.state = 1 AND c.id = 34

    Any Ideas?
    Joomla 1.5.8 / Linkr 2.3.3
  • l33p · 6 months ago
    You shouldn't get that error with Linkr 2.3.3. Try clearing your cache.
  • l33p · 6 months ago
    You shouldn't get that error with Linkr 2.3.3. Try clearing your cache.
  • maik · 6 months ago
    I couldn't see any anchors that are set in my pages.
    How can I set a link to an anchor with linkr?

    Thanks,
    Maik
  • l33p · 6 months ago
    If you mean link anchors e.g. example.com/page#anchor... That's not a feature of Linkr for the moment.
  • Maik · 6 months ago
    Could you support JOOMSUITE RESOURCE Categories and Articles?
    Currently there is no way to link to joomsuite articles via an editor or plugin.

    Can you help out?
    Does the API work with Joomsuite's multi-category setup ?
  • l33p · 6 months ago
    The API certainly would work with Joomsuite's multi-category setup! But Joomsuite Resource is a commercial extension... I'm not planning on integrating it myself.
  • Maik · 6 months ago
    Not yourself? What does this mean...
    BTW, you can download and install ALL joomsuite extensions for FREE. They do all work with a special LOCAL LICENSE file FOR FREE! Only when you transfer and use it on an ONLINE server... you can use a 15day FREE license or purchase an unlimited license.
  • l33p · 6 months ago
    I mean any developer can use the Linkr API to integrate Joomsuite into Linkr. If I can get a free version, then I'll look into it.
  • Maik · 6 months ago
    Oh yes, please! :-))
    Its FREE (more or less...), though you have to use ioncube and the previously mentioned license file. There are encoded parts in the component itself, but i guess, that has nothing to do with your event-API, DBselects and URL-handling (hope so)

    BTW
    the joomsuite modules content-viewer and content-list maybe of interest for you.
    here are people, who have worked with the joomsuite category system, maybe this is of some help for you as well:
    www.nonumber.nl (ContentTemplater)
    www.spiralscripts.co.uk (Featured Items Pro)
    www.holyfieldstudios.com (content list module - extended)

    Thanks for listening!
  • Maik · 6 months ago
    I contacted the joomsuite support as well. Maybe they will have a look at your cool extension and documentation, though they seem quite busy with their own stuff ;-)
  • l33p · 6 months ago
    Great. I'll certainly see what I can do, but no guarantees...

    I also hope they find the time to look at the API.

    Have a great day!
  • Maik · 6 months ago
    Thanks for listening and support, i really wonder why this is not a core part of joomla??!?!? I expected something like this for a long time (since the frontend image uploader looks similar)

    BTW,
    The 3rd party nested-category solutions are growing ;-)
    I am addicted to Joomsuite... but what about joomlaworks K2 and Yoothemes ZOO ? Do you think about them, too.
    It would make your solution "one-in-a-million" and very popular, IMHO.
    CU, and thanks again.
  • John · 6 months ago
    Hi

    I am trying to install the latest version and I get a

    "-1 - An error has occurred"

    "It was not possible to copy the selected file." error message. I have set my web directory to 777. Any ideas?
  • John · 6 months ago
    i am using joomla 1.5.10 and have uninstalled 2.2.3 linkr
  • l33p · 6 months ago
    I'll try looking into it. Do you have problems installing other extensions?
  • Fry · 6 months ago
    I posted this over at the Joomla extensions site and the developer suggested I post it here. I was using the Related Links feature which I believe was causing the "network is busy" error. The following is from my IT person.

    "The main problem appears to be unoptimized MySQL queries. An optimized MySQL query executes in a fraction of a second and uses very little resources. We have noticed over the last few weeks, that your database has been under the top usage user for quite some time. I searched for the query which I see many times showing up in the top list of slow queries and am 99% sure it is the linkr plugin."

    Feel free to email me for more info. Thanks.
  • Uch · 6 months ago
    please can somebody help out here. whenever i click on facebook to share my article using linkr. it add extra semilicolon at the back of my article ";" like this http://www.facebook.com/sharer.php?u=http://cod...

    with the semicolon ..the url will be long and no body can get to the real article. how can i correct this
  • l33p · 6 months ago
    Hi

    Most likely, this comes from the bookmark code. Try going to the bookmarks page (Administrator » Linkr » Bookmark), selecting the Facebook bookmark, and having a quick look at the second piece of code ("Small badge").

    Somewhere in the code, you should see "[url]". Make sure there's no ";" like this: "[url];"
  • Fjellfinn · 6 months ago
    Still no Gallry 2 linkr :-(
  • l33p · 6 months ago
  • David Vinstone · 6 months ago
    Hi,
    I came across the plugin for Portfolio Design and then found out about Linkr from there. As I read about Linkr, my understanding is that it allows articles to be linked to one another. I am a current user of Portfolio Design. Since Portfolio Design is a non-article component, I am interested in learning more about how I can use the Linkr plugin to expand the capabilities of Portfolio Desgin.
    By the way, I am very happy to come across the plug in since there has not been any activities from the developer of PD. Thanks.
  • l33p · 6 months ago
    Hi David,

    As you have guessed, Linkr is an extension for linking articles to each other while editing. With the plugin you stumbled upon, the same can be done with Portfolio Design. That means whenever you're editing an article (or whenever there's a Linkr button) you'll be able to use Linkr to find the right URL to a Portfolio category or item, without having to browse to your site.

    I don't know about the developer of PD, but I know the "Linkr & Portfolio" plugin works with the current version.
  • paul · 5 months ago
    Hi there. I use Linkr on a few sites and it's great, but today I noticed in the code that the Myspace and Digg links are both creating links of the entire article, not just the title, which means i get a "The requested URL's length exceeds the capacity limit for this server" response. I can't find anywhere to determine the global settings to only take the title either.

    I've disabled Digg and Myspace for now, but thought you might know what's happening.
  • l33p · 5 months ago
    Hi paul

    The links seem to be fine for me. In any case, you can verify the code for each button in the Bookmarks manager (Administrator » Linkr » Bookmarks) and clicking on Digg or MySpace.

    It might not mean much at first sight, but look for anchors like "[title]" and "[desc]". For example, the Digg code should have something like "title=[title]" in the first 3 boxes.
  • Bastienne · 5 months ago
    I get the following error message while installing. What to do?
    tnx Bastienne

    Warning: file_put_contents(/home/bmedia/domains/bmedia.nl/public_html/trecgooi/tmp/linkr.super_installer_2.3.3_2009-05-06.zip) [function.file-put-contents]: failed to open stream: Permission denied in /home/bmedia/domains/bmedia.nl/public_html/trecgooi/libraries/joomla/filesystem/file.php on line 297
  • l33p · 5 months ago
    Do you have any problems installing other extensions? If not, try again. If you do, you should probably have your server settings checked.
  • Bastienne · 5 months ago
    I did install other extensions but it turned out I needed to change a lot of permissions on folders for this one. problem solved, thanks!
    linkr works just fine sofar
    Bastienne
  • suzettew · 5 months ago
    Suggestion for your documentation:

    First of all, let me say that this is an ABSOLUTELY FANTASTIC extension. I don't know why it isn't already in the Joomla! core, but believe me, it's a life saver.

    I only had one problem with the product, and that is that I didn't know something: When putting more than one link in an article, you have to SAVE the article after creating each link. Otherwise, the first link transfers to everything else you're linking. (Hope that's clear)

    A word in the documentation about the importance of saving would be useful. (Oh, and well done on having documentation. So many extensions don't have any!)

    Cheers and kudos!
  • l33p · 5 months ago
    I'm happy you like the extension!

    The links aren't suppose to transfer. If they do, then it's probably due to a bug. Which browser and editor are you using?
  • Jessica · 5 months ago
    I just installed the 2.3.3 super installer version into a joomla 1.5.8 version. I'm getting the hangs/freezes/displays the loading icon endlessly problem. I believe this was the lastest version of Linkr so I'm not sure what the problem might be. Any help would be greatly appreciated!!
  • l33p · 5 months ago
    You're in luck. A newer version of Linkr was just released today. You should try that one, and if you're still having problems, post back here and tell us which browser you're using.
  • Jessica · 5 months ago
    Unfortunately it's still not working! I installed 2.3.4 using Firefox v.3.0.11 and when that didn't work, I tried again using Safari v.4.0. The button is there but the prompt just endlessly loads.
  • Jessica · 5 months ago
    I've also tried on both a PC and a Mac...
  • l33p · 5 months ago
    Hmm.. Does it freezre both in the back-end and front-end? If it does, I would like to know which editor you're using. Also, clear your cache/delete the "Temporary internet files" before trying again.
  • Bastienne · 5 months ago
    After installing Linkr it worked fine for a while.
    But a day later I am unable to log into the admin of Joomla (backend). I tried many solutions on joomla sites but none helped.
    Could it be the Mysql problem reported here on 23 may?
    http://extensions.joomla.org/extensions/structu...

    if so, what to do? I am not a great expert...
    Can I uninstall Linkr without the backend, and then reinstall a new version later?

    tnx Bastienne
  • l33p · 5 months ago
    I don't think it has anything to do with that. If you think uninstalling Linkr might help, you'll need to delete the following folders using an FTP client, or your online file manager:

    your-joomla-site / administrator / components / com_linkr
    your-joomla-site / components / com_linkr

    And the following files:

    your-joomla-site / plugins / content / linkr_content.php
    your-joomla-site / plugins / content / linkr_content.xml
    your-joomla-site / plugins / editors-xtd / linkr_button.php
    your-joomla-site / plugins / editors-xtd / linkr_button.xml

    Where "your-joomla-site" is the path to your Joomla! installation.

    I'm not sure, but I think there's a way to reset your password. You should search the Joomla! forums for "reset password"
  • Ralf · 5 months ago
    Which external modul can i use to display the related links outside th content? The standard Joomla modul doesn't work. Thx.
  • l33p · 5 months ago
  • Jeff · 5 months ago
    First and foremost, thanks for this awesome plugin!

    I was wondering if it were possible to get a link added to the Linkr admin modal window to add the content from an article instead of a link to the article itself. I imagine this is possible, as the plugin already fetches this and displays it inside the modal. I was going to add myself, but I figure asking here first might save me some time (as you are familiar with the code).
  • l33p · 5 months ago
    No doubt it can be done. I would point you to the Linkr API, but it's being moved and is not up-to-date... So I'll see what I can do.
  • David · 5 months ago
    The best Joomla plugin, because is easy and work. I need just it.
    One question:
    How can I translate Linkr to Brazilian Portuguese? I never did it before, so I need indication about docs.
    txs a lot ppl.
  • l33p · 5 months ago
    There are no docs about that for the moment. The documentation is being updated, and will be up in a few weeks. But it's very simple, and I can explain it to you myself. Can I send you and email at your Gmail account?
  • DavidNobrega · 5 months ago
    Be my guest.
  • David · 5 months ago
    One problem is happening here:

    At article bottom I used favorites AND related articles stuff.

    The favorites bar is ok, but not the related.

    have in your mind I´m a junior Joomla user, so if it´s usual, let me know.
  • l33p · 5 months ago
    What's wrong with the related articles? what do you see?
  • DavidNobrega · 5 months ago
    The favorites bar it´s ok, but related links didnt work. It´s weird: if I use just it (related), work´s fine. But not both at same article.

    Try look in this (example): http://www.editoranovitas.com.br/index.php?opti...
    This page above has both linkr stuff at botton.
  • l33p · 5 months ago
    So that page is supposed to have Related Links, but it doesn't. Are they added automatically (by default in the plugin parameters)? or did you add them using the Linkr button (e.g. by adding code like {linkr:related;...})?
  • DavidNobrega · 5 months ago
    Added one by one. Some pages dont call related links, just favorites bar.
  • l33p · 5 months ago
    I don't know what the problem is. I'll have to look into it.

    I'll post back here if I figure it out. In the mean time, try adding the related links automatically (in Administrator > Extensions > Plugin Manager > Content - Linkr > Parameters) to see if that works.
  • DavidNobrega · 5 months ago
    Didn´t work either. I´ll try clear all footer pages and start again to see what happen.
  • DavidNobrega · 5 months ago
    Ok... It´s working now.

    Maybe a cache mistake or something like that.

    Txs.
  • l33p · 5 months ago
    Maybe. Just post back here if you notice any other weird behaviour
  • roman · 5 months ago
    I have installed linker on my first website i made and it worked fine. Now im making another one through the same host. I stalled it and it shows enabled in joomla but when I go to the article editor I dont see the icon to link. Could some one please help me with this. Thank You
  • l33p · 5 months ago
    Remember that there are two plugins to enable. Make sure you also enabled the one called "Editor Button - Linkr"