Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
  #21  
Old 12-23-2012, 12:49 PM
CAG CheechDogg's Avatar
CAG CheechDogg CAG CheechDogg is offline
 
Join Date: Feb 2012
Location: Riverside, California USA
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr_Mo7ammad View Post
i just saw your comment rightnow
and optimized some images and still
you can retest now and tell me
thanks verymuch

--------------- Added [DATE]1356268685[/DATE] at [TIME]1356268685[/TIME] ---------------

also , do you recommend me image dimensions to use

Good stuff and yes you should get the proper image dimensions and add them. That is going to take some work, maybe a couple of hours but you should do it as well.

Also add the following to your .htaccess file in your forums root. This will help you with the caching:


PHP Code:
#Deny attempts to view the Htaccess file.
<Files .htaccess>
Order allow,deny
Deny from all
</Files>
# BEGIN Browser Caching/Headers
<IfModule mod_mime.c>
    
AddType text/css .css
    AddType application
/x-javascript .js
    AddType text
/richtext .rtf .rtx
    AddType image
/svg+xml .svg .svgz
    AddType text
/plain .txt
    AddType text
/xsd .xsd
    AddType text
/xsl .xsl
    AddType video
/asf .asf .asx .wax .wmv .wmx
    AddType video
/avi .avi
    AddType image
/bmp .bmp
    AddType application
/java .class
    
AddType video/divx .divx
    AddType application
/msword .doc .docx
    AddType application
/x-msdownload .exe
    AddType image
/gif .gif
    AddType application
/x-gzip .gz .gzip
    AddType image
/x-icon .ico
    AddType image
/jpeg .jpg .jpeg .jpe
    AddType application
/vnd.ms-access .mdb
    AddType audio
/midi .mid .midi
    AddType video
/quicktime .mov .qt
    AddType audio
/mpeg .mp3 .m4a
    AddType video
/mp4 .mp4 .m4v
    AddType video
/mpeg .mpeg .mpg .mpe
    AddType application
/vnd.ms-project .mpp
    AddType application
/vnd.oasis.opendocument.database .odb
    AddType application
/vnd.oasis.opendocument.chart .odc
    AddType application
/vnd.oasis.opendocument.formula .odf
    AddType application
/vnd.oasis.opendocument.graphics .odg
    AddType application
/vnd.oasis.opendocument.presentation .odp
    AddType application
/vnd.oasis.opendocument.spreadsheet .ods
    AddType application
/vnd.oasis.opendocument.text .odt
    AddType audio
/ogg .ogg
    AddType application
/pdf .pdf
    AddType image
/png .png
    AddType application
/vnd.ms-powerpoint .pot .pps .ppt .pptx
    AddType audio
/x-realaudio .ra .ram
    AddType application
/x-shockwave-flash .swf
    AddType application
/x-tar .tar
    AddType image
/tiff .tif .tiff
    AddType audio
/wav .wav
    AddType audio
/wma .wma
    AddType application
/vnd.ms-write .wri
    AddType application
/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
    AddType application
/zip .zip
</IfModule>
<
IfModule mod_expires.c>
    
ExpiresActive On
    ExpiresByType text
/css A31536000
    ExpiresByType application
/x-javascript A31536000
    ExpiresByType text
/richtext A3600
    ExpiresByType image
/svg+xml A3600
    ExpiresByType text
/plain A3600
    ExpiresByType text
/xsd A3600
    ExpiresByType text
/xsl A3600
    ExpiresByType video
/asf A31536000
    ExpiresByType video
/avi A31536000
    ExpiresByType image
/bmp A31536000
    ExpiresByType application
/java A31536000
    ExpiresByType video
/divx A31536000
    ExpiresByType application
/msword A31536000
    ExpiresByType application
/x-msdownload A31536000
    ExpiresByType image
/gif A31536000
    ExpiresByType application
/x-gzip A31536000
    ExpiresByType image
/x-icon A31536000
    ExpiresByType image
/jpeg A31536000
    ExpiresByType application
/vnd.ms-access A31536000
    ExpiresByType audio
/midi A31536000
    ExpiresByType video
/quicktime A31536000
    ExpiresByType audio
/mpeg A31536000
    ExpiresByType video
/mp4 A31536000
    ExpiresByType video
/mpeg A31536000
    ExpiresByType application
/vnd.ms-project A31536000
    ExpiresByType application
/vnd.oasis.opendocument.database A31536000
    ExpiresByType application
/vnd.oasis.opendocument.chart A31536000
    ExpiresByType application
/vnd.oasis.opendocument.formula A31536000
    ExpiresByType application
/vnd.oasis.opendocument.graphics A31536000
    ExpiresByType application
/vnd.oasis.opendocument.presentation A31536000
    ExpiresByType application
/vnd.oasis.opendocument.spreadsheet A31536000
    ExpiresByType application
/vnd.oasis.opendocument.text A31536000
    ExpiresByType audio
/ogg A31536000
    ExpiresByType application
/pdf A31536000
    ExpiresByType image
/png A31536000
    ExpiresByType application
/vnd.ms-powerpoint A31536000
    ExpiresByType audio
/x-realaudio A31536000
    ExpiresByType application
/x-shockwave-flash A31536000
    ExpiresByType application
/x-tar A31536000
    ExpiresByType image
/tiff A31536000
    ExpiresByType audio
/wav A31536000
    ExpiresByType audio
/wma A31536000
    ExpiresByType application
/vnd.ms-write A31536000
    ExpiresByType application
/vnd.ms-excel A31536000
    ExpiresByType application
/zip A31536000
</IfModule>
<
IfModule mod_deflate.c>
    <
IfModule mod_setenvif.c>
        
BrowserMatch ^Mozilla/4 gzip-only-text/html
        BrowserMatch 
^Mozilla/4\.0[678no-gzip
        BrowserMatch 
\bMSIE !no-gzip !gzip-only-text/html
        BrowserMatch 
\bMSI[E] !no-gzip !gzip-only-text/html
    
</IfModule>
    <
IfModule mod_headers.c>
        
Header append Vary User-Agent env=!dont-vary
    
</IfModule>
    <
IfModule mod_filter.c>
        
AddOutputFilterByType DEFLATE text/css application/x-javascript text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon
    
</IfModule>
</
IfModule>
<
FilesMatch "\.(css|js|CSS|JS)$">
    <
IfModule mod_headers.c>
        
Header set Pragma "public"
        
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    
</IfModule>
    
FileETag MTime Size
    
<IfModule mod_headers.c>
         
Header set X-Powered-By "Step by Step guide to speed up your VB4 (forum only)"
    
</IfModule>
</
FilesMatch>
<
FilesMatch "\.(rtf|rtx|svg|svgz|txt|xsd|xsl|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|)$">
    <
IfModule mod_headers.c>
        
Header set Pragma "public"
        
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    
</IfModule>
    
FileETag MTime Size
    
<IfModule mod_headers.c>
         
Header set X-Powered-By "Step by Step guide to speed up your VB4 (forum only)"
    
</IfModule>
</
FilesMatch>
<
FilesMatch "\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|DOCX|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|MDB|MID|MIDI|MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA|RAM|SWF|TAR|TIF|TIFF|WAV|WMA|WRI|XLA|XLS|XLSX|XLT|XLW|ZIP)$">
    <
IfModule mod_headers.c>
        
Header set Pragma "public"
        
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    
</IfModule>
    
FileETag MTime Size
    
<IfModule mod_headers.c>
         
Header set X-Powered-By "Step by Step guide to speed up your VB4 (forum only)"
    
</IfModule>
</
FilesMatch>
# End Browser Caching/Headers

<ifModule mod_php4.c>
 
php_value zlib.output_compression 16386
</ifModule
Reply With Quote
  #22  
Old 12-23-2012, 01:26 PM
Dr_Mo7ammad Dr_Mo7ammad is offline
 
Join Date: Dec 2008
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in this page
http://gtmetrix.com/reports/www.allt...y.com/GCWVbCv7
they tell me these instructions but i donot know how to change them
can you help


The following image(s) are missing width and/or height attributes.

http://www.alltebfamily.com/vb/allte...lapse_tcat.gif (Dimensions: 13 x 13) (13 uses)
http://www.alltebfamily.com/vb/allte...apse_thead.gif (Dimensions: 13 x 13) (3 uses)
http://www.alltebfamily.com/vb/allte...s/lastpost.gif (Dimensions: 15 x 10) (60 uses)
http://www.alltebfamily.com/vb/allte.../menu_open.gif (Dimensions: 11 x 7)
http://www.alltebfamily.com/vb/allte...bits_start.gif (Dimensions: 15 x 15)
http://www.alltebfamily.com/vb/allte...misc/stats.gif (Dimensions: 30 x 30)
http://www.alltebfamily.com/vb/allte...hos_online.gif (Dimensions: 30 x 30)
http://www.alltebfamily.com/vb/allte.../forum_new.gif (Dimensions: 50 x 50)
http://www.alltebfamily.com/vb/allte.../forum_old.gif (Dimensions: 50 x 50) (3 uses)
http://www.alltebfamily.com/vb/allte...m_old_lock.gif (Dimensions: 50 x 50) (68 uses)
http://www.alltebfamily.com/vb/allte...bforum_old.gif (Dimensions: 11 x 11) (169 uses)
http://www.alltebfamily.com/vb/images/bulkdownload.gif (Dimensions: 960 x 116)
http://www.alltebfamily.com/vb/images/close1.gif (Dimensions: 55 x 22)
http://www.alltebfamily.com/vb/image...s/1%20(11).gif (Dimensions: 28 x 15) (2 uses)
http://www.alltebfamily.com/vb/image...s/1%20(13).gif (Dimensions: 35 x 16)

--------------- Added [DATE]1356272868[/DATE] at [TIME]1356272868[/TIME] ---------------

oh thanks
where to put in .htaccess
???
Reply With Quote
  #23  
Old 12-23-2012, 01:31 PM
CAG CheechDogg's Avatar
CAG CheechDogg CAG CheechDogg is offline
 
Join Date: Feb 2012
Location: Riverside, California USA
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Check your private messages Buddy...

But the code I gave you add it after all your other code in your .htaccess file...
Reply With Quote
  #24  
Old 12-23-2012, 07:30 PM
Dr_Mo7ammad Dr_Mo7ammad is offline
 
Join Date: Dec 2008
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks very much
i add the code now
and trying to make some changes from the site
but somthings i donot understand


599.5KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce blocking of page rendering.

http://www.mediafire.com/js/master.js?20090 (433.0KiB)
http://www.alltebfamily.com/vb/allteb2012/jquery.js (64.6KiB)
http://www.alltebfamily.com/vb/clien...event.js?v=381 (29.5KiB)
http://www.alltebfamily.com/vb/clien...lobal.js?v=381 (22.1KiB)
http://www.alltebfamily.com/vb/clien...n-min.js?v=381 (10.4KiB)
http://www.alltebfamily.com/vb/mwaextraedit4/poem.js (8.7KiB)
http://www.alltebfamily.com/vb/clien..._menu.js?v=381 (7.8KiB)
http://www.alltebfamily.com/vb/clien...n_md5.js?v=381 (5.2KiB)
http://www.alltebfamily.com/vb/mwaex...t4/gradient.js (4.2KiB)
http://www.alltebfamily.com/vb/allteb2012/tipsy.js (3.7KiB)
http://www.alltebfamily.com/vb/clien...arker.js?v=381 (2.4KiB)
http://www.alltebfamily.com/vb/mwaextraedit4/type.js (2.3KiB)
http://www.alltebfamily.com/vb/mwaextraedit4/rainbow.js (2.2KiB)
http://www.alltebfamily.com/vb/mwaextraedit4/marq.js (1.3KiB)
http://www.alltebfamily.com/vb/index.php (650B of inline JavaScript)
http://www.alltebfamily.com/vb/mwaextraedit4/read.js (581B)
http://www.alltebfamily.com/vb/mwaex...it4settings.js (521B)
http://www.alltebfamily.com/google_analytics_auto.js (253B)



also



The following image(s) are missing width and/or height attributes.

http://www.alltebfamily.com/vb/allte...lapse_tcat.gif (Dimensions: 13 x 13) (13 uses)
http://www.alltebfamily.com/vb/allte...apse_thead.gif (Dimensions: 13 x 13) (3 uses)
http://www.alltebfamily.com/vb/allte...s/lastpost.gif (Dimensions: 15 x 10) (60 uses)
http://www.alltebfamily.com/vb/allte.../menu_open.gif (Dimensions: 11 x 7)
http://www.alltebfamily.com/vb/allte...bits_start.gif (Dimensions: 15 x 15)
http://www.alltebfamily.com/vb/allte...misc/stats.gif (Dimensions: 30 x 30)
http://www.alltebfamily.com/vb/allte...hos_online.gif (Dimensions: 30 x 30)
http://www.alltebfamily.com/vb/allte.../forum_new.gif (Dimensions: 50 x 50)
http://www.alltebfamily.com/vb/allte.../forum_old.gif (Dimensions: 50 x 50) (3 uses)
http://www.alltebfamily.com/vb/allte...m_old_lock.gif (Dimensions: 50 x 50) (68 uses)
http://www.alltebfamily.com/vb/allte...bforum_old.gif (Dimensions: 11 x 11) (169 uses)
http://www.alltebfamily.com/vb/images/bulkdownload.gif (Dimensions: 960 x 116)
http://www.alltebfamily.com/vb/images/close1.gif (Dimensions: 55 x 22)
http://www.alltebfamily.com/vb/image...s/1%20(11).gif (Dimensions: 28 x 15) (2 uses)
http://www.alltebfamily.com/vb/image...s/1%20(13).gif (Dimensions: 35 x 16)
http://www.alltebfamily.com/vb/image...s/1%20(14).gif (Dimensions: 35 x 16)
http://www.alltebfamily.com/vb/images/icons/1%20(4).gif (Dimensions: 64 x 15) (2 uses)
http://www.alltebfamily.com/vb/images/icons/1%20(6).gif (Dimensions: 47 x 24) (2 uses)
http://www.alltebfamily.com/vb/images/icons/1%20(7).gif (Dimensions: 50 x 20) (4 uses)
http://www.alltebfamily.com/vb/images/icons/1%20(8).gif (Dimensions: 40 x 18)
http://www.alltebfamily.com/vb/images/icons/27.gif (Dimensions: 30 x 30)
http://www.alltebfamily.com/vb/images/icons/icon1.gif (Dimensions: 16 x 16) (38 uses)
http://www.alltebfamily.com/vb/images/icons/icon10.gif (Dimensions: 16 x 16)
http://www.alltebfamily.com/vb/images/icons/icon14.gif (Dimensions: 16 x 16) (4 uses)
http://www.alltebfamily.com/vb/images/icons/icon9.gif (Dimensions: 16 x 16)
http://www.alltebfamily.com/vb/images/icons/q%20(1).gif (Dimensions: 35 x 19) (2 uses)
http://www.alltebfamily.com/vb/images/misc/v.gif (Dimensions: 16 x 16) (10 uses)







also




The following images served from alltebfamily.com should be combined into as few images as possible using CSS sprites.

http://www.alltebfamily.com/vb/allte...lapse_tcat.gif
http://www.alltebfamily.com/vb/allte...apse_thead.gif
http://www.alltebfamily.com/vb/allte...s/lastpost.gif
http://www.alltebfamily.com/vb/allte.../menu_open.gif
http://www.alltebfamily.com/vb/allte...bits_start.gif
http://www.alltebfamily.com/vb/allte...misc/stats.gif
http://www.alltebfamily.com/vb/allte...hos_online.gif
http://www.alltebfamily.com/vb/allte...bforum_old.gif
http://www.alltebfamily.com/vb/images/close1.gif
http://www.alltebfamily.com/vb/image...s/1%20(11).gif
http://www.alltebfamily.com/vb/image...s/1%20(13).gif
http://www.alltebfamily.com/vb/image...s/1%20(14).gif
http://www.alltebfamily.com/vb/images/icons/1%20(4).gif
http://www.alltebfamily.com/vb/images/icons/1%20(6).gif
http://www.alltebfamily.com/vb/images/icons/1%20(8).gif
http://www.alltebfamily.com/vb/images/icons/27.gif
http://www.alltebfamily.com/vb/images/icons/icon1.gif
http://www.alltebfamily.com/vb/images/icons/icon10.gif
http://www.alltebfamily.com/vb/images/icons/icon14.gif
http://www.alltebfamily.com/vb/images/icons/icon9.gif







The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:

http://www.alltebfamily.com/google_analytics_auto.js (expiration not specified)
http://www.alltebfamily.com/vb/allte...lapse_tcat.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...apse_thead.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...s/lastpost.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...design/alt.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte.../bbottombg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/bbottoml.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/bbottomr.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/blockbgl.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/blockbgr.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...ign/btopbg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...sign/btopc.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...sign/btopl.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...sign/btopr.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...ign/footbg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...footcenter.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/footleft.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte.../footright.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...ign/header.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/header_l.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/header_r.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/headerbg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...sign/thead.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte.../topmenubg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...sign/vbcbg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allteb2012/jquery.js (expiration not specified)
http://www.alltebfamily.com/vb/allte.../menu_open.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...bits_start.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...misc/stats.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...hos_online.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte.../forum_new.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte.../forum_old.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...m_old_lock.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...bforum_old.gif (expiration not specified)
http://www.alltebfamily.com/vb/allteb2012/tipsy.js (expiration not specified)
http://www.alltebfamily.com/vb/clien...a1d7-00048.css (expiration not specified)
http://www.alltebfamily.com/vb/images/bulkdownload.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/close1.gif (expiration not specified)
http://www.alltebfamily.com/vb/image...s/1%20(11).gif (expiration not specified)
http://www.alltebfamily.com/vb/image...s/1%20(13).gif (expiration not specified)
http://www.alltebfamily.com/vb/image...s/1%20(14).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/1%20(4).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/1%20(6).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/1%20(7).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/1%20(8).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/27.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/icon1.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/icon10.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/icon14.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/icon9.gif (expiration not specified)
http://www.alltebfamily.com/vb/images/icons/q%20(1).gif (expiration not specified)
http://www.alltebfamily.com/vb/images/misc/v.gif (expiration not specified)
http://www.alltebfamily.com/vb/mwaex...t4/gradient.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaextraedit4/marq.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaex...it4settings.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaextraedit4/poem.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaextraedit4/rainbow.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaextraedit4/read.js (expiration not specified)
http://www.alltebfamily.com/vb/mwaextraedit4/type.js (expiration not specified)
http://www.google-analytics.com/ga.js (12 hours)




thanks
Reply With Quote
  #25  
Old 12-23-2012, 08:43 PM
Max Taxable's Avatar
Max Taxable Max Taxable is offline
 
Join Date: Feb 2011
Posts: 3,134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Dude, really. Ditch this custom skin and use the vB default until you get all of these issues worked out. This skin is so poorly designed, it will take a lunation to fix it.
Reply With Quote
  #26  
Old 12-23-2012, 10:49 PM
CAG CheechDogg's Avatar
CAG CheechDogg CAG CheechDogg is offline
 
Join Date: Feb 2012
Location: Riverside, California USA
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's not so much that the custom skin is poorly designed though Max. All of vBulletin's default skins are missing the image dimensions for all of those images which is one of the areas in which Page Speed rates image dimensions as high priority.

Even if he used the default template he would still score low. He needs to implement that caching code I gave him into his .htaccess file and he will see good results and just add the image dimensions to all those images.

They are hard to find but not difficult. The best way for you to find them Dr_Mo7ammad is to copy just the actual image file portion, i.e. (collapse_tcat.gif) and then look for it in your templates by doing a template search in your admin cp.

You can also find the image by doing a search for (misc), (buttons), just depends where the image is located.

You will certainly have to use your head to find these images.

--------------- Added [DATE]1356306841[/DATE] at [TIME]1356306841[/TIME] ---------------

Here is a post I made a while back about how to add the image dimensions once you find the image in the templates:

https://vborg.vbsupport.ru/showthrea...57#post2369857
Reply With Quote
  #27  
Old 12-27-2012, 08:11 AM
Dr_Mo7ammad Dr_Mo7ammad is offline
 
Join Date: Dec 2008
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks
i will do this
-----

what about expiration date

The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:

http://www.alltebfamily.com/google_analytics_auto.js (expiration not specified)
http://www.alltebfamily.com/vb/allte...lapse_tcat.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...apse_thead.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...s/lastpost.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...design/alt.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte.../bbottombg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/bbottoml.jpg (expiration not specified)



thanks
Reply With Quote
  #28  
Old 12-27-2012, 08:18 AM
CAG CheechDogg's Avatar
CAG CheechDogg CAG CheechDogg is offline
 
Join Date: Feb 2012
Location: Riverside, California USA
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To fix that you need to add leverage browser caching, you still have not added the code to your htaccess like I suggested you do in this post:

https://vborg.vbsupport.ru/showpost....6&postcount=21
Reply With Quote
Благодарность от:
Panzer Max
  #29  
Old 12-27-2012, 10:31 AM
Dr_Mo7ammad Dr_Mo7ammad is offline
 
Join Date: Dec 2008
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks
i will do this
-----

what about expiration date

The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:

http://www.alltebfamily.com/google_analytics_auto.js (expiration not specified)
http://www.alltebfamily.com/vb/allte...lapse_tcat.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...apse_thead.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...s/lastpost.gif (expiration not specified)
http://www.alltebfamily.com/vb/allte...design/alt.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte.../bbottombg.jpg (expiration not specified)
http://www.alltebfamily.com/vb/allte...n/bbottoml.jpg (expiration not specified)



thanks

--------------- Added [DATE]1356609962[/DATE] at [TIME]1356609962[/TIME] ---------------

no i put it in .htaccess
Reply With Quote
  #30  
Old 01-10-2013, 05:52 PM
Dr_Mo7ammad Dr_Mo7ammad is offline
 
Join Date: Dec 2008
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i really get bored from hostgator
they resuspend it again more early


Hello,

Unfortunately, we were forced to suspend the script /home/mohammad/public_html/vb as it was causing a high load on the server. Due to this affecting all of the other accounts on the system, we had to take immediate action for the health of the server.

i donont know what to do
i did nearly all things you told me to do?????????????????//

--------------- Added [DATE]1357844577[/DATE] at [TIME]1357844577[/TIME] ---------------

should i change my hostage?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04711 seconds
  • Memory Usage 2,400KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (10)post_thanks_box
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete