Seiro
Forum Replies Created
-
Hi @adamlabs
Thank you so much for nice support.
Forum: Installing WordPress
In reply to: Installation problems with WordPressHi @chaffydesigns ,
It means that Username, host or password is written wrong in config.php
You can find it in Hosting, or contact your hosting service.OK thank you
Thanks a lot!
Forum: Fixing WordPress
In reply to: cache on custom fieldsHello,
Here is how you disable cache on htaccess file.
Example #1:
<FilesMatch "\.(css|flv|gif|htm|html|ico|jpe|jpeg|jpg|js|mp3|mp4|png|pdf|swf|txt)$"> <IfModule mod_expires.c> ExpiresActive Off </IfModule> <IfModule mod_headers.c> FileETag None Header unset ETag Header unset Pragma Header unset Cache-Control Header unset Last-Modified Header set Pragma "no-cache" Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT" </IfModule> </FilesMatch>
Example# 2
# DISABLE CACHING <IfModule mod_headers.c> Header set Cache-Control "no-cache, no-store, must-revalidate" Header set Pragma "no-cache" Header set Expires 0 </IfModule>
Let me know if you have any questions.
Forum: Fixing WordPress
In reply to: cache on custom fieldsHi, you can clean browser cache with ctrl+f5 , Also You may write to your hosting company and tell them to disable your website cache, and check if you use any cache plugin on your website?
Forum: Fixing WordPress
In reply to: WordPress Memory ProblemsYou can write your hosting company and tell them to change memory size or you can find php.ini file in your cPanel and change it.
Exampleini_set('memory_limit', '1024M'); // or you could use 1G
If you have other questions feel free to ask.