Forum Replies Created

Viewing 13 replies - 16 through 28 (of 28 total)
  • Thread Starter DBZEROONE

    (@dbzeroone)

    Here’s a list of what I have installed on the site I’m having the issue with. One plugin is deactivated, but I included it anyway.

    PHP Version: 5.3.28
    Wordpress Version: 3.9.2
    Theme is custom based on the Underscores starter theme.

    Plugins:
    Akeeba Backup for WordPress
    jQuery Lightbox (deactived)
    Key4ce osTicket Bridge
    NK Google Analytics
    Recent Posts Widget Extended
    Simple Featured Posts Widget
    Smart FAQ
    TablePress
    Types – Complete Solution for Custom Fields and Types
    WP Video Lightbox
    WP Views

    Thread Starter DBZEROONE

    (@dbzeroone)

    Thanks Nikosdion. I know I’m being vague, but there’s not a lot of info to go on here :/

    I checked with my host. They looked into it and came up with nothing. I guess I’ll just keep digging. I’ll post anything I learn here. Thanks for the effort!

    Thread Starter DBZEROONE

    (@dbzeroone)

    Yes, those are the only lines that contain akeebabackupwp.php. I got this from the standard cPanel error log. I just produced the error now and the exact same errors showed up in the error log instantly.

    Is there another log file I should look at that may have more info in it? I’m going to open a ticket with my host to see if they can shed some light too. Thanks!

    Thread Starter DBZEROONE

    (@dbzeroone)

    Hmmm… Any ideas what could be killing the script on the server side?

    This is all the logs tell me (anonymized):

    [Mon Sep 15 14:36:27 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php
    [Mon Sep 15 14:36:27 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php
    [Mon Sep 15 14:31:01 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php
    [Mon Sep 15 14:31:00 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php
    [Mon Sep 15 14:24:48 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php&view=main
    [Mon Sep 15 14:24:47 2014] [error] [client xx.xx.xx.x] client denied by server configuration: /home/<account>/public_html/wp-content/plugins/akeebabackupcore/app/backups/index.html, referer: https://mydomain.com/wp-admin/admin.php?page=akeebabackupcore/akeebabackupwp.php&view=main
    Thread Starter DBZEROONE

    (@dbzeroone)

    I fixed the problem by going to Settings > Permalinks and changing the URL type to “Post Name”.

    Note to developer: You should check in on this board once in a while and try to answer some questions.

    I’d love this feature added as well!

    Andy, any chance you could share your modified code?

    Thread Starter DBZEROONE

    (@dbzeroone)

    Ok, fixed it… or at least… I got it to behave.

    I added the following to the IDs of the 2 menus:

    #dc_jqaccordion_widget-2, #dc_jqaccordion_widget-3{
    	display:inline-block;
    }

    Any comments on this solution are appreciated. It works, but not sure if it’s proper.

    Thread Starter DBZEROONE

    (@dbzeroone)

    Just an update… The parameters were not writing to the database, so I went in and changed them manually. Even after changing the parameters in the database, the changes are not showing on the site.

    Then when I go to the other CSS field where you put in the rules, what goes there? I want to make the width:550px

    Are you referring to the place in the Appearance tab where you enter your custom CSS?

    Here are a couple guesses: First, try to add !important at the end of your class. This will force it to override anything else that may be affecting it. For example:
    .text{width:550px !important;}

    My other guess would be to uncheck “Load default theme” and see if that makes any difference.

    Sorry about the delay in responding. If you’ve already figured this out, could you post the solution? Thanks!

    Thread Starter DBZEROONE

    (@dbzeroone)

    Ok nevermind. I figured it out…

    I simply removed the title “Send” from the email button element in the Jazzy Forms control panel. As for the background colors, my starter theme (underscores) had some box shadows applied to the default buttons. Here’s my final CSS if anyone is interested:

    .jzzf_email_button{
    background: transparent url('images/submit.png') no-repeat !important;
    border:none !important;
    width:96px;
    height:33px;
    box-shadow:none !important;
    -moz-box-shadow:none !important;
    -webkit-box-shadow:none !important;
    }

    Are you using Firebug for Firefox or the developer tools in Safari and Chrome? Those tools make it easy to identify exactly which IDs/Classes are affecting an element.

    In Jazzy Forms, you can set the ID and custom classes of each element. If you don’t set the IDs, JF will set them for you as “element”, “element_1”, etc.

    To add a custom class, click the “Appearance” tab for the element you want to add a custom class to and type your class name in the “Custom CSS Class” field.

    By calling the IDs and/or classes in your CSS, you can customize any individual element without affecting all the others in the form or other forms. NOTE: When you add a custom class in Jazzy Forms, do NOT include the dot “.” before the class name!

    Hope that helps!

    I had the same problem. I tried adding value=”ROI” and a few other things, but nothing changed.

    Then I went to wp-content/plugins/jazzy-forms/front/jazzy-forms.js and on line 621 found this:
    this.raise_div0 = function() { throw new Jzzf_Error("#DIV/0!") };

    Remove the #DIV/0! so it looks like this:

    this.raise_div0 = function() { throw new Jzzf_Error("") };

    Problem solved! Be sure to do this only after you’re 100% certain that your form works perfectly! If you have a division by zero error, you won’t get a warning message anymore!

    I had the same problem… Figured it out…

    In the Admin menu, go to Testimonials > Design Settings

    Once in there you can see the HTML that makes up the layout. Delete the second line. I’d paste which line in here, but I deleted it and can’t undo. You’ll figure it out ??

    Now when I want to use an image, I just place it in the text editor above the text. Works perfectly and if there’s no image, it doesn’t show that bloody hideous grey head avatar!

Viewing 13 replies - 16 through 28 (of 28 total)