Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • jvsrc21

    (@jvsrc21)

    I found a temporary workaround until SSL Zen plugin gets updated. I take no responsibility for what happens to your site, but this worked for me.

    1. Access your site via FTP.
    2. backup your copy of /home/agentzero/public_html/!sites/thoseguys/wp-content/plugins/ssl-zen/ssl_zen/classes/class.ssl_zen_helper.php
    3. Comment out the line

    /*'WordPress address (URL)' => sanitize_get_option('home', ''),
                    */

    Test. Commenting out that one call fixed this for me.

    Before updating SSL Zen again, you may want to replace the class.ssl_zen_helper.php file with the backup copy so that SSL Zen doesn’t throw any errors when updating.

    jvsrc21

    (@jvsrc21)

    Same error here. Actually logged on to check how many days are left before the SSL cert needs renewing.

    Anybody find a fix?

    Thread Starter jvsrc21

    (@jvsrc21)

    Additional information:

    We recently migrated hosts to Godaddy’s new (to us anyways) cpanel host. When adding or deleting plugins, I am shown an error, and the error begins with an “s” again:
    Deletion failed: s{"success":true,"data":{"delete":"plugin","slug":"wordpress-seo","plugin":"wordpress-seo\/wp-seo.php","pluginName":"Yoast SEO"}}

    Could these be related?

    • This reply was modified 4 years, 10 months ago by jvsrc21.
    Thread Starter jvsrc21

    (@jvsrc21)

    Thanks for the response Topher. I checked through the Header.php in the themes folder but cannot find any rogue “s” in the code. I have pasted the code from the header.php file for review.

    One piece of information I can add – this “s” is the first item that gets loaded when visiting the webpage.

    <!DOCTYPE html>
    
    <html <?php language_attributes(); ?>>
    
    	<head>
    
    		<meta http-equiv="content-type" content="<?php bloginfo( 'html_type' ); ?>" charset="<?php bloginfo( 'charset' ); ?>" />
    		<meta name="viewport" content="width=device-width, initial-scale=1.0" >
    
    		<link rel="profile" href="http://gmpg.org/xfn/11">
    
    		<?php wp_head(); ?>
    
    	</head>
    	
    	<body <?php body_class(); ?>>
    
    		<?php 
    		if ( function_exists( 'wp_body_open' ) ) {
    			wp_body_open(); 
    		}
    		?>
    
    		<a class="skip-link button" href="#site-content"><?php esc_html_e( 'Skip to the content', 'hemingway' ); ?></a>
    	
    		<div class="big-wrapper">
    	
    			<div class="header-cover section bg-dark-light no-padding">
    
    				<?php $header_image_url = get_header_image() ? get_header_image() : get_template_directory_uri() . '/assets/images/header.jpg'; ?>
    		
    				<div class="header section" style="background-image: url( <?php echo esc_url( $header_image_url ); ?> );">
    							
    					<div class="header-inner section-inner">
    					
    						<?php 
    
    						$custom_logo_id 	= get_theme_mod( 'custom_logo' );
    						$legacy_logo_url 	= get_theme_mod( 'hemingway_logo' );
    
    						$blog_title 		= get_bloginfo( 'title' );
    						$blog_description 	= get_bloginfo( 'description' );
    
    						$blog_title_elem 	= ( ( is_front_page() || is_home() ) && ! is_page() ) ? 'h1' : 'div';
    						
    						if ( $custom_logo_id || $legacy_logo_url ) : 
    
    							$custom_logo_url = $custom_logo_id ? wp_get_attachment_image_url( $custom_logo_id, 'full' ) : $legacy_logo_url;
    						
    							?>
    						
    							<<?php echo $blog_title_elem; ?> class="blog-logo">
    							
    						        <a href="<?php echo esc_url( home_url( "/" ) ); ?>" rel="home">
    						        	<img src="<?php echo esc_url( $custom_logo_url ); ?>">
    									<?php if ( $blog_title ) : ?>
    										<span class="screen-reader-text"><?php echo $blog_title; ?></span>
    									<?php endif; ?>
    						        </a>
    						        
    						    </<?php echo $blog_title_elem; ?>><!-- .blog-logo -->
    					
    						<?php elseif ( $blog_title || $blog_description ) : ?>
    					
    							<div class="blog-info">
    							
    								<?php if ( $blog_title ) : ?>
    									<<?php echo $blog_title_elem; ?> class="blog-title">
    										<a href="<?php echo esc_url( home_url() ); ?>" rel="home"><?php echo $blog_title; ?></a>
    									</<?php echo $blog_title_elem; ?>>
    								<?php endif; ?>
    								
    								<?php if ( $blog_description ) : ?>
    									<p class="blog-description"><?php echo $blog_description; ?></p>
    								<?php endif; ?>
    							
    							</div><!-- .blog-info -->
    							
    						<?php endif; ?>
    									
    					</div><!-- .header-inner -->
    								
    				</div><!-- .header -->
    			
    			</div><!-- .bg-dark -->
    			
    			<div class="navigation section no-padding bg-dark">
    			
    				<div class="navigation-inner section-inner group">
    				
    					<div class="toggle-container section-inner hidden">
    			
    						<button type="button" class="nav-toggle toggle">
    							<div class="bar"></div>
    							<div class="bar"></div>
    							<div class="bar"></div>
    							<span class="screen-reader-text"><?php _e( 'Toggle mobile menu', 'hemingway' ); ?></span>
    						</button>
    						
    						<button type="button" class="search-toggle toggle">
    							<div class="metal"></div>
    							<div class="glass"></div>
    							<div class="handle"></div>
    							<span class="screen-reader-text"><?php _e( 'Toggle search field', 'hemingway' ); ?></span>
    						</button>
    											
    					</div><!-- .toggle-container -->
    					
    					<div class="blog-search hidden">
    						<?php get_search_form(); ?>
    					</div><!-- .blog-search -->
    				
    					<ul class="blog-menu">
    						<?php if ( has_nav_menu( 'primary' ) ) {
    							wp_nav_menu( array( 
    								'container' 		=> '', 
    								'items_wrap' 		=> '%3$s',
    								'theme_location' 	=> 'primary', 
    							) );
    						} else {
    							wp_list_pages( array(
    								'container' => '',
    								'title_li' 	=> ''
    							) );
    						} ?>
    					 </ul><!-- .blog-menu -->
    					 
    					 <ul class="mobile-menu">
    					
    						<?php if ( has_nav_menu( 'primary' ) ) {
    																			
    							wp_nav_menu( array( 
    								'container' 		=> '', 
    								'items_wrap' 		=> '%3$s',
    								'theme_location' 	=> 'primary', 
    							) ); 
    						
    						} else {
    						
    							wp_list_pages( array(
    								'container' 	=> '',
    								'title_li' 		=> ''
    							) );
    							
    						} ?>
    						
    					 </ul><!-- .mobile-menu -->
    				 
    				</div><!-- .navigation-inner -->
    				
    			</div><!-- .navigation -->
    Thread Starter jvsrc21

    (@jvsrc21)

    I solved this issue by upgrading our host from a 2012 version of godaddy host to the current Host w/cPanel and SSL encryption support.

Viewing 5 replies - 1 through 5 (of 5 total)