David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't upload mp4 files via media uploadDo it this way. Use FTP and upload the file to your “wpadmin/uploads” folder then using this plugin “https://wordpress.org/plugins/add-from-server/” you can add it to your media inside WP. It does work and you bypass the size restrictions.
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedI use BulletProof Security Pro on all my sites. Since installing it no one has managed to hack them, add users or files, or access the DB. It’s a very good plugin with excellent support. THere is a free version also. Any time a file that isn’t already on the site is added, it get’s quarantined immediately, then I have the option to keep it or delete it. You can white list certain folders like the child theme so it isn’t affected. But this plugin is the best in my book.
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedHopefully when you figure it out, you’ll post it here.
Forum: Fixing WordPress
In reply to: WordPress sponsors in my homepageWhat hosting companies are doing that. There should be a blacklist of hosts that add unauthorized content to sites.
Forum: Fixing WordPress
In reply to: Website crashedThat is coming from your Cpanel Installatron. My guess you are trying to access your dashboard from your Cpanel. You should be able to get to your site from /WP-ADMIN. You should also contact GoDaddy hosting department for help with this issue. They will help you fix it.
Forum: Fixing WordPress
In reply to: Child Theme custom CSS not workingIt looks like it’s working, have you cleared your browser cache?
Forum: Fixing WordPress
In reply to: My website was hackedOnce you have your sites fixed I recommend doing backups on all. When you look for a new host ask them if they have a backup/restore utility as part of the plan.
Forum: Fixing WordPress
In reply to: Images all disappearedI will suggest posting in cloudflare’s forum.
https://wordpress.org/support/plugin/cloudflareForum: Fixing WordPress
In reply to: My website was hackedHave you been able to fix your passwords? CK this post. You may be able to get your host to help with this.
https://wordpress.org/support/topic/hacked-password-changed?replies=4Forum: Fixing WordPress
In reply to: My website was hackedRemain calm and carefully follow this guide. When you’re done, you may want to implement some (if not all) of the recommended security measures.
Forum: Fixing WordPress
In reply to: My website was hackedDo you have backups of your sites including the Databases?
You will need FTP to your site. Go to WP-CONTENT/THEMES and add “.OLD” to your theme folder, this will disable your theme, WP will revert to the default theme. You will then be able to access your dashboard. You can then change the theme name back and fix your errors or reinstall the theme.
Forum: Fixing WordPress
In reply to: move main menu to left (cherry)If you are trying to code HTML/CSS, it would probably be a good idea to get a good understanding of them.
There are lots of guides available, here is one for CSS:
http://www.htmldog.com/guides/css/beginner/The best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
http://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
http://vimeo.com/39023468You should also check this out for customizing your site.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comThen to edit this editor is fantastic. You can edit multiple files at the same time.
http://notepad-plus-plus.org/And this FTP program is tops in my book.
http://www.coreftp.com/Forum: Fixing WordPress
In reply to: bulleted list problemOn your page it is placing the
<ul><li></li></ul>on each and every line.<ul> <li>general cleaning (metal and wood), oiling and hydrating</li> </ul> <ul> <li>changing or refubrishing old or leaky pads</li> </ul> <ul> <li>replacing thread or cork on the tenons</li> </ul> <ul> <li>replacing cork stopper</li> </ul> <ul> <li>replacing broken springs</li> </ul> <ul> <li>cracks fixing</li> </ul> <ul> <li>reshaping damaged embouchure hole</li> </ul> <ul> <li>retuning of individual notes (only on historically non-relevant flutes)</li> </ul>Forum: Fixing WordPress
In reply to: bulleted list problemYou can manually add bullets using the text editor. Here’s an example.
<ul> <li>Line 1 </li> <li>Line 2 </li> <li>Line 3 </li> </ul>It will show like this:
- Line 1
- Line 2
- Line 3