lol_easy
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Automate this pluginYeah I am using this at the moment. https://www.ads-software.com/plugins/automatic-youtube-video-posts/
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] buttons missing?I am using the customizr theme (bootstrap) and don’t have the buttons.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] buttons missing?I have the same problem it is my first time to install it those buttons are missing.
Forum: Fixing WordPress
In reply to: moved wp to new hostHere is my .htaccess. Looking at it now should I change the rewriterule line ?
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /deer02/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /deer02/index.php [L] </IfModule> # END WordPress # BEGIN wtwp_cache <IfModule mod_mime.c> # Text AddType text/css .css AddType application/x-javascript .js AddType text/html .html .htm AddType text/richtext .rtf .rtx AddType text/plain .txt AddType text/xml .xml # Image AddType image/gif .gif AddType image/x-icon .ico AddType image/jpeg .jpg .jpeg .jpe AddType image/png .png AddType image/svg+xml .svg .svgz # Video AddType video/asf .asf .asx .wax .wmv .wmx AddType video/avi .avi AddType video/quicktime .mov .qt AddType video/mp4 .mp4 .m4v AddType video/mpeg .mpeg .mpg .mpe # PDF AddType application/pdf .pdf # Flash AddType application/x-shockwave-flash .swf # Font AddType application/x-font-ttf .ttf .ttc AddType application/vnd.ms-fontobject .eot AddType application/x-font-otf .otf # Audio AddType audio/mpeg .mp3 .m4a AddType audio/ogg .ogg AddType audio/wav .wav AddType audio/wma .wma # Zip/Tar AddType application/x-tar .tar AddType application/x-gzip .gz .gzip AddType application/zip .zip </IfModule> <IfModule mod_expires.c> ExpiresActive On # Text ExpiresByType text/css A31536000 ExpiresByType application/x-javascript A31536000 ExpiresByType text/html A3600 ExpiresByType text/richtext A3600 ExpiresByType text/plain A3600 ExpiresByType text/xml A3600 # Image ExpiresByType image/gif A31536000 ExpiresByType image/x-icon A31536000 ExpiresByType image/jpeg A31536000 ExpiresByType image/png A31536000 ExpiresByType image/svg+xml A31536000 # Video ExpiresByType video/asf A31536000 ExpiresByType video/avi A31536000 ExpiresByType video/quicktime A31536000 ExpiresByType video/mp4 A31536000 ExpiresByType video/mpeg A31536000 # PDF ExpiresByType application/pdf A31536000 # Flash ExpiresByType application/x-shockwave-flash A31536000 # Font ExpiresByType application/x-font-ttf A31536000 ExpiresByType application/vnd.ms-fontobject A31536000 ExpiresByType application/x-font-otf A31536000 # Audio ExpiresByType audio/mpeg A31536000 ExpiresByType audio/ogg A31536000 ExpiresByType audio/wav A31536000 ExpiresByType audio/wma A31536000 # Zip/Tar ExpiresByType application/x-tar A31536000 ExpiresByType application/x-gzip A31536000 ExpiresByType application/zip A31536000 </IfModule> <FilesMatch "\.(?i:css|js|htm|html|rtf|rtx|txt|xml|gif|ico|jpg|jpeg|jpe|png|svg|svgz|asf|asx|wax|wmv|wmx|avi|mov|qt|mp4|m4v|mpeg|mpg|mpe|pdf|swf|ttf|ttc|eot|otf|mp3|m4a|ogg|wav|wma|tar|gz|gzip|zip)$"> <IfModule mod_headers.c> Header set Pragma "public" Header append Cache-Control "public, must-revalidate, proxy-revalidate" Header unset ETag </IfModule> </FilesMatch> <FilesMatch "\.(?i:css|js|gif|ico|jpg|jpeg|jpe|png|pdf|swf|ttf|ttc|eot|otf)$"> <IfModule mod_headers.c> Header unset Set-Cookie </IfModule> </FilesMatch> # END wtwp_cache # BEGIN wtwp_security <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /deer02/ RewriteRule ^wp-admin/includes/ - [F,L] RewriteRule !^wp-includes/ - [S=3] RewriteRule ^wp-includes/[^/]+\.php$ - [F,L] RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L] RewriteRule ^wp-includes/theme-compat/ - [F,L] </IfModule> <Files "wp-config.php"> Order allow,deny Deny from all </Files> Options -Indexes # END wtwp_security
Forum: Fixing WordPress
In reply to: moved wp to new hostI followed the instructions that Krishna posted, but still have a problem.
I don’t get 404 I get
internal server error– I did not have the original index.html left in /main so I copied the one in the root an removed the /main line in it.
– I did not have a .htaccess file in the root so I copied the one from /main to there.
I cannot access the permalinks in admin so I replaced this line as per the instructions.
function got_mod_rewrite() {
//$got_rewrite = apache_mod_loaded(‘mod_rewrite’, true); //old line with false negative;
$got_rewrite = true;//force the response to true as we know mod_rewite is installed;
return apply_filters(‘got_rewrite’, $got_rewrite);
}I am using godaddy hosting and it allows .htaccess files ( i am copying the ones from the first host )
Forum: Fixing WordPress
In reply to: moved wp to new hostI had it in a directory call xxx.com/deer02 and moved it to the new domain into deerparkcentre.com/main. I moved the index file to the root and changed it so that it points to the main.
I am a sure that it is the permalinks causing the problem.
I used search-replace DB to change the urls and that is fine.
I can’t login to look at settings but they look fine in the db.