Problema con Url Categorie

Postate qui discussioni di carattere generale riguardo a problemi di installazione e configurazione di osCommerce

Moderatore: mod Generali

Rispondi
roberto1972
membro Junior
membro Junior
Messaggi: 3
Iscritto il: 25/10/2009, 16:41

Problema con Url Categorie

Messaggio da roberto1972 »

Salve a tutti,
vi chiedo gentilemente se riuscite a darmi una dritta.
E' da qualche giorno che provo mettere in moto un sito realizzato con Oscommerce, ma sul quale sono state fatte delle personalizzazioni (non da me), e dopo aver configurato i vari configure, sono riuscito a farlo girare in locale, solo che quando clicco su una categoria nell'albero delle categorie (realizzato con lo script di Zapatec) mi manda ad una pagina di errore (404 ....); nel sito viene utilizzato Ultimate SEO URLs v2.1, ma non riesco a capire cosa accade.

Dinuovo vi sono molto grato se potete suggerirmi come muovermi.
dynamo
membro Master
membro Master
Messaggi: 1976
Iscritto il: 13/11/2007, 17:47
Contatta:

Re: Problema con Url Categorie

Messaggio da dynamo »

mai sentito questo script realizzato da Zapatec per cui non ti si può aiutare... posta il codice del file catalog/includes/boxes/categories.php e vediamo un po' :wink:
www.vinidimo.it

visitate e criticate se è il caso... solo con le critiche posso migliorarlo ^_^
roberto1972
membro Junior
membro Junior
Messaggi: 3
Iscritto il: 25/10/2009, 16:41

Re: Problema con Url Categorie

Messaggio da roberto1972 »

Ti invio il codice di categories.php (spero ti possa essere utile) Grazie!
*/

?>

<!-- categories //-->
<tr>
<td>
<?php

$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_CATEGORIES);

new customInfoBoxHeading($info_box_contents, false, false, false, 'categories');

$categories_string = '
<img src="images/ddtemplate/compress.gif" alt=" Espande tutti i nodi ">
<a class="customInfoBoxContent" href="javascript:Zapatec.Tree.all[\'category_tree\'].expandAll();">' . BOX_CATEGORY_OPEN_ALL . '</a> |
<img src="images/ddtemplate/extract.gif" alt=" Comprime tutti i nodi ">
<a class="customInfoBoxContent" href="javascript:Zapatec.Tree.all[\'category_tree\'].collapseAll();">' . BOX_CATEGORY_CLOSE_ALL . '</a>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td valign="bottom" width="100%" height="5" class="BoxLine"></td></tr>
</table>';

$categories_string .= tep_build_zap_category_tree('', 0, $ul_id ='category_tree');

$categories_string .=
'<script type="text/javascript">
new Zapatec.Tree(\'category_tree\', { hiliteSelectedNode: true, initLevel: 0, defaultIcons: \'customIcon\', saveState: true, saveId: \'saveState\', theme : \'default\'});
</script>';

$info_box_contents = array();
$info_box_contents[] = array('text' => $categories_string);

new customInfoBox($info_box_contents, 'id="categories"', 'left');
?>
</td>
</tr>
<!-- categories_eof //-->
dynamo
membro Master
membro Master
Messaggi: 1976
Iscritto il: 13/11/2007, 17:47
Contatta:

Re: Problema con Url Categorie

Messaggio da dynamo »

ma dove hai preso questo codice fatto da Zapatec??? non puoi chiedere a lui per l'assistenza??? cmq la cosa più semplice è mettere o il classico box categorie oppure uno nuovo ;)
www.vinidimo.it

visitate e criticate se è il caso... solo con le critiche posso migliorarlo ^_^
roberto1972
membro Junior
membro Junior
Messaggi: 3
Iscritto il: 25/10/2009, 16:41

Re: Problema con Url Categorie

Messaggio da roberto1972 »

Come avevo anticipato non apportato io le modifiche, e adesso mi trovo a doverlo fa funzionare. Comunque ti ringrazio per la disponibilità. :)
dynamo
membro Master
membro Master
Messaggi: 1976
Iscritto il: 13/11/2007, 17:47
Contatta:

Re: Problema con Url Categorie

Messaggio da dynamo »

il fatto è che di javascript non me ne intendo molto... cmq posta il codice anche del file javascript... magari qualcuno ti aiuta...

