• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Issue WP Page Editor display issue.

Bricee

New Pleskian
Hello Everyone

I am using Plesk Obsidian for Windows Server 2016.

I created a new site in WP Toolkit and imported an existing site from another domain.

I had to deal with a lot of file permissions errors initially but now everything seems to be ok except for the issues below.

I have a problem with the Page Editor displaying with the left hand navigation menu rendering as if the items are shortcuts. I have attached an image to show what appears.

I'm fairly sure it's a file permissions related issue, because I have had a lot of issues from the start of this site. When I click on tools file editor I get the following message and no file structure (image "Editor"). When I open a page for editing I get the results shown in ("editor3" and "editor1")

Can anyone help me with this as I have run out of ideas.
 

Attachments

  • Editor.jpg
    Editor.jpg
    78.2 KB · Views: 6
  • editor1.jpg
    editor1.jpg
    126.3 KB · Views: 4
  • editor3.jpg
    editor3.jpg
    78 KB · Views: 6
Certainly! It seems like the issue you're facing might be related to file permissions. Here are some steps you can take to troubleshoot and resolve the problem:

1. **Check File and Folder Permissions:**
- Ensure that the file and folder permissions for your WordPress site are correctly set. Typically, directories should have permissions set to 755, and files to 644.
- You can use FTP or the file manager in Plesk to adjust these permissions.

2. **Check Ownership:**
- Confirm that the files and directories are owned by the correct user. They should be owned by the same user that your web server (e.g., Apache or Nginx) runs as.

3. **Reset WordPress File Permissions:**
- You can use the following commands via SSH to reset permissions:
```bash
find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
```

4. **wp-config.php File:**
- Ensure that your `wp-config.php` file is properly configured, especially the database connection details.

5. **Check for Plugin/Theme Conflicts:**
- Deactivate all plugins and switch to a default theme (e.g., Twenty Twenty-One) to see if the issue persists. If it doesn't, then reactivate plugins and theme one by one to identify the conflicting element.

6. **Plesk Repair Kit:**
- In Plesk, you can use the "Repair Kit" to automatically fix file permissions. Navigate to "Websites & Domains" > "Repair Kit" and run the repair.

7. **Logs:**
- Check the error logs for your website, both in Plesk and in the WordPress installation. They might provide more specific information about the issue.
 
Back
Top