LyleChamney
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My website comes up as "Maintenance" ?Seems to be working fine now 🙂
Just a suggestion, but I notice that you are running on a Windows hosting account. As the site is brand new, may I offer that you have GD switch the account to an equivalent Linux plan. You will have fewer issues going forward as WP is designed to run “better” on Linux. Don’t worry; you don’t need to know anything about Linux in order to use this plan; cPanel will shield you from that 🙂
Forum: Fixing WordPress
In reply to: Cannot Login to WordPress AdminYes, I would remove that file so that the plugin is completely removed.
Generally, one should disable any caching plugins or services while actively working on the site.
As for the last point, one should always have the latest updates applied 🙂
However, make sure to have good backups of both the site files AND the database before doing so.
Forum: Fixing WordPress
In reply to: Cannot Login to WordPress AdminYes, change those to
twentyfourteen, like this, lowercase, no space.I renamed the plugins folder but still generating the same error.
That’s why I’m pretty sure it’s the theme.
Forum: Fixing WordPress
In reply to: Cannot Login to WordPress AdminAt this point, I would suggest renaming the wp-plugins folder to disable all plugins. Once you are able to log in again, you can then reactivate them one by one to test which one is causing the issue.
Forum: Fixing WordPress
In reply to: Cannot Login to WordPress AdminThat is correct; you have TwentyFourteen available, so try
twentyfourteeninstead and see if that gets you in.Forum: Fixing WordPress
In reply to: Cannot Login to WordPress AdminAlthough the cache plugin may have something to do with this, the error you show is in your theme’s function.php file. And it is the very customizable Divi theme from Elegant Themes, which you may also have worked with when adding the cache plugin 🙂
If you still have the default TwentyFifteen theme installed, use your GD cPanel phpMyAdmin to change the
templateandstylesheetfields in the wp_options table totwentyfifteenIf it is theme-related, this should get the site back and allow you to log in.The email for you WordPress site is easily changed from within the WordPress dashboard 🙂
Just go to Dashboard > Settings > General and enter the one you want to use … that easy, no need to re-install.
Forum: Installing WordPress
In reply to: Installation Problem@ayeshapunu – good to hear that your original question was resolved 🙂
Could you please mark this topic as resolved and post your new question in a new topic, as it makes things easier for others who may be searching for a similar problem 🙂
Forum: Installing WordPress
In reply to: Installation ProblemThe default values for the database user in XAMPP are
rootand<empty, don't enter any value>So your connection info would be:
Database Name: wordpress
User Name: root
Password: do not enter anything
Host Name: localhostForum: Fixing WordPress
In reply to: Installing a second site to a Sub-DirectoryAs you are not able to log in to make the change, one of the quickest ways it to do it via the database: change the siteurl and home fields in the wp_options table to:
http://mainsite.com/wordpressThis will then let you log in at
http://mainsite.com/wordpress/wp-adminorhttp://mainsite.com/wordpress/wp-login.phpOnce logged in, install and run this plugin to update the rest of the URLs:
http://wordpress.org/plugins/velvet-blues-update-urls/
— select all options EXCEPT the last one (GUID)
Once that is done, go to:
Settings > Permalinks and Save.
Forum: Installing WordPress
In reply to: problems with install to new wp siteYou will want to check this out:
http://sitecheck.sucuri.net/results/www.graffworxmedia.com/
And also here:
Forum: Localhost Installs
In reply to: New local WAMP Machine Error Establishing database connectionI’ve tried the raw and generated passwords from the wp_users password
database variable in the wp-config file and neither workThe values in the wp_user table are for the WordPress login, and NOT for the database 🙂
Given the name of the database is
wordpress, this is what your wp-config should look like:/** The name of the database for WordPress */ define('DB_NAME', 'wordpress'); /** MySQL database username */ define('DB_USER', 'root'); /** MySQL database password */ define('DB_PASSWORD', ''); /** MySQL hostname */ define('DB_HOST', 'localhost');Forum: Localhost Installs
In reply to: New local WAMP Machine Error Establishing database connectionThe only thing that I can suggest is to ‘triple check’ the values in your wp-config. Something is not correct in either the values there or the db name in the 8.1 db. As you probably know, all it takes is a space in one of the values to generate that error 🙂
Forum: Localhost Installs
In reply to: New local WAMP Machine Error Establishing database connectionA couple things:
– is the WAMP system tray icon ‘green’
– are you able to successfully see the WAMP start page when you enter
http://localhostForum: Localhost Installs
In reply to: moving data from WAMP to MAMPThe default database user and password for WAMP are root and empty (no value).
The default database user and password for MAMP (Mac and Windows) are root and root.