cmq ti ripeto la cosa più semplice è sostituire il tuo file categories.php con questo "standard"

Codice: Seleziona tutto

<?php
/*
  $Id: categories.php 1739 2007-12-20 00:52:16Z hpdl $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

  function tep_show_category($counter) {
    global $tree, $categories_string, $cPath_array;

    for ($i=0; $i<$tree[$counter]['level']; $i++) {
      $categories_string .= "  ";
    }

    $categories_string .= '<a href="';

    if ($tree[$counter]['parent'] == 0) {
      $cPath_new = 'cPath=' . $counter;
    } else {
      $cPath_new = 'cPath=' . $tree[$counter]['path'];
    }

    $categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">';

    if (isset($cPath_array) && in_array($counter, $cPath_array)) {
      $categories_string .= '<b>';
    }

// display category name
    $categories_string .= $tree[$counter]['name'];

    if (isset($cPath_array) && in_array($counter, $cPath_array)) {
      $categories_string .= '</b>';
    }

    if (tep_has_category_subcategories($counter)) {
      $categories_string .= '->';
    }

    $categories_string .= '</a>';

    if (SHOW_COUNTS == 'true') {
      $products_in_category = tep_count_products_in_category($counter);
      if ($products_in_category > 0) {
        $categories_string .= ' (' . $products_in_category . ')';
      }
    }

    $categories_string .= '<br>';

    if ($tree[$counter]['next_id'] != false) {
      tep_show_category($tree[$counter]['next_id']);
    }
  }
?>
<!-- categories //-->
          <tr>
            <td>
<?php
  $info_box_contents = array();
  $info_box_contents[] = array('text' => BOX_HEADING_CATEGORIES);

  new infoBoxHeading($info_box_contents, true, false);

  $categories_string = '';
  $tree = array();

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' 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))  {
    $tree[$categories['categories_id']] = array('name' => $categories['categories_name'],
                                                'parent' => $categories['parent_id'],
                                                'level' => 0,
                                                'path' => $categories['categories_id'],
                                                'next_id' => false);

    if (isset($parent_id)) {
      $tree[$parent_id]['next_id'] = $categories['categories_id'];
    }

    $parent_id = $categories['categories_id'];

    if (!isset($first_element)) {
      $first_element = $categories['categories_id'];
    }
  }

  //------------------------
  if (tep_not_null($cPath)) {
    $new_path = '';
    reset($cPath_array);
    while (list($key, $value) = each($cPath_array)) {
      unset($parent_id);
      unset($first_id);
      $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");
      if (tep_db_num_rows($categories_query)) {
        $new_path .= $value;
        while ($row = tep_db_fetch_array($categories_query)) {
          $tree[$row['categories_id']] = array('name' => $row['categories_name'],
                                               'parent' => $row['parent_id'],
                                               'level' => $key+1,
                                               'path' => $new_path . '_' . $row['categories_id'],
                                               'next_id' => false);

          if (isset($parent_id)) {
            $tree[$parent_id]['next_id'] = $row['categories_id'];
          }

          $parent_id = $row['categories_id'];

          if (!isset($first_id)) {
            $first_id = $row['categories_id'];
          }

          $last_id = $row['categories_id'];
        }
        $tree[$last_id]['next_id'] = $tree[$value]['next_id'];
        $tree[$value]['next_id'] = $first_id;
        $new_path .= '_';
      } else {
        break;
      }
    }
  }
  tep_show_category($first_element); 

  $info_box_contents = array();
  $info_box_contents[] = array('text' => $categories_string);

  new infoBox($info_box_contents);
?>
            </td>
          </tr>
<!-- categories_eof //-->
www.vinidimo.it

visitate e criticate se è il caso... solo con le critiche posso migliorarlo ^_^
Avatar utente
marzioscaglione
membro Regular
membro Regular
Messaggi: 204
Iscritto il: 06/08/2007, 14:15
Località: Prato
Contatta:

Re: Problema con Url Categorie

Messaggio da marzioscaglione »

prova a disattivare Ultimate SEO URLs .
http://www.newinformaticworld.com
I gestionali Danea 2009 da noi li trovi a prezzi scontati http://www.newinformaticworld.com/gesti ... _1455.html
Rispondi