I got another problem. I notice it keeps loading forever if i try to save it.... What does this mean? Do I need to enable something or...?
I got another problem. I notice it keeps loading forever if i try to save it.... What does this mean? Do I need to enable something or...?
|
what the heck is going on? Anyone can't login now. It keeps saying. "Error! Your username or password was incorrect. Please try again."
but it's not true.. I think the loading part isn't working.. UGH! I'm starting to HATE webmin now! Any ideas? |
never mind.. it's fixed. |
And the cause was? https://www.deanbassett.com |
well... I found this from somewhere here and placed it in .htaccess and hoping it would run the site a bit faster. I didn't know this was the problem. I'm not sure why. I used this.....
////////////////////////////////////////////////////// # BEGIN Compress text files <IfModule mod_deflate.c> # Insert filter SetOutputFilter DEFLATE <IfModule mod_setenvif.c> # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Don't compress images/archives/music/video/etc SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary </IfModule> <IfModule mod_headers.c> # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </IfModule> </IfModule> # END Compress text files
# BEGIN Expire headers <ifModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType image/x-icon "access plus 2419200 seconds" ExpiresByType image/jpeg "access plus 604800 seconds" ExpiresByType image/png "access plus 604800 seconds" ExpiresByType image/gif "access plus 604800 seconds" ExpiresByType application/x-shockwave-flash "access plus 604800 seconds" ExpiresByType text/css "access plus 10800 seconds" ExpiresByType text/javascript "access plus 5 seconds" ExpiresByType application/javascript "access plus 5 seconds" ExpiresByType application/x-javascript "access plus 5 seconds" ExpiresByType text/html "access plus 5 seconds" ExpiresByType application/xhtml+xml "access plus 5 seconds" </ifModule> # END Expire headers ///////////////////////////////////////////// |
When apache was updated, those modules, mod_deflate and mod_expires may not have been installed, updated or activated. https://www.deanbassett.com |
sigh yeah.. i learned my lesson. i will never ever do that again. |