Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same problem as Bosco

    Same problem:

    Error: The directory containing the configuration file /home/admin/web/domain.com/public_html/wp-content/wp-cache-config.php is read only. Please make sure it is writeable by the webserver.

    and it’s not true, the directory is writable!

    Someone fixed?

    Thread Starter drosophila

    (@drosophila)

    Problem solved.

    The Skin in Option was the Image skin instead of the HTML skin. But there is an error:

    If I choose HTML skin and try to add a slide, if I choose HTML as Slide Type, the WordPress editor is not displayed. I must update the slider before to see the changes.

    This last one is a bug. On the console, the error is:

    Uncaught Error: Syntax error, unrecognized expression: .slide# tr.slide_image

    The problem is here:

    $('.slide_type select').live('change', function() {
    
    image = $('.slide#' + $(this).data('id') + ' tr.slide_image' );
    html = $('.slide#' + $(this).data('id') + ' tr.slide_html' );

    and occurs because data-id is empty in the html code at run-time:

    <select data-id="" name="slides[3][type]"> <option value="image" selected="">IMAGE</option> <option value="html">HTML</option> </select>

    Instead is filled after the update (because you insert it on database, by creating a new id).

    The solution:

    $('.slide_type select').live('change', function() {
    
    		//image = $('.slide#' + $(this).data('id') + ' tr.slide_image' );
    		//html = $('.slide#' + $(this).data('id') + ' tr.slide_html' );
    
    		if ( $(this).val() == 'image' ) {
    
    		  $(this).parent().parent().parent().children(".slide_image").show();
    		  $(this).parent().parent().parent().children(".slide_html").hide();
    
    		  return;
    		}
    
    		if ( $(this).val() == 'html' ) {
    
    		  $(this).parent().parent().parent().children(".slide_image").hide();
    		  $(this).parent().parent().parent().children(".slide_html").show();
    
    		}
    
    		return;
    
    	});
    Thread Starter drosophila

    (@drosophila)

    yes sure but you can’t use the SMTP server with PHP (for example using phpmailer).

    The MX records are already linked to Google

    You can’t use plugins like WP Mail SMTP with GoDaddy if you haven’t a VPS.

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