ericksonstudio
Forum Replies Created
-
This is also happening in PHP 7.4 and 8.0:
Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR) in /(path)/wp-content/plugins/ninja-forms/includes/Routes/Submissions.php on line 717
- This reply was modified 2 years, 11 months ago by ericksonstudio.
@macmanx Easy fix and have it in already. It woiks! Thanks mucho grande!
@macmanx Thank you! Created a new post. Submitted a support request last night. Thanks again.
After updating to 7.5.1 our WordPress UI won’t fully load (loads the left column nav, but anything content-related won’t load on the right side). We’re on PHP 7.3.
An error of type E_ERROR was caused in line 318 of the file /home/public_html/(domain removed for this post)/wp-content/plugins/jetpack/class.jetpack-idc.php. Error message: Uncaught Error: Class ‘Automattic\Jetpack\Logo’ not found in /home/public_html/(domain removed for this post)/wp-content/plugins/jetpack/class.jetpack-idc.php:318 Stack trace: #0 /home/public_html/(domain removed for this post)/wp-content/plugins/jetpack/class.jetpack-idc.php(238): Jetpack_IDC->render_notice_header() #1 /home/public_html/(domain removed for this post)/wp-includes/class-wp-hook.php(286): Jetpack_IDC->display_idc_notice(”) #2 /home/public_html/(domain removed for this post)/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #3 /home/public_html/(domain removed for this post)/wp-includes/plugin.php(465): WP_Hook->do_action(Array) #4 /home/public_html/(domain removed for this post)/wp-admin/admin-header.php(281): do_action(‘admin_notices’) #5 /home/public_html/(domain removed for this post)/wp-admin/plugins.php(479): require_once(‘/home/…’) #6 {main} thrown
UPDATE: I renamed my plugins folder, then named it back to deactivate the plugins, then activated them one-by-one, activating Jetpack last. Everything worked fine until I activated Jetpack, then the same error happened again. FWIW, it does not happen on my local dev server with identical plugin setup, versions, etc. (except using PHP v. 7.3.6).
- This reply was modified 5 years, 4 months ago by ericksonstudio. Reason: Added PHP version information
- This reply was modified 5 years, 4 months ago by ericksonstudio. Reason: Added more troubleshooting information
Forum: Fixing WordPress
In reply to: Subdomain with Same Database Content?Well, that didn’t work (using the wp-blog-header.php file). It looks like the server won’t let me
include
anything from the/www
directory — not even a plain txt file.Maybe a permissions issue?
Forum: Fixing WordPress
In reply to: Subdomain with Same Database Content?Why not do https://www.domain.com/iphone??
The simple answer is the client doesn’t want it.
Thanks for the idea. I think I tried that already, but I’ll give it another shot.
Anyone else have some experience with this?
Forum: Fixing WordPress
In reply to: Subdomain with Same Database Content?Anyone? Help?
Forum: Plugins
In reply to: Navigation Problem: getting info outside the LOOP another requestRegarding #1: I have had success using this method:
<?php //BEGIN WordPress CODE define('WP_USE_THEMES', false); require('../wp-blog-header.php'); wp_list_pages('title_li=&child_of=14' ); //END WordPress CODE ?>
Once you have the
define()
andrequire()
statements in there once, you can use some WP tags throughout the page outside of your blog structure.I hope that is helpful.