Results 1 to 4 of 4
  1. #1
    Join Date
    May 2006
    Posts
    81
    Plugin Contributions
    0

    Default problem with customers detail

    Hi,

    I am having some problem with my customers detail. The first 2 pages about 400 customers are fine. But the remaining 20 pages until the first customer who signed up are having error. Missing details.This is the error:

    Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /home/simplyvc/public_html/jintex/admin/customers.php on line 1071

    Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/simplyvc/public_html/jintex/admin/customers.php on line 1073

    Warning: reset() [function.reset]: Passed variable is not an array or object in /home/simplyvc/public_html/jintex/admin/includes/classes/object_info.php on line 29

    Warning: Variable passed to each() is not an array or object in /home/simplyvc/public_html/jintex/admin/includes/classes/object_info.php on line 30

    regards
    Kevin

  2. #2
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: problem with customers detail

    Replace
    $customer_info = array_merge($country->fields, $info->fields, $reviews->fields);
    $cInfo_array = array_merge($customers->fields, $customer_info);
    With
    $customer_info = array_merge((array)$country->fields, (array)$info->fields, (array)$reviews->fields);
    $cInfo_array = array_merge((array)$customers->fields, (array)$customer_info);

    I think, this should work.

  3. #3
    Join Date
    May 2006
    Posts
    81
    Plugin Contributions
    0

    Default Re: problem with customers detail

    Thks, will try later and see whether it will work or not.

  4. #4
    Join Date
    May 2006
    Posts
    81
    Plugin Contributions
    0

    Default Re: problem with customers detail

    Hey, thks a lot. It works...

    regards

 

 

Similar Threads

  1. Problem with Customers on Admin Panel
    By shabizon in forum Basic Configuration
    Replies: 1
    Last Post: 12 Nov 2010, 02:36 PM
  2. Problem with 2 customers with the same name?
    By skelly100 in forum Managing Customers and Orders
    Replies: 4
    Last Post: 9 Nov 2010, 11:24 AM
  3. problem with customers loggin back in
    By hidi in forum Managing Customers and Orders
    Replies: 10
    Last Post: 8 Nov 2008, 05:13 PM
  4. Problem With customers.php
    By Lanarkwitch in forum Managing Customers and Orders
    Replies: 4
    Last Post: 28 Jan 2008, 06:25 PM
  5. Problem with the customers ID !
    By alhakeem2001 in forum Managing Customers and Orders
    Replies: 3
    Last Post: 15 Jan 2008, 10:12 PM

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