473,382 Members | 1,665 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Zonealarm

Hi

Can anyone please tell me why the following code gets changed by
(presume zonealarm ) so that the browser source code reads
differently? I have no idea, only that it seems that images under a
certain pixel width and height get tagged as web bugs - even if they
arent.
It sure spoils the look of the sites using small images in their
designs.

Using xp pro with IE, Netscape and firefox,with zone alarm security
suite web bugs turned on. If i turn it off, all is well, however it
is a problem that other people may not know to do this, and the site
will look a real mess.

Tia

Kitty
Jul 24 '05 #1
3 2427
Gazing into my crystal ball I observed Kitty <fo****@it.com> writing in
news:h3********************************@4ax.com:
Hi

Can anyone please tell me why the following code gets changed by
(presume zonealarm ) so that the browser source code reads
differently? I have no idea, only that it seems that images under a
certain pixel width and height get tagged as web bugs - even if they
arent.
It sure spoils the look of the sites using small images in their
designs.

Using xp pro with IE, Netscape and firefox,with zone alarm security
suite web bugs turned on. If i turn it off, all is well, however it
is a problem that other people may not know to do this, and the site
will look a real mess.

Tia

Kitty


I have Kerio firewall, and it puts "Add Blocked By KFC". My hosts file
also blocks a lot of ads and images. As a matter of fact, I changed my 404
page to read, "Doh! The website is not found!", so I'm used to not seeing
some images, and I don't miss them at all. Both of those methods probably
also remove "bugs" as well.

I know that firewalls and ad blockers look for certain criteria, size,
image name and URL. For example, <img
src="http://www.doubleclick.net/banner.gif" width="468" height="60"> would
fulfill all three and certainly be blocked. Your only options, I would
imagine, would be to size the images so they are not flagged that way, or
to advise your visitors that some images may be construed as bugs and if
the visitor wants to see them, then turn off the firewall.
--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 24 '05 #2
Thanks!

I have found plenty of info on this subject, but never been able to
find the specific criteria

Here the code for some of the images witch want show. Is there any
other way to get around this problem?

<td align="center" colspan="5"><img src="img/top.gif" width="519"
height="51"></td>

and

<p class="text12"><img src="img/paint.jpg" width="260" height="131"
border="1">
Thanks again!!
On Thu, 07 Apr 2005 20:33:02 GMT, Adrienne <ar********@sbcglobal.net>
wrote:
Gazing into my crystal ball I observed Kitty <fo****@it.com> writing in
news:h3********************************@4ax.com :
Hi

Can anyone please tell me why the following code gets changed by
(presume zonealarm ) so that the browser source code reads
differently? I have no idea, only that it seems that images under a
certain pixel width and height get tagged as web bugs - even if they
arent.
It sure spoils the look of the sites using small images in their
designs.

Using xp pro with IE, Netscape and firefox,with zone alarm security
suite web bugs turned on. If i turn it off, all is well, however it
is a problem that other people may not know to do this, and the site
will look a real mess.

Tia

Kitty


I have Kerio firewall, and it puts "Add Blocked By KFC". My hosts file
also blocks a lot of ads and images. As a matter of fact, I changed my 404
page to read, "Doh! The website is not found!", so I'm used to not seeing
some images, and I don't miss them at all. Both of those methods probably
also remove "bugs" as well.

I know that firewalls and ad blockers look for certain criteria, size,
image name and URL. For example, <img
src="http://www.doubleclick.net/banner.gif" width="468" height="60"> would
fulfill all three and certainly be blocked. Your only options, I would
imagine, would be to size the images so they are not flagged that way, or
to advise your visitors that some images may be construed as bugs and if
the visitor wants to see them, then turn off the firewall.


Jul 24 '05 #3
Kitty wrote:
Thanks!

I have found plenty of info on this subject, but never been able to
find the specific criteria

Here the code for some of the images witch want show. Is there any
other way to get around this problem?
The code snippets provided provide no indication about why the images
fail to load. It helps if you provide a URL so we can actually look at
the document to see if they do load or not, and then work from there.
However, there are plenty of other markup problems I can assist you with.
<td align="center" colspan="5"><img src="img/top.gif" width="519"
height="51"></td>
The align attribute is deprecated in favour of CSS. However, its
presence, the large colspan value combined with the fact that this cell
contains an image named "top.gif" without any alternate text, suggests
that you are, more than likely, using tables for layout. Stop it! Mark
up your document semantically, using tables for tabular data only and
use CSS for style and layout.

The image also requires alternate text to be specified. Given that it's
a layout table, and it's named top.gif, it would appear that it's
nothing more than presentation. In which case, you should set the alt
attribute to alt="". If it is more than just presentation, the alt text
should serve the same purpose as the image for user agents where images
are unavailable.
<p class="text12"><img src="img/paint.jpg" width="260" height="131"
border="1">


This image (and any others in your document) also needs alt text to be
specified.

The border attribute is deprecated also, it should be specified using CSS.

The class attribute on the p element seems odd. It doesn't appear to
have any useful semantic meaning, and while it's not actually specifying
exact presentation, the need for numbered classes is rare. Although, it
is difficult to tell for sure, but you should evaluate whether it is
simply being used as a presentational hook, or whether it actually has
some semantic relevance.

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Jul 24 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Steve House | last post by:
I just installed VB Net Resource Kit on my XP machine with ZoneAlarm 4.5 Pro, permitted cookies & private header with msdn.microsoft.com, but still can't get the solutions pages unless I disable...
1
by: BillG | last post by:
When I am testing web applications on my local machine which is running IIS. I seem to have problems with session variables being lost. I have narrowed the problem down to my firewall protection...
2
by: Jeff S | last post by:
No question here; just information that anyone running ZoneAlarm on a development machine may find useful as you develop your ASP.NET apps - (or for those of you who are assisting users who may be...
0
by: Andla Rand | last post by:
Hi, I had some serious trouble with RedirectFromLoginPage and to store a cookie on my machine. I had to configure ZoneAlarm to make it work. Now I'm thinking if I'm using form authoratization with...
4
by: Lauchlan M | last post by:
All of a sudden, with ASP.NET 1.1 one happily installed and working, VS.NET tells me "Visual studio.net has detected that the specified web server is not running asp.net version 1.1. You will be...
3
by: VB Programmer | last post by:
Running ZoneAlarm version 5.1.033.000 because the newest version (as you all know) hangs up ASP.NET in development mode. Anyways, I'm developing a project and most pages work fine, when...
1
by: Jon | last post by:
After doing a build/rebuild, I can't run my Web apps. The browser waits for me to shut down Zone Alarm. Other applications don't respond until I do. aspnet, vs, and the compilers have internet...
6
by: Brett | last post by:
I've created a new ASP.NET application. When I preview my aspx webpage in VS.NET 2003, it will freeze my machine. Not every time. Sometimes on the first preview, sometimes on the forth. Any...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.