corrinarusso
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I get my old filesThis has nothing to do with WordPress unfortunately.
You will need to ask them for backups available. I also suggest you login to your Control Panel and take a look around yourself.Worst case scenario is you can see what’s available online, here:
https://web.archive.org/web/20260000000000*/http://offthebeatenpathwithskip.com/Forum: Fixing WordPress
In reply to: Error after trying to use theme EXPORT ZIPYou can check your paths by creating a file called whatever.php, then just include this function,
<?php phpinfo(); ?>and put the at the root and load it in your browser like domain.com/whatever.php
Typically you cannot edit the php.ini file at your host, so there are ways around it. But sounds like you need to edit one of the files in the EXPORT thing provided by the theme. There are also other work arounds,
Where is PHP.ini in WordPress? How to Locate & Edit it
If this is a paid theme, be sure to ask the Author.
Forum: Fixing WordPress
In reply to: Error after trying to use theme EXPORT ZIPIf all you want to do it have a local back up of your website, use a tool like this:
All-in-One WP Migration and Backup – WordPress plugin | ww.wp.xz.cn English (Canada)
Also, most hosts provide a one click back up option.
Lastly, the include directory is referring to your WordPress instance install path. But likely you will need to include your username path, like this,
// Set the include path to include a custom directory
ini_set('include_path', get_include_path() . PATH_SEPARATOR . '/home/chugbug/php');
// look in /home/chugbug/php for includes
include 'my_library.php';This will point to the script, not the php path.
Load a backup of your website from your website host.
Disable all Auto Updates until you find where the issue resides.
Forum: Fixing WordPress
In reply to: Critical Error in WordPress Admin When Accessing Theme/Plugin PagesThe best approach is to deactivate all plugins, and activate a ‘default wordpress theme’.
If the site comes online in this state, then you have a conflict somewhere, and since this is a Paid theme, you will need to reach out to the Cristiano theme support here:
https://themeforest.net/item/cristiano-restaurant-wordpress-woocommerce-theme/17392139
Forum: Fixing WordPress
In reply to: Can’t Login to WordPressDid you kick off the Forgot Password link already, trying your username or your email?
Lost Password ‹ Nathan Grey — WordPress
Be sure to check your spam folder.
If you cannot use this approach, there are other ways to login if you have access to the Control Panel or Plesk at your website host.
If the Forgot Password link does not work, reply back here and I will outline the Database method.
Forum: Fixing WordPress
In reply to: Changing SSH portIs your site on-prem, or hosted using wordpress.com? If using wordpress.com I doubt you can change the port. If you are on-prem then this has nothing to do with wordpress and you’ll need to edit your sshd_config file and probably as well update your WAF / firewall to (firewalld) to allow the port.
Forum: Fixing WordPress
In reply to: Admin Confirmation Email Cannot Be Receivedif you have access to the host or the control panel,you can change it directly in the database using phpmyadmin, like this:
Forum: Fixing WordPress
In reply to: Can you unhide a website’s source code on the wp-admin panelWith the level of access you have described, no there is not.
Strongly suggest you start action with the host and the domain registrar to regain control of the assets you paid for:
How to Get Your Website Back from a Controlling Agency
My Old Web Designer Won’t Release My Website: What Can I Do?
Forum: Fixing WordPress
In reply to: Can’t customize ThemeAs Steven has mentioned, better to ask directly in the support forum for Astra.
However it is important that you share much more detail – at least the the error message that is being printed to screen.
I assume you have unzipped the theme(s) once they were uploaded?
- This reply was modified 11 months, 2 weeks ago by corrinarusso.
Forum: Fixing WordPress
In reply to: How to get rid of image bordersNo problem! It was an easy one.
Next time don’t spend hours on something before posting to the forums for help!
Lol, 🙂
Forum: Fixing WordPress
In reply to: Changing WP Admin EmailEdit the database directly, using phpMyAdmin,
A Quick Guide to phpMyAdmin (And How You Can Use It)
update wp_options set option_value = ‘[email protected]’ where option_name = ‘admin_email’
Forum: Fixing WordPress
In reply to: Missing TablesCheck your htaccess file for the table prefix,
should be:
$table_prefix = ‘wp_aahse2_’;
Forum: Fixing WordPress
In reply to: How to get rid of image borders.avatar, .entry img, .wp-post-image {
box-shadow: none;
border: 0px solid #ffffff;
}.avatar:hover, .entry img:hover, .lead-image img:hover, #recent-posts img:hover, #featured-cats img:hover {
box-shadow: none;
}Forum: Fixing WordPress
In reply to: Can’t find referral management after settingsIf you need to enter in redirects that share a domain name, you can use this:
Redirection – WordPress plugin | ww.wp.xz.cn English (Canada)
Otherwise, if you are going from one domain to a different domain, you’ll need to use Apache, like this: