Page 45 of 199 FirstFirst ... 3543444546475595145 ... LastLast
Results 441 to 450 of 1988
  1. #441
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Great! Thank you so much!
    Live and learn... the Zen way.

  2. #442
    Join Date
    May 2007
    Posts
    96
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Maybe you can help me out here, I am trying to altar the code in the links.php file so that they are direct links.

    Where is says
    //$links_string = zen_href_link(FILENAME_LINKS_REDIRECT, 'action=links&goto=' . $link->fields['links_id']);
    return $links_string;


    How would i change it to something like that below? I suck with php trying to read a book and do this is impossible.

    My problem is, is that I don't know what the variables id's are What are the links names called is it links_id? Is the array name $link if so should I just take out the siteName below and switch it with links_id and for the $sites_array should i switch it with $link? Kinda confused at what it is using.


    //htmlsrc .= "&nbsp;&nbsp;&nbsp;<font class=\"siteName\"><A target=_blank HREF=\"".$sites_array["site_url"]."\">"; $htmlsrc .= $sites_array["site_name"] . "</A></font>"; $htmlsrc .= "&nbsp;&nbsp;<a class=\"siteName\" ";



    Matt

  3. #443
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by mboley370 View Post
    Maybe you can help me out here, I am trying to altar the code in the links.php file so that they are direct links.

    Where is says
    //$links_string = zen_href_link(FILENAME_LINKS_REDIRECT, 'action=links&goto=' . $link->fields['links_id']);
    return $links_string;


    How would i change it to something like that below? I suck with php trying to read a book and do this is impossible.

    My problem is, is that I don't know what the variables id's are What are the links names called is it links_id? Is the array name $link if so should I just take out the siteName below and switch it with links_id and for the $sites_array should i switch it with $link? Kinda confused at what it is using.


    //htmlsrc .= "&nbsp;&nbsp;&nbsp;<font class=\"siteName\"><A target=_blank HREF=\"".$sites_array["site_url"]."\">"; $htmlsrc .= $sites_array["site_name"] . "</A></font>"; $htmlsrc .= "&nbsp;&nbsp;<a class=\"siteName\" ";



    Matt
    Use the WORK AROUND suggested in this post

  4. #444
    Join Date
    May 2007
    Posts
    96
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post

    Clyde

    There has to be a way other than manual, do you know what dew php links directory is? It is a free directory in php, well they started out as a redirect and the person there gave me code to turn them into direct links in under 2 minutes.

    This would just take away so many head aches for everyone this is the reason why.

    One search engines don't even count these as a link
    two they can't be checked by a reciprocal link checker
    three even when you do add a href inside the discription box a reciprocal checker won't find it because it is in some type of a frame that reciprocal checkers don't like.

    I have tried it all and every way to get around it and nothing works.

    Isn't it harder to make a redirect rether then a direct link? Instead of looping redircts how would I loop direct links?

    This is my question in the first place maybe I can make it plainer to understand.

    I am trying to build a function that will do what I have been talking about doing. What are the variables called so that I can build it. It is very hard for someone just to look at code and know where everything is, like what is the links name variable? What is the arrays name? If you can give me those two things I can build it myself.


    Thanks


    Matt

  5. #445
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by mboley370 View Post
    Clyde

    There has to be a way other than manual, do you know what dew php links directory is? It is a free directory in php, well they started out as a redirect and the person there gave me code to turn them into direct links in under 2 minutes.

    This would just take away so many head aches for everyone this is the reason why.

    One search engines don't even count these as a link
    two they can't be checked by a reciprocal link checker
    three even when you do add a href inside the discription box a reciprocal checker won't find it because it is in some type of a frame that reciprocal checkers don't like.

    I have tried it all and every way to get around it and nothing works.

    Isn't it harder to make a redirect rether then a direct link? Instead of looping redircts how would I loop direct links?

    This is my question in the first place maybe I can make it plainer to understand.

    I am trying to build a function that will do what I have been talking about doing. What are the variables called so that I can build it. It is very hard for someone just to look at code and know where everything is, like what is the links name variable? What is the arrays name? If you can give me those two things I can build it myself.


    Thanks


    Matt
    As I pointed out about 2 posts ago. The suggested Work Around is being included in an update I'm currently working on.

    including the work around in includes/functions/links.php is simply a matter of copying the line of code
    Code:
    $links_string = $link->fields['links_url'];
    and pasting it into the file where indicated(line 100), saving the file and then uploading it to the server.

    As far as where the variables come from they are called from various files based on SQL statement calls to the database where the information is stored.
    (i.e. $link->fields['links_url']; refers to the LINKS TABLE and the links url field that is in that table.)

  6. #446
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Idea or Suggestion Link Manager 3.2 released

    Version 3.2.0 of Links Manager is now available in the downloads section

    This version now incorporates the "direct Link" fix mentioned previously and a couple of "cosmetic" changes.

  7. #447
    Join Date
    May 2007
    Location
    Leicester, England
    Posts
    165
    Plugin Contributions
    1

    Default Re: Link Manager 3.2 released

    Quote Originally Posted by clydejones View Post
    Version 3.2.0 of Links Manager is now available in the downloads section

    This version now incorporates the "direct Link" fix mentioned previously and a couple of "cosmetic" changes.
    Clyde

    There appear to be some significant differences between the upgrade version and the new install version - perhaps you could spend a little time removing all the irrelevant/superseded/temporary stuff?

    Puzzled? Take a look at upgrade/includes/modules/ and see the 'mystic' folder - there is no corresponding folder in the new install; similarly there is no link_listing_php in the includes/modules/ folder of the new install!!

    There might be other differences, but I am now wondering which 'version' is correct - I may not be alone!

  8. #448
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by blag View Post
    Clyde

    There appear to be some significant differences between the upgrade version and the new install version - perhaps you could spend a little time removing all the irrelevant/superseded/temporary stuff?

    Puzzled? Take a look at upgrade/includes/modules/ and see the 'mystic' folder - there is no corresponding folder in the new install; similarly there is no link_listing_php in the includes/modules/ folder of the new install!!

    There might be other differences, but I am now wondering which 'version' is correct - I may not be alone!
    OK, I've removed the mystic folder (missed that when I was cleaning up the zip file)
    Just check the files from the download and I found link_listing.php located in both the "new install" and "upgrade" located in includes/modules/ in both folders.

    I've uploaded a new zip file with the mystic folder removed.

  9. #449
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 release

    Hello, Clyde:

    I installed your new Link Manager 3.2 onto my site. www.thesbeauty.com

    It seems that no links show up, even the default extreme-hosting.com link. The site only shows the categories. Even when I keyed in links from the Admin, no link show up.

    Can you go to my site to take a look? Or do you have a site which successfully runs the link manager, so I can go to put in a new link to see how it works. Thank you!

    Lina

  10. #450
    Join Date
    Apr 2007
    Location
    New York City
    Posts
    11
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Lina,

    I have just installed link manager on my site. You are welcome to visit http://wigroom.com and try it out. I will allow me to also test it out.

    John

 

 

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR