Major FTP issue

Status
Not open for further replies.

techiegi

New Member
Messages
29
Reaction score
0
Points
1
When I replace a file in FTP filezilla uploads the it says updated but when I look at the file it hasn't changed..
 

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
when I look at the file it hasn't changed
I assume you "look" was on your Web site...

x10hosting recently implemented a different web-server-software setup on their free-hosting servers - which is a combination of the Apache web server and the Varnish cache server
the cache server maybe why there is a delay before you 'see' the file - after you upload it - or see a new 'post'
the caching time (delay) is about 5 seconds for dynamic content and about 5 minutes for static content

staff has said - to override [ Varnish cache ] try adding the following line to your [ .htaccess ] file in folder [ public_html ]
Code:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"

You can also check at [ http://isvarnishworking.com ] to see if the .htaccess modification is working. It should say "Yes! Sort of." and then you should see the Cache-Control header underneath

for information about that see --> [ https://x10hosting.com/support/general/varnish-cache ]
 

techiegi

New Member
Messages
29
Reaction score
0
Points
1
I assume you "look" was on your Web site...

x10hosting recently implemented a different web-server-software setup on their free-hosting servers - which is a combination of the Apache web server and the Varnish cache server
the cache server maybe why there is a delay before you 'see' the file - after you upload it - or see a new 'post'
the caching time (delay) is about 5 seconds for dynamic content and about 5 minutes for static content

staff has said - to override [ Varnish cache ] try adding the following line to your [ .htaccess ] file in folder [ public_html ]
Code:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"

You can also check at [ http://isvarnishworking.com ] to see if the .htaccess modification is working. It should say "Yes! Sort of." and then you should see the Cache-Control header underneath

for information about that see --> [ https://x10hosting.com/support/general/varnish-cache ]
That is very annoying...
also I dont have a .htaccess in public html..
 

techiegi

New Member
Messages
29
Reaction score
0
Points
1
I assume you "look" was on your Web site...

x10hosting recently implemented a different web-server-software setup on their free-hosting servers - which is a combination of the Apache web server and the Varnish cache server
the cache server maybe why there is a delay before you 'see' the file - after you upload it - or see a new 'post'
the caching time (delay) is about 5 seconds for dynamic content and about 5 minutes for static content

staff has said - to override [ Varnish cache ] try adding the following line to your [ .htaccess ] file in folder [ public_html ]
Code:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"

You can also check at [ http://isvarnishworking.com ] to see if the .htaccess modification is working. It should say "Yes! Sort of." and then you should see the Cache-Control header underneath

for information about that see --> [ https://x10hosting.com/support/general/varnish-cache ]
Created the file and it worked! Thanks alot.
 
Status
Not open for further replies.
Top