AndrewN
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Install WordPress problem?Hai,
Follow the methods to wordpres auto-install in cPanel
https://documentation.cpanel.net/display/CKB/How+to+Install+WordPress+With+cPanelThanks,
Forum: Fixing WordPress
In reply to: My website is down and I need helpPlease have look on this link: https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-error-establishing-a-database-connection-in-wordpress/
Forum: Fixing WordPress
In reply to: WordPress Migration plugin ?Thank you sir! I have followed the same steps..,
Forum: Fixing WordPress
In reply to: Can I Change the WordPress Address (URL)?Edit wp-config.php
set the site URL manually in the wp-config.php file.
Add these two lines to your wp-config.php, where “example.com” is the correct location of your site.
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);Forum: Fixing WordPress
In reply to: some database problems could not be repairedHere are the steps to repair a table in a MySQL database using phpMyAdmin:
-Login to hosting account.
-Login to phpMyAdmin.
-Choose the affected database. If you only have one database, it should choose it by default so you don’t need to do anything.
-In the main panel, you should see a list of your database tables. Check the boxes by the tables that need repair.
-At the bottom of the window just below the list of tables, there is a drop down menu. Choose “Repair Table”Forum: Installing WordPress
In reply to: Installation WordPressCould you please share your requirements which you were using for installing the wordpress.
Check for wordpress installation requirements here: https://www.ads-software.com/about/requirements/
Ask your web hosting provider to add resources as per your hosting plan to install wordpress.Forum: Installing WordPress
In reply to: Can’t connect to databaseYou need to edit wp-config file
WP-Config.php is probably the single most important file in your entire WordPress installation. This is where you specify the details for WordPress to connect your database. If you changed your root password, or the database user password, then you will need to change this file as well. First thing you should always check is if everything in your wp-config.php file is the same.
define(‘DB_NAME’, ‘database-name’);
define(‘DB_USER’, ‘database-username’);
define(‘DB_PASSWORD’, ‘database-password’);
define(‘DB_HOST’, ‘localhost’);Forum: Installing WordPress
In reply to: wordpress installation errorError Establishing a Database Connection is one of those curses that could be caused by many reasons.
Checking the WP-Config file
WP-Config.php is probably the single most important file in your entire WordPress installation. This is where you specify the details for WordPress to connect your database. If you changed your root password, or the database user password, then you will need to change this file as well. First thing you should always check is if everything in your wp-config.php file is the same.
define(‘DB_NAME’, ‘database-name’);
define(‘DB_USER’, ‘database-username’);
define(‘DB_PASSWORD’, ‘database-password’);
define(‘DB_HOST’, ‘localhost’);Forum: Fixing WordPress
In reply to: Changing the Settings->General->WordPress Address (URL) …?Check with these will help for your query:
WordPress Address (URL)
Enter the full URL of the directory containing your WordPress core application files (e.g., wp-config.php, wp-admin, wp-content, and wp-includes). For example, if you installed WordPress into a directory called “blog”, then the WordPress address would be https://example.net/blog (where example.net is your domain). If you installed WordPress into your web root, this address will be the root URL https://example.net. WordPress will trim a slash (/) from the end. If you defined the WP_SITEURL constant in your wp-config.php file, that value will appear in this field and you will not be able to make changes to it from the WordPress administration screen.Site Address (URL)
Enter the address you want people to type in their browser to reach your WordPress site. This is the directory where WordPress’s main index.php file is installed. The Site address (URL) is identical to the WordPress address (URL) (above) unless you are giving WordPress its own directory. WordPress will trim a slash (/) from the end. If you defined the WP_HOME constant in your wp-config.php file, that value will appear in this field and you will not be able to make changes to it from the WordPress administration screen.Forum: Fixing WordPress
In reply to: my site is goneYou can connect SFTP via Cyberduck as follows:
– Open Cyberduck
– Click Open Connection
– Select SFTP
– Enter the Ip address of the server or domain
– Enter the port number(default 22)
– Make sure Anonymous login is not selected
– Enter ftp username
– Enter ftp password
– Click on Connect to access the serverForum: Fixing WordPress
In reply to: My website automatically redirect to another websiteYour site has been infected with malware, Register with Sucuri for your website and get necessary from them to secure your site as @steve said.
Forum: Fixing WordPress
In reply to: I need to know the total time users spend on my siteInstall and activate Simple History wordpress plugin, It will shows the history of users. It provides the information of most important events occrus in wordpress as follows:
– Posts and pages
– Attachments and comments
– Widgets and plugins
– Taxonomies
– User logins, Falied user logins etc
Try to install and activate this plugin to track user activity on the wordpress siteForum: Fixing WordPress
In reply to: Issue with recovering domainYou can reset the password by accessing phpmyadmin in cPanel
– login to cPanel
– Navigate to Databases, click phpMyAdmin
– Click on wordpress database
– Click wp_users
– You will see the user_login list, click on Edit button next to the username where you want to change the password
– You will need to clear the value in the user_pass field and replace it with new password. Under the Function column, select MD5 and click Go
– Your password will be encrypted using MD5 and it will be stored in the database