Página 1 de 2

Problemas com google base

Enviado: 08 Fev 2012, 23:08
por ccpv
Meu google base do opencart foi reprovado no google shopping o que fazer :?:

Re: Problemas com google base

Enviado: 09 Fev 2012, 10:08
por Manoel Vidal
Qual a versão do seu OpenCart?
Poderia dar mais detalhes sobre o que deu errado para acontecer a reprovação ?

Re: Problemas com google base

Enviado: 12 Fev 2012, 18:03
por ccpv
Segui o tutorial deste site http://www.surgimento.com.br/blog/openc ... art/#close

E APARECEU QUE MEU GOOGLE BASE NÃO FOI ADD AO SHOPPING GOOGLE :

googlebase-noreply@google.com para mim

mostrar detalhes 00:02 (18 horas atrás)

Nenhum item inserido
Enviado em: 12 de Fevereiro de 2012 0h0min0s BRST
Processado em: 12 de Fevereiro de 2012 0h2min18s BRST

Para obter mais detalhes sobre o status de seu feed de dados, acesse http://www.google.com.br/merchants/show ... id=4447581

Este é um e-mail gerado por computador. Não responda.

Você pode alterar suas configurações de notificação em http://www.google.com.br/merchants/basicsettings

jÁ ALTEREI ALGUMAS COISAS EM MEU SITE E CONTINUOU IGUAL,MEU SITE OPENCART É VERSÃO 1.5.1.3 LINK DO MEU SITE http://companiavirtual.co.cc/ocart

Re: Problemas com google base

Enviado: 12 Fev 2012, 18:04
por ccpv
php echo $title; ?> aparece isto no meu site agora o que pode ser ? :D

Re: Problemas com google base

Enviado: 12 Fev 2012, 18:30
por Manoel Vidal
Olá,

Verifique se no seu arquivo .htaccess que está no diretório raiz da sua loja, existe a seguinte linha:
Código: Selecionar todos
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
Se não tiver acrescente-a após a linha abaixo:
Código: Selecionar todos
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
Espero ter ajudado :D

Re: Problemas com google base

Enviado: 12 Fev 2012, 19:36
por ccpv
Olá achei a seguinte linha no segmento acima :
Código: Selecionar todos
RewriteBase /

RewriteRule sitemap.xml /index.php?route=feed/google_sitemap

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

 Este é todo cód do Htacces:

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled. 



# 2. In your opencart directory rename htaccess.txt to .htaccess.



# For any support issues please visit: http://www.opencart.com



Options +FollowSymlinks



# Prevent Directoy listing 

Options -Indexes



# Prevent Direct Access to files

<FilesMatch "\.(tpl|ini|log)">

 Order deny,allow

 Deny from all

</FilesMatch>



# SEO URL Settings

RewriteEngine On

# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ 



RewriteBase /

RewriteRule sitemap.xml /index.php?route=feed/google_sitemap

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]



### Additional Settings that may need to be enabled for some servers 

### Uncomment the commands by removing the # sign in front of it.

### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.



# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:

# php_flag register_globals off



# 2. If your cart has magic quotes enabled, This may work to disable it:

# php_flag magic_quotes_gpc Off



# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try

# php_value upload_max_filesize 999M



# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value post_max_size 999M



# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_execution_time 200



# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_input_time 200

Re: Problemas com google base

Enviado: 12 Fev 2012, 19:41
por ccpv
No google marca o seguinte :

Erros de rastreamento

URL
http://companiavirtual.co.cc/ocart/admi ... 1cbc3c52c8

Detalhe Detectado
robots.txt inacessível 23/12/2011

Será que não é isso que está impedindo o meu feed no google shopping :?: :|

Re: Problemas com google base

Enviado: 12 Fev 2012, 20:55
por Manoel Vidal
Substitua o conteúdo do seu arquivo .htaccess pelo código abaixo e faça um novo teste:
Código: Selecionar todos
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled. 

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing 
Options -Indexes

# Prevent Direct Access to files
<FilesMatch "\.(tpl|ini|log)">
 Order deny,allow
 Deny from all
</FilesMatch>

# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ 

RewriteBase /ocart/
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

### Additional Settings that may need to be enabled for some servers 
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200
Outro detalhe, a url da loja que você postou está com algum vírus!

Espero ter ajudado :D

Re: Problemas com google base

Enviado: 12 Fev 2012, 23:33
por Renato Frota
robots.txt inacessível.. você precisa incluir um.

pesquise a respeito.

Re: Problemas com google base

Enviado: 15 Fev 2012, 23:13
por ccpv
Pessoal como nosso colega disse,já adicionei um arquivo robot.text

estive verificando em minha conta google base e encontrei o seguinte erro :

Código de resposta inválido. (1 erro)

O servidor remoto retornou um código de resposta inválido.
Exemplos:
URL Código de resposta
http://companiavirtual.co.cc/ocart/inde ... oogle_base 500 :|