RossMitchell
Forum Replies Created
-
Forum: Localhost Installs
In reply to: WordPress Error Can’t Select DatabaseHello @jbdegarmo
Welcome to the WordPress support forums. Please take the time to read the forum guidelines, it is very strongly required that people NOT drop into running threads with their own issues. Trust us it works better for everyone if you were to start a new thread to ask your question, by all means read threads to see if they fix your problem, but if you need your own help, then start a new thread. It may not make much sense to you, but that is because you are new here. Among the reasons this is a rule is that many people like myself scan for and read threads that are new, adding your question into a thread means that many fewer people will see it.That aside, it does seem that you do not have a database problem, but rather a PHP version related one. Suggest that you enable maximum debugging options and look into the WordPress and server logs.
In your file: ‘wp-config.php’
find the line with:define( 'WP_DEBUG',and comment it out and add:error_reporting(E_ALL); ini_set('display_errors', 1); define( 'WP_DEBUG', true);Then see if you get any messages or logged errors.
Forum: Localhost Installs
In reply to: WordPress Error Can’t Select DatabaseWelcome to the localhost world.
My suspicion is that your root user does not have permissions on the database you created, these steps will help you check and fix this.
– in your browser load phpmyadmin, login etc.
– you will get a display that list your databases in a column on the left, one of them should be “information_schema”, and your “notary_db”, please confirm this.
– click on “notary_db” and the tab: “Privileges”, it will list the databse users and their settings, in the “Privileges” column it should say “All Privileges” against “root”, use the “Edit Privileges” link to fix if necessary. please report what you see.If the above does not help then check your server error logs, also suggest you then seek support from the”Wamp” community.
Forum: Localhost Installs
In reply to: Plugin upload to installWhile it is possible to set the permissions so that updates and plugin + theme installs work, it is very fiddly, IMHO barely worth the trouble.
On a localhost machine you have your full operating system file access, just use it to install the plugins and themes etc, similarly when you are editing files, just edit them, much easier than using the WordPress or network techniques.
Like why use FTP to access your own files ?Forum: Fixing WordPress
In reply to: Add webshop to websiteYes, you can turn any theme into a webshop. Granted that some themes do make it easier, or even a lot easier.
I suggest that you spend some time examining the different ecommerce options rather than just using woocommerce by impulse.If I were in your place I would also setup a trial website using a theme that was hot loaded for your ecommerce plugin, use this site to see how the different pages get configured.
Forum: Localhost Installs
In reply to: Cannot login to Admin (after trying everything…)So it seems that the account is OK.
Are there any errors in the server logs ?Looking further it could be a theme or plugin problem, rather than overthink how and why, it is so much quicker to test and eliminate these possibilities. So rename your theme directory and try again. If no fix, then restore the directory and successively rename each of your plugin directories.
If the above eliminates theme and plugin problems then it has to be a problem with WordPress core. So keep:
file- /wp-config.php
directory: /wp-content/plugins
directory: /wp-content/themes
and delete and relpace ALL of the other files.Forum: Fixing WordPress
In reply to: Disable zoom hover effect on linksSuggest that you add some additional CSS with more specific class specifications, and in this CSS turn off the hover settings, css like:
.elementor-widget-container .cat-item a:hover { }You will need to find the css that does the hover zoom so that you can change it.
Also suggest asking in your theme support forum.
Forum: Fixing WordPress
In reply to: I am not able to Make HTML Table with borderFirst give your tables a distinct class, such as:
<table class="rPerfumeMen" etc
Then in yourcustomiser > additional css
add css code like this:.rPerfumeMen table { border: 1px solid black; }Your existing CSS turns off all borders, this css is more specific and will be chosen, it will also not change any other tables on the website.
Forum: Localhost Installs
In reply to: Cannot login to Admin (after trying everything…)This doc has many methods that will let you reset your password, all of the methods word, you only need to use one of them, there are so many methods as some are easier in different situations.
Forum: Fixing WordPress
In reply to: Where is my website picking up the slider images from? on Homepage?Not sure it matters what any of us think. It is about finding your slider code.
What I would do in your situation is search all the source code in themes and plugins for the class names I found above. I use Linux so this is an easy
grep -r flexslider-container
if you are on Mac or Windows I do not know.- This reply was modified 6 years, 2 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: Where is my website picking up the slider images from? on Homepage?Using my browser inspector I see that the slider is using classes with names:
flexslider-container gallery-slider flexsliderThis may be a clue as to where they are coming from, where they are configured and managed.
Forum: Fixing WordPress
In reply to: Podcast icon on thumbnailFirstly it would help us help you if you provided a link to the website.
Yes with CSS.
You need to get the podcast icon as an image file, which is a slightly different thing as some icons are not image formats, you want a jpg or gif or even a png format and named file. Upload this image file to your website, say in “wp-contents/uploads”
Then you use your browser inspector to find the thumbnail and get a set of CSS classes and or id components that are specific to thumbnail, then (in the customizer “additional css” or child theme) add CSS so that the image file is a background image to the thumbnail, you may need to position and no-repeat it, possibly size it too.
If this does not work, then you could use a filter to introduce an img html element to the thumbnail menu item. Would probably also need css as well.Forum: Localhost Installs
In reply to: Issue with localhost on my PCMost likely it is gone.
Depending upon the OS and the type of format it just may be possible to recover it using forensic techniques. It will be expensive. If you want to go this route the important thing is to STOP using the computer NOW.Forum: Fixing WordPress
In reply to: While in Customizer, Cannot add or replace any imagesAt risk of stating the obvious, you have hit the “PUBLISH” button on the top of the customizer, otherwise your edits are lost.
Have you looked at your pages using your browser inspector ?
Could you be seeing a cache issue ?Forum: Fixing WordPress
In reply to: No Further option occur after activating any themeWhen you activate the new theme, does it change the view of the site in any way ?
Does the theme’s “style.css” file get referenced in the header ?
Suggest asking your theme author for support.- This reply was modified 6 years, 3 months ago by RossMitchell. Reason: Additional advice
Forum: Fixing WordPress
In reply to: No Further option occur after activating any themeUsing either FTP or your website hosting file manager, look at the directories and files in “<webfiles>/wp-content/themes”. Are they visible ? What are the owners and permissions ?
Suggest that you talk to your hosting tech support.