Extra info pages e Ultimate_SEO_URLS

Questo forum è dedicato alle discussioni riguardanti le contribution per osCommerce

Moderatore: mod Generali

Rispondi
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Salve, ho un problema urgente da risolvere da sottoporvi.
sto ultimando un ecommerce anche con il contributo Ultimate_SEO_URLS perfettamente funzionante!
Solo adesso però mi sono accorto che la cosa non funziona per il box extra info page. Immagino che la cosa vada definita nel file .haccess oppure da qualche altra parte....ma non ho la più pallida idea come risolverlo. Grazie
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Possibile che nessuno mi sa dare un indicazione di come risolvere il problema??? :cry:
Grazie
maury2ma
membro Master
membro Master
Messaggi: 1669
Iscritto il: 10/02/2006, 14:04
Contatta:

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da maury2ma »

file htaccess:

Codice: Seleziona tutto

# Begin Ultimate SEO V2.2d 
<IfModule mod_rewrite.c>
#  dont work option
#  Options +FollowSymLinks
  RewriteEngine On 
  # RewriteBase instructions 
  # Change RewriteBase dependent on how your shop is accessed as below. 
  # http://www.mysite.com = RewriteBase / 
  # http://www.mysite.com/catalog/ = RewriteBase /catalog/  
  # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ 
  # Change the following line using the instructions above  
  RewriteBase /catalog/
RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING}
RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING}
</IfModule>
# End Ultimate SEO V2.2d
# newsdesk not included
# faqdesk not included


ovvio io ho apportato moltissime modifiche.ùprendi quel che ti serve
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Grazie maury2ma per la risposta... ma purtroppo non funziona ugualmente :( non saprei dov'è il problema!
Forse ho sbagliato io nel formulare la domanda.. quindi provo a postare il link:
Questo è il link al sito non ancora ultimato... http://www.parkideashop.it/catalog/index.php
il box delle pagine aggiuntive è quello azzurro in basso a sinistra... le pagine test, test2

questo invece è il file .haccess:

Codice: Seleziona tutto

# $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
#   AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)

# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers

<IfModule mod_setenvif.c>
  <IfDefine SSL>
    SetEnvIf User-Agent ".*MSIE.*" \
             nokeepalive ssl-unclean-shutdown \
             downgrade-1.0 force-response-1.0
  </IfDefine>
</IfModule>

# If Search Engine Friendly URLs do not work, try enabling the
# following Apache configuration parameter
#
# AcceptPathInfo On

# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
#
#<IfModule mod_php4.c>
#  php_value session.use_trans_sid 0
#  php_value register_globals 1
#</IfModule>

# Begin Ultimate SEO V2.2d 
# Options +FollowSymLinks
RewriteEngine On 

  # RewriteBase instructions 
  # Change RewriteBase dependent on how your shop is accessed as below. 
  # http://www.mysite.com = RewriteBase / 
  # http://www.mysite.com/catalog/ = RewriteBase /catalog/  
  # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ 

  # Change the following line using the instructions above  
  
RewriteBase /catalog/ 

RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING}
RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING}
# End Ultimate SEO V2.2d

Spero di averti dato elementi in più per aiutarmi... grazie Giovanni :)
maury2ma
membro Master
membro Master
Messaggi: 1669
Iscritto il: 10/02/2006, 14:04
Contatta:

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da maury2ma »

se disabiliti seo url nell'admin poi le info page funzionano ?
non trova gli indirizzi, ma servono piu' info al riguardo.
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Si funzionano anche tutto il resto :(
Se hai bisogno di altre informazioni chiedi pure :) Grazie

Ps. Se ti puor far comodo per capire ho lasciato disabilitato le SEO così puoi verificare anche tu.
maury2ma
membro Master
membro Master
Messaggi: 1669
Iscritto il: 10/02/2006, 14:04
Contatta:

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da maury2ma »

allora mi sa che hai il file SEO URL o vecchio o corrotto.... devi aggiornarlo
di piu' non posso fare.
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Pensavo fosse questa la più recente...provo a cercare una versione nuova... :( speriamo bene
giovannidecup
membro Junior
membro Junior
Messaggi: 9
Iscritto il: 18/10/2010, 19:46

Re: Extra info pages e Ultimate_SEO_URLS

Messaggio da giovannidecup »

Niente da fare!!!!! ho scaricato l'ultima versione ma non è cambiato nulla!!! :( :( :(
Ora non so più che fare. Aiuto!!! GIovanni
Rispondi