Page 199 of 199 FirstFirst ... 99149189197198199
Results 1,981 to 1,988 of 1988
  1. #1981
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    When someone submits a link, where does the submission go? I can't find submission info from a submission.
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  2. #1982
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    additionally.... this verbiage:
    Your link has been successfully submitted! It will be added to our listing as soon as we approve it.
    You will receive an email confirming your submittal. If you have not received it within the hour, please contact us. [FONT=-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji]Also, you will receive an email as soon as your link is approved.[/FONT]

    [FONT=-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji]The submitter isn't receiving an email, nor are we. Does this need to be configured somewhere? I can manually enter the link and get it to display, but how are we notified that a link has been submitted? and then, where do we find the submission?[/FONT]
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  3. #1983
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    When someone submits a link, where does the submission go? I can't find submission info from a submission.
    admin is from Extras -- Links
    Links Manager definitions can be you or my... you can change definitions... We not use fonts to definitions, should css for the templates.

    The submits used in sidebox with links and others... if you don't for sidebox, create your one links.

    from sidebox links
    Code:
      if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
      $content .= '<a href="' . zen_href_link(FILENAME_LINKS, '', 'NONSSL') . '">' . BOX_INFORMATION_VIEW_ALL_LINKS . '</a><br />';
    }
    
       if (BOX_DISPLAY_SUBMIT_LINK == 'true') {
      $content .= '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, '', 'SSL') . '">' . BOX_INFORMATION_LINKS_SUBMIT . '</a>';
    }
    Dave
    Always forward thinking... Lost my mind!

  4. #1984
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    When someone is filling out the submission form, it is NOT sending out an email or storing the submission anywhere.

    I have confirmed all files of version 4.0 on 1.5.7c are properly installed and present. From Extras>Links Contact, I sent a test email to a manually added link recipient. The Subject was TEST and the body was TEST, here is what was received and I received an error log:

    Click image for larger version. 

Name:	Screen Shot 2021-07-09 at 5.48.42 PM.jpg 
Views:	87 
Size:	60.4 KB 
ID:	19667

    [09-Jul-2021 22:41:59 UTC] Request URI: /xxxx/index.php?cmd=links_contact&action=send_email_to_user, IP address: 184.170.174.172
    #1 substr() called at [/includes/functions/functions_email.php:587]
    #2 zen_build_html_email_from_template() called at [/includes/functions/functions_email.php:109]
    #3 zen_mail() called at [/xxxx/links_contact.php:34]
    #4 require(/xxxx/links_contact.php) called at [/xxxx/index.php:11]
    --> PHP Warning: substr() expects parameter 1 to be string, array given in /includes/functions/functions_email.php on line 587.

    [09-Jul-2021 22:41:59 UTC] Request URI: /xxxxx/index.php?cmd=links_contact&action=send_email_to_user, IP address: 184.170.174.172
    #1 mysqli_real_escape_string() called at [/includes/classes/db/mysql/query_factory.php:121]
    #2 queryFactory->prepare_input() called at [/includes/classes/db/mysql/query_factory.php:515]
    #3 queryFactory->prepareInput() called at [/includes/functions/database.php:54]
    #4 zen_db_input() called at [/includes/functions/functions_email.php:432]
    #5 zen_mail_archive_write() called at [/includes/functions/functions_email.php:381]
    #6 zen_mail() called at [/xxxx/links_contact.php:34]
    #7 require(/XXkcaz00/links_contact.php) called at [/xxxx/index.php:11]
    --> PHP Warning: mysqli_real_escape_string() expects parameter 2 to be string, array given in /includes/classes/db/mysql/query_factory.php on line 121.
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  5. #1985
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    When someone is filling out the submission form, it is NOT sending out an email or storing the submission anywhere.

    [09-Jul-2021 22:41:59 UTC] Request URI: /xxxx/index.php?cmd=links_contact&action=send_email_to_user,
    --> PHP Warning: substr() expects parameter 1 to be string, array given in /includes/functions/functions_email.php on line 587.
    From my bad code for newer PHP Version: 7.4.6 (Zend: 3.4.0) or 7.8... I need writing code on links contact page next to fix me...
    Dave
    Always forward thinking... Lost my mind!

  6. #1986
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by davewest View Post
    From my bad code for newer PHP Version: 7.4.6 (Zend: 3.4.0) or 7.8... I need writing code on links contact page next to fix me...
    Any head way on the code?
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  7. #1987
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    Any head way on the code?
    you could this, but for version 4.1

    contact was for admin mail contact and not needed for links contact..
    Links manager what's:
    - link form contact, or create admin
    - admin can decide if links go or delete.
    - link massage auto for link or stop

    I thing contact mail some older mod some years.
    Attached Files Attached Files
    Dave
    Always forward thinking... Lost my mind!

  8. #1988
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by davewest View Post
    you could this, but for version 4.1

    contact was for admin mail contact and not needed for links contact..
    Links manager what's:
    - link form contact, or create admin
    - admin can decide if links go or delete.
    - link massage auto for link or stop

    I thing contact mail some older mod some years.

    Dave,

    When someone SUBMITS a link. The Link mod is NOT emailing the submission or reporting the submission to the cart. There is NO way of knowing if someone is submitting a link.

    When someone submits a link, this text is displayed to the submitter "Your link has been successfully submitted! It will be added to our listing as soon as we approve it.
    You will receive an email confirming your submittal. If you have not received it within the hour, please contact us. Also, you will receive an email as soon as your link is approved."

    Where is the submission information supposed to go?
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

 

 

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