Page 13 of 15 FirstFirst ... 31112131415 LastLast
Results 121 to 130 of 146
  1. #121
    Join Date
    Jan 2021
    Posts
    32
    Plugin Contributions
    0

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Quote Originally Posted by swguy View Post
    Thanks.
    But I am still stuck with the blank page If I click on the send email link.

    I could see other issues as well.
    When I try to log in from the front end, I get whoops your session has expired message.

    All these happened after I installed the add customers from admin 2.0 plugin.
    Now I have removed all those files. But these problems still exist.

    How to proceed further.

    I am using: Zencart v1.5.1
    PHP- Version 5.6.40

  2. #122
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Quote Originally Posted by RK123 View Post
    Thanks.
    But I am still stuck with the blank page If I click on the send email link.

    I could see other issues as well.
    When I try to log in from the front end, I get whoops your session has expired message.

    All these happened after I installed the add customers from admin 2.0 plugin.
    Now I have removed all those files. But these problems still exist.

    How to proceed further.

    I am using: Zencart v1.5.1
    PHP- Version 5.6.40
    Noting that there are no storefront/front-end files changed by this plugin; could you post the contents of one of the logs you're receiving, making sure to xxx-out your site's secret-admin-subdirectory name.

  3. #123
    Join Date
    Jan 2021
    Posts
    32
    Plugin Contributions
    0

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]



    PHP Fatal error: Maximum execution time of 60 seconds exceeded in /home/XXXXXXX/public_html/ adminxxxx /includes/functions/general.php on line 33

    PHP Fatal error: Maximum execution time of 60 seconds exceeded in /home/ XXXXXXX /public_html/includes/classes/db/mysql/query_factory.php on line 482


    PHP Fatal error: Maximum execution time of 60 seconds exceeded in /home/ XXXXXXX /public_html/adminxxxx/includes/functions/database.php on line 16

    PHP Fatal error: Maximum execution time of 60 seconds exceeded in /home/ XXXXXXX /public_html/adminxxxxx/add_customers_backend.php on line 650


    PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4980709 bytes) in /home/ XXXXXXX /public_html/adminxxxxxxx/includes/functions/html_output.php on line 324



    PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 bytes) in /home/ XXXXXXX /public_html/includes/classes/db/mysql/query_factory.php on line 486

    PHP Fatal error: Allowed memory size of 134217728 bytes exhausted
    (tried to allocate 20 bytes) in /home/ XXXXXXX /public_html/includes/functions/audience.php on line 60

    PHP Fatal error: Allowed memory size of 134217728 bytes exhausted
    (tried to allocate 1048576 bytes) in /home/ XXXXXXX /public_html/adminxxxxxxx/add_customers_backend.php on line 651

    PHP Fatal error: Maximum execution time of 60 seconds exceeded in /home/ XXXXXXX /public_html/adminxxxxxxxx/add_customers_backend.php on line 73

    These are some of the logs

  4. #124
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Quote Originally Posted by RK123 View Post
    These are some of the logs
    Those logs don't make any sense to me, although it could be a by-product of running the (oldy-moldy) zc151 on PHP 5.6.40. I didn't think that zc151 would run on PHP versions above 5.4.

  5. #125
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    I've just submitted v3.0.0 of Add Customers from Admin for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version (see https://github.com/lat9/add_customers_from_admin) is a heavy rewrite/refactor and now requires Zen Cart 1.5.7 (or later) for its proper operation.

    Various PHP notices, warnings and deprecations were corrected.
    The processing in the admin's add_customers_backend.php has been moved to /admin/includes/classes/addCustomers.php

  6. #126
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just submitted v3.0.0 of Add Customers from Admin for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version (see https://github.com/lat9/add_customers_from_admin) is a heavy rewrite/refactor and now requires Zen Cart 1.5.7 (or later) for its proper operation.

    Various PHP notices, warnings and deprecations were corrected.
    The processing in the admin's add_customers_backend.php has been moved to /admin/includes/classes/addCustomers.php
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=1477

  7. #127
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    111
    Plugin Contributions
    0

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Hi All,

    I'm running Zen Cart 1.5.7c and installed Add Customers from Admin v3.0.0.... All seems to be working fine so far! Great job!

    I have the MOD "Extra Fields on Customer Sign Up" installed (also working fine), but I wanted to add these extra fields to "Add Customers from Admin v3.0.0".....

    I've added the Labels & Text Fields to "STORE_ADMIN/add_customers.php.... All good there!

    ---------------------------

    My Question.....

    Where do I add the "extra-field" code so that the additional data is submitted with the Add Customer Form?

    Does it go in "STORE_ADMIN/includes/classes/addCustomers.php" ??

    If Yes, is that the only place?

    Thanks!

  8. #128
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Yes, you'll update the insertCustomer method in /YOUR_ADMIN/includes/classes/addCustomers.php to also insert those newly-added fields.

  9. #129
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    111
    Plugin Contributions
    0

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Quote Originally Posted by lat9 View Post
    Yes, you'll update the insertCustomer method in /YOUR_ADMIN/includes/classes/addCustomers.php to also insert those newly-added fields.
    Great! Worked like a charm....

    Thanks for your reply lat9!

  10. #130
    Join Date
    Feb 2009
    Location
    atlanta GA
    Posts
    278
    Plugin Contributions
    0

    Default Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]

    Hello there. I am using 1.5.6c for my store. When i install the plugin , it shows the link for it in admin/customers , but when i click on it I get a blank page. The log file says

    PHP Warning: require(includes/admin_html_head.php): failed to open stream: No such file or directory in /home/user/domain/admin/add_customers.php on line 128.

    Line 128 of that file is <?php require DIR_WS_INCLUDES . 'admin_html_head.php'; ?>

    What am i missing here ?
    Last edited by jasonshanks; 28 Jul 2022 at 11:11 PM.
    Zencart 1.5.6c PHP 7.2 Order Replacement AC Adapters and Power Cords Online www.missingcord.com

 

 
Page 13 of 15 FirstFirst ... 31112131415 LastLast

Similar Threads

  1. Save For Later Support Thread
    By swguy in forum All Other Contributions/Addons
    Replies: 209
    Last Post: 11 Mar 2024, 03:50 AM
  2. v155 Default Attribute - Add from product list [Support Thread]
    By swguy in forum Addon Admin Tools
    Replies: 9
    Last Post: 6 Jul 2020, 01:13 PM
  3. v151 Black and White Admin [Support Thread]
    By vvomble in forum Addon Templates
    Replies: 1
    Last Post: 1 Jun 2013, 04:04 PM
  4. add customers from admin
    By stevebrett in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 15 May 2009, 02:24 AM
  5. Add Customers from Admin
    By bigbadboy in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 13 Apr 2008, 02:42 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