Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#26 08-04-2009 08:20:24

sydewayz
Member
Registered: 06-17-2009
Posts: 112
Website

Re: ((( How to reduce website loading time? )))

Actually, I just visited your site and can tell already that it has improved greatly, IMHO. Great stuff!

Offline

 

#27 08-04-2009 12:19:51

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

Thanks John! The seals are exactly when I need them to be. And my code is validated. Yes!

I'm so happy : )

Offline

 

#28 08-04-2009 12:32:37

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

Thank you, Tim.

Yes, the loading time has improved a lot. First, I replaced the full size images of all 72 products that I currently have in the shopping cart with smaller thumbnails (100x133). And then, with the help of the forum community I was able to clean up the code and pass the validation. The website is completely done, now I'm just waiting for Nick to upgrade me to CCP7 sometime this week. I'll officially launch the website as soon as I get the CCP upgrade. One quarter of all the work done on my website was accomplished with the help I received in this forum. Amazing! : )

Offline

 

#29 08-04-2009 16:10:27

sydewayz
Member
Registered: 06-17-2009
Posts: 112
Website

Re: ((( How to reduce website loading time? )))

Glad to have helped. That's what I love about forums. You give and you get.

Congrats

Tim

Offline

 

#30 08-10-2009 09:27:55

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

For some reason, the 3 seals at the end of the page keep moving to the left and to the right. Each time I open my homepage the seals have either moved to the left or to the right but never in the center where there are supposed to be. Could anyone please look up my code and let me know if there is an error of some sort? All I need is for the seals to be centered and stay still.  Thank you!

Code:

<div class="c4">
<table width="850px" border="0" cellspacing="0" cellpadding="8">
<tr>

<td style="width: 50%"> &nbsp; </td> <!-- added cell with blank space for content -->
<td align="center" valign="middle"><script id="siteSeal" type="text/javascript" src="//tracedseals.starfieldtech.com/siteseal/get?scriptId=siteSeal&amp;sealId=107188568b9a07380c2832420d6fdaac4e97a56772567be4d37e141b2a5945c1"></script>
</td>

<td style="width: 1%"> &nbsp; </td> <!-- added cell with blank space for content -->
<td align="center" valign="middle"><span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=bwu3g9Hjb5CHxox2GXnd0mnVH3mzeuvdb3Al55sBLCp2tMQFYSWdhhfBQe">
</script><br />
<a class="c3" href="http://www.godaddy.com/gdshop/ssl/ssl_extended.asp" rel="external">Extended Validation SSL</a></span>
</td>
<td align="center" valign="middle"><!-- (c) 2005, 2009. Authorize.Net is a registered trademark of CyberSource Corporation -->
<div class="AuthorizeNetSeal"><script type="text/javascript">
//<![CDATA[
var ANS_customer_id="6dc1f0a6-84c5-40bc-871e-22cbf0c8fd93";
//]]>
</script> <script type="text/javascript" src="//verify.authorize.net/anetseal/seal.js">
</script> <a href="http://www.authorize.net/" id="AuthorizeNetText" rel="external" name="AuthorizeNetText">Online Payments</a></div>
</td>
<td style="width: 1%"> &nbsp; </td> <!-- added cell here with a blank space for content -->
</tr>
</table>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-10020407-3");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>

P.S. The Google tracked doesn't contribute to the issue since I just added it a few hours ago and the problem with the seals moving back and forth occurred  last week.

P.S.S. I keep adjusting the table width and the td style width. The current values are ones of the many I tried - they all worked for a little bit and then the seals start moving again.

Last edited by OutcastGirls (08-10-2009 09:33:37)

Offline

 

#31 08-10-2009 11:14:28

dh783
Member
From: Avondale, Arizona
Registered: 04-06-2005
Posts: 6233
Website

Re: ((( How to reduce website loading time? )))

You will need to adjust the width of the empty cells, the first cell has a width of 50% which should push the content to the extreme right side of the page. The empty cell should have a width that just take up the remainder that is left over from the displays you want and generally should be the same on both ends. The only reason to make them a percentage is so that they adjust to the page size in the browser, if the customer changes the browsers window size.

John

Offline

 

#32 08-10-2009 11:27:21

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

Thanks John. So should I have something like 25%-5%-25% configuration for the 3 cells? Are all 3 cells empty? Is a value of 0% valid? Sorry, I know my questions are dumb but I'm still learning : )

Offline

 

#33 08-10-2009 12:50:39

dh783
Member
From: Avondale, Arizona
Registered: 04-06-2005
Posts: 6233
Website

Re: ((( How to reduce website loading time? )))

If the empty cell is there just as a space then I would just assign it a fixed width that way it would be constant and you might also want to try assigning fixed width to the other cells. If you know how much space the displays need then you can figure the percentage needed to fill the rest of the table.

John

Offline

 

#34 08-10-2009 12:59:11

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

How do I assign a fixed width? Do I just get rid of the "%" symbol? Also, how do I know which cell is "empty"?

Offline

 

#35 08-10-2009 13:07:22

dh783
Member
From: Avondale, Arizona
Registered: 04-06-2005
Posts: 6233
Website

Re: ((( How to reduce website loading time? )))

If your doing it in the xhtml code it's

Code:

<td style="width: 120px;">

or what ever width you want just put px after the number.

The cells that don't have your seals for content or just the cells that contain a blank space are your empty cells in this case.

John

Offline

 

#36 08-10-2009 13:33:04

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

Thanks. Yeah, I'm making the changes in the html code.

Last edited by OutcastGirls (08-10-2009 13:33:21)

Offline

 

#37 08-12-2009 11:32:32

Blitzen
Member
From: USA
Registered: 01-01-2005
Posts: 936

Re: ((( How to reduce website loading time? )))

If you're concerned about the total bandwidth for your site, then consider banning some bad bots, like VoilaBot that consumes a lot of bandwidth. This bot is from France, and unless you sell to the French, you can safely ban that one.

Look at your site stats to see what's really consuming bandwidth.

There are codes out there for your htaccess to ban some bad bots. Search the Net for something appropriate for you.

Also, if you're on a shared server, then it may not be your website that's causing pages to slowly load. It could be the aggregate of every website on that server consuming the resources.

HTH!

Offline

 

#38 08-12-2009 13:43:23

cyberws
Member
From: Atlanta, GA
Registered: 02-05-2004
Posts: 756

Re: ((( How to reduce website loading time? )))

I put up some performance ideas in the following thread awhile back:

https://forum.kryptronic.com/viewtopic.php?id=24285


Jeremy O

Production CCP .:. Version 6 w/QuickBuy and many in house hacks
Skills: PHP & Perl programming, Solaris & Linux server administration, Oracle OCP training and MySQL experience

Offline

 

#39 08-12-2009 14:08:56

OutcastGirls
Member
From: New York, NY
Registered: 07-16-2009
Posts: 219

Re: ((( How to reduce website loading time? )))

Blitzen,

Where/How can I check the stats of my site to see what is consuming bandwidth the most? Thanks.

Offline

 

#40 08-18-2009 14:40:48

Blitzen
Member
From: USA
Registered: 01-01-2005
Posts: 936

Re: ((( How to reduce website loading time? )))

I don't know where your statistics are. Ask your host. Some will provide detailed stats whereas others provide meager stats. Tell them what you need and ask them where you can find it.

Offline

 

#41 10-23-2010 05:05:26

glentizzard
Member
Registered: 01-03-2007
Posts: 8

Re: ((( How to reduce website loading time? )))

how do I load multiple photos, rather than one at a time.

Offline

 

Board footer