dculley Posted May 24, 2015 Share Posted May 24, 2015 Running osc234 and BS Also using to KISS It to image size. Not a live site yet still working out bugs. Need help with one not sure where to look. I imported the following product files from my live site data base. Products, Prod. Descriptions, Prod. Images, Prod. Related products and Prod to categories. I’m getting spree attic image line ups and blank pages from the catalog side. Problem 1: Example one: I have a main category “Designable” under it is 2 sub cat’s, Every Day and Monograms, Click on “Every Day” and all you get is a blank page (before you ask, yes you can go to admin and click the categories and all is there.) Click on Monograms and that part is fine. Problem2: Images are not all showing up in rows and some even have a blank page. Example: Under my main catalog page “Flags” sub category “Inspirational” (this one will show all the examples. You can see the first page shows you 123 then blank, blank, and 4 then 567, 89 10, blank 11 12 etc. then at the bottom you have 4 pages to brose. Click on page 2 all looks fine, Click on page 3 and BLANK you have to go up and click on the back space error click on 4. To see what I am talking about. Go to my test site, www.ladybuggardendecor.com/osc234 What do I need to look for and fix? Dean Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 2nd problem seems easy, you need to turn on equal height divs in Admin - Modules - header tags. 1st problem - have you modified the index.php specifically the queries? Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 If you want to centre the site seal image you can try to replace <div class="panel-body"> with <div class="panel-body text-center"> in /includes/modules/boxes/templates/site_seal.php Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 @@Hotclutch Hi and thank you for helping me. I'm not a programer so I'm not much help in understanding coding. I did take your suggestion and moved the site seal to center, Thank you. I did install the equal height divs in Admin - Modules - header tags, And seemed to complete the line up (YA) but in the example still missing page 3. Here is my code for index.php. I don't see any modifications to it, Don't really remembering touching it with any of the add ins I used. Maybe you can see something, I have no idea what to look for. <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); // the following cPath references come from application_top.php $category_depth = 'top'; if (isset($cPath) && tep_not_null($cPath)) { $categories_products_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id = '" . (int)$current_category_id . "'"); $categories_products = tep_db_fetch_array($categories_products_query); if ($categories_products['total'] > 0) { $category_depth = 'products'; // display products } else { $category_parent_query = tep_db_query("select count(*) as total from " . TABLE_CATEGORIES . " where parent_id = '" . (int)$current_category_id . "'"); $category_parent = tep_db_fetch_array($category_parent_query); if ($category_parent['total'] > 0) { $category_depth = 'nested'; // navigate through the categories } else { $category_depth = 'products'; // category has no products, but display the 'no products' message } } } require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFAULT); require(DIR_WS_INCLUDES . 'template_top.php'); if ($category_depth == 'nested') { $category_query = tep_db_query("select cd.categories_name, c.categories_image from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'"); $category = tep_db_fetch_array($category_query); ?> <div class="page-header"> <h1><?php echo $category['categories_name']; ?></h1> </div> <?php if ($messageStack->size('product_action') > 0) { echo $messageStack->output('product_action'); } ?> <div class="contentContainer"> <div class="contentText"> <div class="row"> <?php if (isset($cPath) && strpos('_', $cPath)) { // check to see if there are deeper categories within the current category $category_links = array_reverse($cPath_array); for($i=0, $n=sizeof($category_links); $i<$n; $i++) { $categories_query = tep_db_query("select count(*) as total from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$category_links[$i] . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "'"); $categories = tep_db_fetch_array($categories_query); if ($categories['total'] < 1) { // do nothing, go through the loop } else { $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$category_links[$i] . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name"); break; // we've found the deepest category the customer is in } } } else { $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$current_category_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name"); } while ($categories = tep_db_fetch_array($categories_query)) { $cPath_new = tep_get_path($categories['categories_id']); echo '<div class="col-xs-6 col-sm-4">'; echo ' <div class="text-center">'; echo ' <a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '</a>'; echo ' <div class="caption text-center">'; echo ' <h5><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">' . $categories['categories_name'] . '</a></h5>'; echo ' </div>'; echo ' </div>'; echo '</div>'; } // needed for the new products module shown below $new_products_category_id = $current_category_id; ?> </div> <br /> <?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?> </div> </div> <?php } elseif ($category_depth == 'products' || (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id']))) { // create column list $define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL, 'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME, 'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER, 'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE, 'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY, 'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT, 'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE, 'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW); asort($define_list); $column_list = array(); reset($define_list); while (list($key, $value) = each($define_list)) { if ($value > 0) $column_list[] = $key; } $select_column_list = ''; for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { switch ($column_list[$i]) { case 'PRODUCT_LIST_MODEL': $select_column_list .= 'p.products_model, '; break; case 'PRODUCT_LIST_NAME': $select_column_list .= 'pd.products_name, '; break; case 'PRODUCT_LIST_MANUFACTURER': $select_column_list .= 'm.manufacturers_name, '; break; case 'PRODUCT_LIST_QUANTITY': $select_column_list .= 'p.products_quantity, '; break; case 'PRODUCT_LIST_IMAGE': $select_column_list .= 'p.products_image, '; break; case 'PRODUCT_LIST_WEIGHT': $select_column_list .= 'p.products_weight, '; break; } } // show the products of a specified manufacturer if (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id'])) { if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) { // We are asked to show only a specific category $listing_sql = "select " . $select_column_list . " p.products_id, SUBSTRING_INDEX(pd.products_description, ' ', 20) as products_description, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "'"; } else { // We show them all $listing_sql = "select " . $select_column_list . " p.products_id, SUBSTRING_INDEX(pd.products_description, ' ', 20) as products_description, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m where p.products_status = '1' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'"; } } else { // show the products in a given categorie if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) { // We are asked to show only specific catgeory $listing_sql = "select " . $select_column_list . " p.products_id, SUBSTRING_INDEX(pd.products_description, ' ', 20) as products_description, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$current_category_id . "'"; } else { // We show them all $listing_sql = "select " . $select_column_list . " p.products_id, SUBSTRING_INDEX(pd.products_description, ' ', 20) as products_description, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$current_category_id . "'"; } } if ( (!isset($HTTP_GET_VARS['sort'])) || (!preg_match('/^[1-8][ad]$/', $HTTP_GET_VARS['sort'])) || (substr($HTTP_GET_VARS['sort'], 0, 1) > sizeof($column_list)) ) { for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; break; } } } else { $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= " order by p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_NAME': $listing_sql .= " order by pd.products_name " . ($sort_order == 'd' ? 'desc' : ''); break; case 'PRODUCT_LIST_MANUFACTURER': $listing_sql .= " order by m.manufacturers_name " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_QUANTITY': $listing_sql .= " order by p.products_quantity " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_IMAGE': $listing_sql .= " order by pd.products_name"; break; case 'PRODUCT_LIST_WEIGHT': $listing_sql .= " order by p.products_weight " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_PRICE': $listing_sql .= " order by final_price " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; } } $catname = HEADING_TITLE; if (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id'])) { $image = tep_db_query("select manufacturers_image, manufacturers_name as catname from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'"); $image = tep_db_fetch_array($image); $catname = $image['catname']; } elseif ($current_category_id) { $image = tep_db_query("select c.categories_image, cd.categories_name as catname from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "'"); $image = tep_db_fetch_array($image); $catname = $image['catname']; } ?> <div class="page-header"> <h1><?php echo $catname; ?></h1> </div> <div class="contentContainer"> <?php // optional Product List Filter if (PRODUCT_LIST_FILTER > 0) { if (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id'])) { $filterlist_sql = "select distinct c.categories_id as id, cd.categories_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p2c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' and p.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' order by cd.categories_name"; } else { $filterlist_sql= "select distinct m.manufacturers_id as id, m.manufacturers_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_MANUFACTURERS . " m where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$current_category_id . "' order by m.manufacturers_name"; } $filterlist_query = tep_db_query($filterlist_sql); if (tep_db_num_rows($filterlist_query) > 1) { echo '<div>' . tep_draw_form('filter', FILENAME_DEFAULT, 'get') . '<p align="right">' . TEXT_SHOW . ' '; if (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id'])) { echo tep_draw_hidden_field('manufacturers_id', $HTTP_GET_VARS['manufacturers_id']); $options = array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)); } else { echo tep_draw_hidden_field('cPath', $cPath); $options = array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS)); } echo tep_draw_hidden_field('sort', $HTTP_GET_VARS['sort']); while ($filterlist = tep_db_fetch_array($filterlist_query)) { $options[] = array('id' => $filterlist['id'], 'text' => $filterlist['name']); } echo tep_draw_pull_down_menu('filter_id', $options, (isset($HTTP_GET_VARS['filter_id']) ? $HTTP_GET_VARS['filter_id'] : ''), 'onchange="this.form.submit()"'); echo tep_hide_session_id() . '</p></form></div>' . "\n"; } } include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?> </div> <?php } else { // default page ?> <div class="page-header"> <h1><?php echo HEADING_TITLE; ?></h1> </div> <?php if ($messageStack->size('product_action') > 0) { echo $messageStack->output('product_action'); } ?> <div class="contentContainer"> <div class="alert alert-info"> <?php echo tep_customer_greeting(); ?> </div> <div class="row"> <?php echo $oscTemplate->getContent('index'); ?> </div> <?php if (tep_not_null(TEXT_MAIN)) { ?> <div class="contentText"> <?php echo TEXT_MAIN; ?> </div> <?php } include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </div> <?php } require(DIR_WS_INCLUDES . 'template_bottom.php'); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Did I mention THANK YOU! Dean Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 The code looks to be exactly the same, apart from the home page section at the bottom. Can't say what might be causing the page to break like that. Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 I do not know ether. Thinking it was bad data I re downloaded the data files for Categories and Manufactures from the soon to be old site, and re installed them in the new site to be. Still having the same problem. All the data is coming over but I do not know what is causing the page breaks. And it is in the same spots as before. What is next? Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 I first thought that it might be the code that controls the filter by manufacturer in index.php, however the filter actually still works if you select a manufacturer id to filter by. Try turning the filter off in Admin and see if that makes a difference. Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 What filter? Where in admin am I looking? Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 Configuration - product listing - Display Category/Manufacturer Filter (0=disable; 1=enable) Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 Changed the 1 to 0 and get the same thing. Went the Flags, Inspirational and on page 3 is still blank. Created a new sub category under Designables just to see if it would work. Called it every day designables, added a product and it showed up. Moved a product over it it worked. Still cannot see what is causing it break in pages. Do you need access to the test site admin? PM me and I will get you a pw. Ashley - you seem to know a lot. Can you also help me finding where in admin I can tell it to put product names in descending order? When viewing products in sub categories under admin. Thank You for all your help and reaching out. I hope we can solve it soon. Dean Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 Changed the 1 to 0 and get the same thing. Went the Flags, Inspirational and on page 3 is still blank. Well the filter was working, so didn't really expect that to make a difference. Ashley - you seem to know a lot. Can you also help me finding where in admin I can tell it to put product names in descending order? When viewing products in sub categories under admin. :) Do you mean sorting the products in Admin, by name? I remember there was a contribution for that, don't recall the name now. Is this the only category where this is a problem? Did you use easypopulate by any chance? A misplaced space or character in the easypopulate file, can sometimes cause these type of issues. Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 How do you get wait I said in a box so you can write under it? I just learned about the <> to inter code in. Yes to - I mean products in admin by name. I will also. Misplace spaces. Give me another hint (easypopulate file)? A thought when you said spaces. When I first exported the Prod descriptions data from the old site I had to play around with the options to get descriptions to come down. I had to select remove carriage return/ line feed within columns to get the date file to download within the descriptions. But this is not consistent with the other categories. I don't mind digging, Just point me in the direction you think. Link to comment Share on other sites More sharing options...
Hotclutch Posted May 24, 2015 Share Posted May 24, 2015 How do you get wait I said in a box so you can write under it? I just learned about the <> to inter code in. Use the quote button Misplace spaces. Give me another hint (easypopulate file)? A thought when you said spaces. When I first exported the Prod descriptions data from the old site I had to play around with the options to get descriptions to come down. I had to select remove carriage return/ line feed within columns to get the date file to download within the descriptions. But this is not consistent with the other categories. I don't mind digging, Just point me in the direction you think. Easypopulate is a tool used to import and export data for osCommerce. It does not look like you use it, so don't worry about it. The problem must be with the way you imported the data. Link to comment Share on other sites More sharing options...
dculley Posted May 24, 2015 Author Share Posted May 24, 2015 Use the quote button Easypopulate is a tool used to import and export data for osCommerce. It does not look like you use it, so don't worry about it. The problem must be with the way you imported the data. I tried the quote button, I highlighted the bottom part but it gave me both. I have redone all the files that I imported. After your last conversation I redid the prod description one again and still nothing. Hoping that would do it. No luck. I will keep looking. Thanks again Dean Link to comment Share on other sites More sharing options...
dculley Posted May 25, 2015 Author Share Posted May 25, 2015 Found the cause. Picture Size. Evan using KISS It. It is not the front picture, KISS it will down size it to the sittings in the Admin/image. It is the larger picture. Some how in the back ground it stills effects the foreground. Keeping the larger picture with in 450 x 600 seems to work. Link to comment Share on other sites More sharing options...
ArtcoInc Posted May 25, 2015 Share Posted May 25, 2015 @@dculley I'm still seeing an intermittent issue on your site ... When I first visit your site, if I click on, say, 'Designables', I will be taken to the Designables category. But sometimes, the left column, right column, and footer do not show. If I refresh the page, the page will load properly (at least, it did when I just tested it). Just tested this using Firefox v38 and Chrome 43. Malcolm Link to comment Share on other sites More sharing options...
dculley Posted May 25, 2015 Author Share Posted May 25, 2015 @@ArtcoInc Thanks for coming in. I use Firefox for the 98% of my testing. Trying to find out the reason now. All the other issues with no images and blank pages with the other sections are gone. Just the one Designables, seems to be still having an issue, seems to be just the main catalog page. The sub-categories seem to be working. I still have not gone live with the new site. Still want to work out the hiccups. Any ideas on this work not work category? Dean Link to comment Share on other sites More sharing options...
dculley Posted May 31, 2015 Author Share Posted May 31, 2015 Found that it was one category that I still had not fixed the images. Once I fixed the large image size to 450 x 600 it seemed to clear up the problem. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.