cyunicorn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sorting Appears to be Broken Sitewide@dhruvkb correct, I’m wanting to view the pages in alphabetical order in the admin dashboard but I can’t anymore. What happens now is that clicking on “Title” orders all of the pages by date in the admin dashboard. Clicking on “Date” also orders them by date as it should.
This sorting issue also seems to extend to other areas such as WooCommere and WP Job Manager, however, those aren’t just in the admin interface.
Forum: Fixing WordPress
In reply to: Sorting Appears to be Broken SitewideThank you @dhruvkb! I will order all pages individually as a last resort 🙂 It’s set to be sorted by title but even clicking on “Title” to sort the pages doesn’t work.
The same thing is happening with WP Job Manager and WooCommerce as well where things are set to be sorted a certain way. Those are broken too.
I just tried re-installing WordPress. That didn’t help either.
Forum: Fixing WordPress
In reply to: Error PHP in wp-settings.phpI’m having a similar issue in wp-settings on all of my websites, including a fresh install. Were you able to figure out the cause?
Forum: Fixing WordPress
In reply to: ABSPATH wp-settings.php errorsAfter looking at the folders more, I realized that all of the files being referenced in the errors are located in the htdocs folder in the opcache. Is there a way to fix that? The .php files there are .php.bin files.
All errors are referencing htdocs/appxxxxxxxx/wp-settings.php
Forum: Fixing WordPress
In reply to: ABSPATH wp-settings.php errorsThis is what shows in wp-includes/version.php
<?php
/**
* WordPress Version
*
* Contains version information for the current WordPress release.
*
* @package WordPress
* @since 1.1.0
*//**
* The WordPress version string.
*
* @global string $wp_version
*/
$wp_version = ‘5.7’;/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
$wp_db_version = 49752;/**
* Holds the TinyMCE version.
*
* @global string $tinymce_version
*/
$tinymce_version = ‘49110-20201110’;/**
* Holds the required PHP version.
*
* @global string $required_php_version
*/
$required_php_version = ‘5.6.20’;/**
* Holds the required MySQL version.
*
* @global string $required_mysql_version
*/
$required_mysql_version = ‘5.0’;
