[Pfsense-pt] RES: Mensagem de erro!

2017-02-16 Por tôpico Glênio Côrtes Himmen
Não tem a guia Internet, temos as guias Elements, Console, Sources, Network,
Timeline, Profiles, Resources, Security e Audits.

A url é
https://172.16.0.126/sgerror.php?url=403%20=172.16.0.92=172.16.0.92=cl
esio.silva=postura=blk_BL_porn=http://www.playboy.com.br/

E o código HTML apresentado no F12 é:


  

  
  
Não é
possível acessar esse site
172.16.0.126 demorou muito para
responder.
ERR_CONNECTION_TIMED_OUT
  


  

Recarregar





  
  Detalhes


  
Verifique sua conexão com a Internet
Verifique todos os cabos e reinicie todos os roteadores,
modens ou outros
dispositivos de rede que você estiver usando.
  
Permitir que o Google Chrome acesse a rede em suas
configurações de
firewall ou antivírus.
Se ele já estiver listado como um programa que tem permissão
para acessar a rede, tente
removê-lo da lista e adicioná-lo novamente.
  
Se você usa um servidor proxy...
Verifique suas configurações de proxy ou entre em contato com
o administrador de rede para
  verificar se o servidor proxy está funcionando. Se você acredita que
não deve
  usar um servidor proxy:
  Vá para
  o menu do Google Chrome 
  Configurações
  
  Mostrar
configurações avançadas...
  
  Alterar configurações
de proxy...
  
  Configurações da LAN
  e desmarque a opção "Usar um servidor proxy para a rede
local".
  
  Diagnosticar erros...
  
  


  
  

  

  

  
  


O tempo limite da operação foi atingido.
  

  



  
  
  

  


// Copyright (c) 2012 The Chromium Authors. All rights
reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/**
 * @fileoverview This file defines a singleton which provides access to all
data
 * that is available as soon as the page's resources are loaded (before DOM
 * content has finished loading). This data includes both localized strings
and
 * any data that is important to have ready from a very early stage (e.g.
things
 * that must be displayed right away).
 */

/** @type {!LoadTimeData} */ var loadTimeData;

// Expose this type globally as a temporary work around until
// https://github.com/google/closure-compiler/issues/544 is fixed.
/** @constructor */
function LoadTimeData() {}

(function() {
  'use strict';

  LoadTimeData.prototype = {
/**
 * Sets the backing object.
 *
 * Note that there is no getter for |data_| to discourage abuse of the
form:
 *
 * var value = loadTimeData.data()['key'];
 *
 * @param {Object} value The de-serialized page data.
 */
set data(value) {
  expect(!this.data_, 'Re-setting data.');
  this.data_ = value;
},

/**
 * Returns a JsEvalContext for |data_|.
 * @returns {JsEvalContext}
 */
createJsEvalContext: function() {
  return new JsEvalContext(this.data_);
},

/**
 * @param {string} id An ID of a value that might exist.
 * @return {boolean} True if |id| is a key in the dictionary.
 */
valueExists: function(id) {
  return id in this.data_;
},

/**
 * Fetches a value, expecting that it exists.
 * @param {string} id The key that identifies the desired value.
 * @return {*} The corresponding value.
 */
getValue: function(id) {
  expect(this.data_, 'No data. Did you remember to include
strings.js?');
  var value = this.data_[id];
  expect(typeof value != 'undefined', 'Could not find value for ' + id);
  return value;
},

/**
 * As above, but also makes sure that the value is a string.
 * @param {string} id The key that identifies the desired string.
 * @return {string} The corresponding string value.
 */
getString: function(id) {
  var value = this.getValue(id);
  expectIsType(id, value, 'string');
  return /** @type {string} */ (value);
},

/**
 * Returns a formatted localized string where $1 to $9 are replaced by
the
 * second to the tenth argument.
 * @param {string} id The ID of the string we want.
 * @param {...(string|number)} var_args The extra values to include in
the
 * formatted output.
 * @return {string} The formatted string.
 */
getStringF: function(id, var_args) {
  var value = this.getString(id);
  if (!value)
return '';

  var varArgs = arguments;
  return value.replace(/\$[$1-9]/g, function(m) {
return m == '$$' ? '$' : varArgs[m[1]];
  });
},

/**
 * As above, but also makes sure that the value is a boolean.
 * @param {string} id 

[Pfsense-pt] RES: Mensagem de erro!

2017-02-15 Por tôpico Glênio Côrtes Himmen
Ok, amanhã mesmo vou providenciar esta resposta.

Glênio Côrtes Himmen
Secretaria Municipal de Mobilidade e Transporte de Aparecida
glenio.him...@aparecida.go.gov.br


-Mensagem original-
De: Pfsense-pt [mailto:pfsense-pt-boun...@lists.pfsense.org] Em nome de
Danilo Bondezan
Enviada em: terça-feira, 14 de fevereiro de 2017 21:03
Para: Lista em Português sobre pfSense
Assunto: Re: [Pfsense-pt] Mensagem de erro!

Boa noite,

F12 no chrome, vai abrir o modo de inspeção, clica na guia internet, da um
F5 na pagina e ve o que acontece, qual status code ta retornando, assim fica
um pouco mais fácil de debugar.

Em 14 de fevereiro de 2017 16:56, Glênio Côrtes Himmen <
glenio.him...@aparecida.go.gov.br> escreveu:

> Pessoal,
>
>
>
> Estou com um probleminha com o squidguard.
>
>
>
> Ao acessar sites bloqueados, deveria aparecer a mensagem que está no 
> arquivo sgerror.php que foi personalizado conforme matéria que vi na 
> Internet.
>
>
>
> Só que este arquivo só está funcionando no computador que eu utilizo, 
> nos demais ele fica pensando até ocorrer o timeout.
>
>
>
> Na linha do browse eu consigo ver que ele está chamando o arquivo mas 
> não aparece conforme aparece no meu.
>
>
>
> Estou enviando o print da minha tela com a mensagem de erro.
>
>
>
> Glênio Côrtes Himmen
>
> Secretaria Municipal de Mobilidade e Transporte de Aparecida
>
> glenio.him...@aparecida.go.gov.br
>
>
>
> ___
> Pfsense-pt mailing list
> Pfsense-pt@lists.pfsense.org
> http://lists.pfsense.org/mailman/listinfo/pfsense-pt
>



-- 



Danilo Bondezan
Gestor de TI
+55 (48) 9 8441-4471
Linux ID: LPI000257302
Skype: ldcdanilo90
___
Pfsense-pt mailing list
Pfsense-pt@lists.pfsense.org
http://lists.pfsense.org/mailman/listinfo/pfsense-pt

___
Pfsense-pt mailing list
Pfsense-pt@lists.pfsense.org
http://lists.pfsense.org/mailman/listinfo/pfsense-pt