Mookie_Jam 0 Posted October 9, 2005 I have installed the version 2 of this Contributions on a Clean osCommerce MS2 2.2 When I'm going to All Customers page I get this error. I exactly got the same problem! Any clue?? :blush: Share this post Link to post Share on other sites
Guest Posted October 27, 2005 I just downloaded the current version, and it's working fine for me. I wonder if we have differing MySQL versions? What is your version of MySQL installed? I have it currently running on MySQL 4.0.25-standard on Linux. -jared Share this post Link to post Share on other sites
timecrisis123 0 Posted November 25, 2005 Hi All, I was wondering if this script exports the orders too? Thanks! Share this post Link to post Share on other sites
Guest Posted November 26, 2005 Terry, This report just exports the customer information, not the order information. Searching the contribs area for "export order" will show a few items that may be helpful. -jared Share this post Link to post Share on other sites
Mookie_Jam 0 Posted November 29, 2005 I just downloaded the current version, and it's working fine for me. I wonder if we have differing MySQL versions? What is your version of MySQL installed? I have it currently running on MySQL 4.0.25-standard on Linux. -jared Mine is MySQL 3.23.58 on Linux, Apache/2.0.46 (Red Hat) and PHP: 4.3.2 (Zend: 1.3.0). Register Globlas OF Safe Mode ON :( Share this post Link to post Share on other sites
rubygirl 0 Posted December 6, 2005 Hi , I have just installed v2 all customers report, great contibution!!! I just have a problem with exported to .csv the full complete list of customers in my database. It would seem to be exporting up the letter "C" and I have customers with the name of young. Does anyone know a fix for this problem???? Many Thanks Julian julian@zenastoys.co.uk http://www.zenastoys.co.uk it appears to be an issue with an apostrophe - if there is a last name - for example: O'Brien - when it tries to export - the ' stops the creation .. check and see if that is the problem for you Share this post Link to post Share on other sites
carefreews 0 Posted December 7, 2005 Any solutions to this problem? I just installed this contribution today (Dec 7, 2005) and have the same error others are reporting. :blink: Share this post Link to post Share on other sites
Guest Posted December 11, 2005 I think I know why your list was not completely exported -- I just had the same thing happen to mine, and it gurfed on the apostrophe in one of the addresses ("O'Farrell"). I fixed this in the mirror_out function but I am a clumsy programmer and I'm sure someone could do a much tidier job. I also noticed that it only shows my US and Canadian customers and skips the other foreign customers. I can't fix that at all -- the zone system is a little too clever for me to hack at this point. Share this post Link to post Share on other sites
thewitt 0 Posted December 20, 2005 I think I know why your list was not completely exported -- I just had the same thing happen to mine, and it gurfed on the apostrophe in one of the addresses ("O'Farrell"). I fixed this in the mirror_out function but I am a clumsy programmer and I'm sure someone could do a much tidier job. What did you do to fix this problem, exactly? -t Share this post Link to post Share on other sites
Guest Posted December 20, 2005 What did you do to fix this problem, exactly? -t I copied and pasted from the Web page. I suspect adding an addslashes() in just the right place would fix it. I never figured out why it skips my non-North American customers. Something to do with the Zone system, I expect. Share this post Link to post Share on other sites
Irin 3 Posted December 31, 2005 Hello everybody, I've just installed this contribution. But my list of customers is not complete and I don't have any customers with an apostrophe in either First or Last names as I saw somebody else had a problem with an apostrophe in either names. What can be a solution to this problem? And, is there any way I can display Company in the Heading? Thanks a lot, Irin. Share this post Link to post Share on other sites
desiredin 0 Posted January 4, 2006 I also noticed that it only shows my US and Canadian customers and skips the other foreign customers. I am having the same problem. Works excellent as I wanted to have a contact list for others in my province for upcoming events but I only see US, German, and Canadian customers. Nothing in Australia, Republic of Korea, U.K., Singapore, etc. Share this post Link to post Share on other sites
gregy 1 Posted January 6, 2006 I have installed the version 2 of this Contributions on a Clean osCommerce MS2 2.2 When I'm going to All Customers page I get this error. The query: $customers_query_raw = "SELECT c.customers_id , c.customers_default_address_id, c.customers_email_address, c.customers_fax, c.customers_telephone, a.entry_company, a.address_book_id, a.customers_id, a.entry_firstname, a.entry_lastname, a.entry_street_address, a.entry_suburb, a.entry_city, a.entry_state, a.entry_postcode, a.entry_country_id, a.entry_zone_id, z.zone_code, co.countries_name FROM " . TABLE_CUSTOMERS . " c JOIN " . TABLE_ZONES . " z ON a.entry_zone_id = z.zone_id JOIN " . TABLE_COUNTRIES . " co ON a.entry_country_id = co.countries_id LEFT JOIN " . TABLE_ADDRESS_BOOK . " a ON c.customers_id = a.customers_id and c.customers_default_address_id = a.address_book_id ORDER BY $db_orderby $sorted"; The strange thing is how exactly you have made the succesful installation??? If someone knows where is the error, please post here. Thanks in advance and regards same problem with me PHP Version: 4.3.10 (Zend: 1.3.0) Database: MySQL 3.23.57 ;) .. would need this to get emails of customers from defined postcode .. Share this post Link to post Share on other sites
sakkiotto 0 Posted January 6, 2006 i need the column referral... can you help me? Share this post Link to post Share on other sites
Irin 3 Posted January 6, 2006 Hi everybody, There is something wrong with new functions in admin/includes/functions/ general.php: // Sort Function function tep_sort_order ($orderby, $sorted, $title, $order_criteria){ if (!isset($orderby) or ($orderby == $order_criteria and $sorted == "ASC")) $to_sort = "DESC"; else $to_sort = "ASC"; $link = '<a href="' . tep_href_link(FILENAME_ALL_CUSTOMERS, 'orderby=' . $order_criteria .'&sorted='. $to_sort) . '" class="headerLink">' . $title . '</a>'; return $link; } // Produce CSV string for output function mirror_out ($field) { global $csv_accum; echo $field; $field = strip_tags($field); $field = ereg_replace (",","",$field); if ($csv_accum=='') $csv_accum=$field; else {if (strrpos($csv_accum,chr(10)) == (strlen($csv_accum)-1)) $csv_accum .= $field; else $csv_accum .= "," . $field; }; return; } With the above functions in my general.php, my "Monthly Sales/Tax Report" is not working. I'm getting the following Fatal Error message: Fatal error: Cannot redeclare mirror_out() (previously declared in D:/httpdocs/osCommerce/admin/stats_monthly_sales.php:651) in D:/httpdocs/osCommerce/admin/includes/functions/general.php on line 1484 If I don't add that functions, I'm not getting Customer's Report. The message I'm getting is: Fatal error: Call to undefined function: tep_sort_order() in D:\httpdocs\osCommerce\admin\all_customers.php on line 124 How can I make these two contributions work together, without errors? Any help would be appreciated. Thanks in advance, Irin. Share this post Link to post Share on other sites
Guest Posted January 6, 2006 Irin - - leave those 2 functions in your general.php. The mirror_out function is duplicated at the end of stats_monthly_sales.php. Since it's now in general.php (where it should be) it can be removed from stats_monthly_sales.php without harm. -jared Share this post Link to post Share on other sites
Irin 3 Posted January 6, 2006 Irin - - leave those 2 functions in your general.php. The mirror_out function is duplicated at the end of stats_monthly_sales.php. Since it's now in general.php (where it should be) it can be removed from stats_monthly_sales.php without harm. -jared Thanks a lot, Jared. This was exactly the issue. But I'm still getting just half of my customer's list: USA, Canada and Spain. Customers from other countries are not in the list. How is it possible to add Company column into Heading? Thanks, Irin. Share this post Link to post Share on other sites
Lanelle 0 Posted January 10, 2006 Is there any way to split out the name? I would like to have the first/last names in seperate columns. Share this post Link to post Share on other sites
pafranklin 0 Posted January 10, 2006 (edited) Hi there, I have just installed this contrib and all went fine seemingly. Howevere when I call this report I receive the report page with no customers data at all. Just a blank page with the headers and columns. Would someone please point me in the right direction? Many thanks. Edited January 10, 2006 by pafranklin You will never learn if you don't try. And boy am I trying....! Share this post Link to post Share on other sites
Guest Posted January 12, 2006 I'm havin the exact same output can anyone help? Share this post Link to post Share on other sites
gregy 1 Posted January 15, 2006 (edited) thanx for update of JOIN error .. works like a charm now .. can we split pages ... ? page 1,2,3,4 ... Edited January 15, 2006 by gregy Share this post Link to post Share on other sites
pafranklin 0 Posted January 15, 2006 Hi there, I have just installed this contrib and all went fine seemingly. Howevere when I call this report I receive the report page with no customers data at all. Just a blank page with the headers and columns. Would someone please point me in the right direction? Many thanks. I am still having this problem and it seems I am not the only one.... Please could anyone shed some light so that we can get this really useful contrib working? Many thanks. You will never learn if you don't try. And boy am I trying....! Share this post Link to post Share on other sites
gregy 1 Posted January 16, 2006 hmm . is this export csv working .. my don't .. where should it export data ? Share this post Link to post Share on other sites
RonEnglund 0 Posted January 18, 2006 I am still having this problem and it seems I am not the only one.... Please could anyone shed some light so that we can get this really useful contrib working? Many thanks. You are not the only one, I have the exact same problem. So anyone, if you have any ideas at all it would be much appriciated. If if find a solution I'll post here.. ___________ Ron Share this post Link to post Share on other sites
Guest Posted January 18, 2006 All, I'm sorry I haven't been around to help. I've been much busier than anticipated lately, and have been tied up with other committments. I'll have to install the most current version of this contribution - - I really haven't touched it since my initial version. Those who are getting blank pages, I suggest 2 things: 1) try an older version of the contribution. Do you have the same problem? 2) what type of web server are you running on? Apache, IIS? on Linux? Windows? Which version of PHP are you running? (You can get all this info from admin/server_info.php) -jared Share this post Link to post Share on other sites