Page 56 of 199 FirstFirst ... 646545556575866106156 ... LastLast
Results 551 to 560 of 1988
  1. #551
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Ok, im having trouble installing the captcha with the Links Manager. I get a white screen with this error when I go to the submit links page.

    Fatal error: Cannot redeclare zen_get_link_path() (previously declared in W:\wamp\www\rbackyard\includes\functions\links.php:23) in W:\wamp\www\rbackyard\includes\functions\links.php on line 32
    The only file Captcha wanted me to replace that was a Links manager file was the includes/modules/pages/submit_link/header.php file. I included both files in an attachment. It works on my other site but wont on this one for some reason. Im running PHP4.. on the one that works and PHP5 on the one that dont if that matters... Thanks!
    Attached Files Attached Files

  2. #552
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by oxicottin View Post
    Ok, im having trouble installing the captcha with the Links Manager. I get a white screen with this error when I go to the submit links page.



    The only file Captcha wanted me to replace that was a Links manager file was the includes/modules/pages/submit_link/header.php file. I included both files in an attachment. It works on my other site but wont on this one for some reason. Im running PHP4.. on the one that works and PHP5 on the one that dont if that matters... Thanks!
    I got it working! I just didnt use the Captcha header.php file but I still would like the Captcha at the bottom like it is on all my other pages... Anyone know how this is done?

  3. #553
    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 oxicottin View Post
    I got it working! I just didnt use the Captcha header.php file but I still would like the Captcha at the bottom like it is on all my other pages... Anyone know how this is done?
    The links manager files in Captcha are probably older than those in the current version of Links Manager.

    If you plan on using Captcha you should compare the files using an file compare utility and only add the Captcha changes to the current version of the files in Links Manager.

  4. #554
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    I used winmerge and there are several changes to the files. I will have to poke around and see where they would go. I figured out the two files that need altering
    \includes\templates\rbackyard\templates/tpl_links_submit_default.php
    \includes\modules\pages\links_submit\header_php.php
    I have to add the changes to those....Just dont know where

  5. #555
    Join Date
    Oct 2004
    Posts
    43
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    I apologize if this has been covered... searched this thread.
    Is there a way to delete a category image once placed and make the cat. images line up side my sided instead of down the page>

    SITE:DAISIE

    TIA

  6. #556
    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 youniquephotos View Post
    I apologize if this has been covered... searched this thread.
    Is there a way to delete a category image once placed and make the cat. images line up side my sided instead of down the page>

    SITE:DAISIE

    TIA
    Do you want to delete or just replace the image?

    You're missing the links.css and links_submit.css stylesheets

  7. #557
    Join Date
    Aug 2007
    Posts
    5
    Plugin Contributions
    0

    Default Alexa / PageRank Mod

    Hello all,

    I wanted to show the Alexa Info and Page Rank on my links manager page. So I modified /includes/modules/YOUR_TEMPLATE/link_listing.php and added a script I found at: http://www.hm2k.com/projects/pagerank

    The mod is fairly easy to install and maybe clydejones (thanks for a great mod clydejones ) could add it to future versions with switches to turn off or on:

    Pagerank.php file above will return just the usual google pr image. If you want the image to also show the PR# like my thumbnail shows. You will have to modify line number 131:

    From:

    PHP Code:
     $out='<a href="'.$url.'" title="'.$pagerank.'">'.$html.'</a>'
    To:

    PHP Code:
     $out='<a href="'.$url.'" title="'.$pagerank.'">'.$html.'</a> PR'.$pr.''
    *********************************
    Now upload the pagerank.php file you get from http://www.hm2k.com/ to:

    /includes/modules/YOUR_TEMPLATE/pagerank.php


    Open /includes/modules/YOUR_TEMPLATE/link_listing.php with you favorite php editor.

    Find:

    PHP Code:
      if ($listing_split->number_of_rows 0) { 
    Above that line add:

    PHP Code:
      include('pagerank.php'); 
    *********************************

    Find:

    PHP Code:
               if (DISPLAY_LINK_DESCRIPTION_AS_LINK == 'true') { 
    Above that line add:

    PHP Code:
       $pagePR pagerankzen_get_links_url($listing_query->fields['links_id']) ); 
    *********************************


    Find:

    PHP Code:
               if (DISPLAY_LINK_DESCRIPTION_AS_LINK == 'true') {
                
    $lc_text '<a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_title'] . '</a><br /><a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_description'] . '</a>';
                 } else {
               
    $lc_text '<a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_title'] . '</a><br />' $listing_query->fields['links_description']; }
                break; 
    Replace those lines with:

    PHP Code:
               if (DISPLAY_LINK_DESCRIPTION_AS_LINK == 'true') {        
                
    $lc_text '<a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_title'] . '</a> | <a href=http://www.alexa.com/data/details/traffic_details?q=&url=' zen_get_links_url($listing_query->fields['links_id']) . ' target="_blank">Alexa Info</a> | '.$pagePR.'<br /><a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_description'] . '</a>';
                 } else {
               
    $lc_text '<a href="' zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' $listing_query->fields['links_title'] . '</a> | <a href=http://www.alexa.com/data/details/traffic_details?q=&url=' .zen_get_links_url($listing_query->fields['links_id']) . ' target="_blank">Alexa Info</a> | '.$pagePR.'<br />' $listing_query->fields['links_description']; }
                break; 
    Now your links manager will show Alexa Info | PageRank for the domains you trade links with. See Thumbnail attachment for example:

    NOTE: Use this mod at your own risk, I'm not responsible for any problems you might have.
    Attached Images Attached Images  

  8. #558
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default no return email for webmaster

    Clyde, I noticed something about links manager and was woundering if im missing a setting. If someone submitts a baner ect. they recieve an email stating the thier links will be reviewed ect. But, I never recieve an email stating that somone want to put a link on my website. The only way to know is if I look in the admin/extra/links and it will show up there. Am I missing a setting or this isnt an option? Thanks!!

  9. #559
    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 oxicottin View Post
    Clyde, I noticed something about links manager and was woundering if im missing a setting. If someone submitts a baner ect. they recieve an email stating the thier links will be reviewed ect. But, I never recieve an email stating that somone want to put a link on my website. The only way to know is if I look in the admin/extra/links and it will show up there. Am I missing a setting or this isnt an option? Thanks!!
    Was this happening before or after you installed the captcha mod?

  10. #560
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Was this happening before or after you installed the captcha mod?

    Before captcha, I was goofing with it on my running site and noticed that I never recieved an email just the person submitting the link to me does. I can see it was submited in the admin section but that is it. Why an i suposed to get an email?

    Thanks,
    Chad

 

 

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