• Resolved schwarzehunde

    (@schwarzehunde)


    Hello support team,

    i recently tried to use your plugin on a site i supervise but i have not been able to test the most simple formular.
    After hitting the submit button the circled loading bar shows shortly and the button is greyed out but i dont get the submit message nor an entry.

    I have enabled debugging but it does not show many errors.
    [04-Feb-2018 16:53:01 UTC] PHP Notice: Undefined offset: 0 in /home/www/wp-includes/plugin.php on line 897
    [04-Feb-2018 16:53:01 UTC] PHP Notice: Undefined offset: 0 in /home/www/wp-includes/plugin.php on line 915

    I have disabled my caching plugin and the jetpack plugin since i had trouble with it and my theme.

    List of remaining plugins:
    BackWPup
    Deaktivieren
    WordPress-Backup-Plugin

    Version 3.4.4 | Von Inpsyde GmbH | Details ansehen | Dokumentation
    Broken Link Checker ausw?hlen
    Broken Link Checker
    Deaktivieren | Einstellungen
    überprüft deine Website auf fehlerhafte Links und nicht vorhandene Bilder und benachrichtigt dich im Dashboard, wenn welche gefunden werden.

    Version 1.11.5 | Von Janis Elsts, Vladimir Prelovac | Details ansehen
    Caldera Formulare ausw?hlen
    Caldera Formulare
    Deaktivieren
    Easy to use, grid based responsive form builder for creating simple to complex forms.

    Version 1.5.9.1 | Von Caldera Labs | Details ansehen
    Category Order ausw?hlen
    Category Order
    Deaktivieren
    The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop.

    Version 1.0.3 | Von Wessley Roche | Plugin-Seite aufrufen
    Contact Form 7 ausw?hlen
    Contact Form 7
    Einstellungen | Deaktivieren
    Nur ein weiteres Kontaktformular-Plugin. Einfach, aber flexibel.

    Version 4.9.2 | Von Takayuki Miyoshi | Details ansehen
    Eine neue Version von Contact Form 7 ist verfügbar. Details der Version 5.0 ansehen oder jetzt aktualisieren.

    Date/Time Now Button ausw?hlen
    Date/Time Now Button
    Deaktivieren
    Adds a Now button to the right of date and time fields.

    Version 0.2.2 | Von radiok | Details ansehen
    DX Delete Attached Media ausw?hlen
    DX Delete Attached Media
    Deaktivieren
    Delete attached media to all posts (if activated). Remove images assigned to a post to clear old archives.

    Version 1.0 | Von nofearinc | Details ansehen
    Postie ausw?hlen
    Postie
    Deaktivieren | Settings
    Create posts via email. Significantly upgrades the Post by Email features of WordPress.

    Version 1.9.14 | Von Wayne Allen | Details ansehen | Support | Donate
    Eine neue Version von Postie ist verfügbar. Details der Version 1.9.15 ansehen oder jetzt aktualisieren.

    Simple Lightbox ausw?hlen
    Simple Lightbox
    Einstellungen | Zurücksetzen | Deaktivieren
    Die anpassbare Lightbox für WordPress

    Version 2.6.0 | Von Archetyped | Details ansehen | Feedback & Support
    Simple Post Views Counter ausw?hlen
    Simple Post Views Counter
    Settings | Deaktivieren
    This plugin will enable you to display how many times a post has been viewed. The views are displayed in the entry meta of each post, globally troughout your site. Please refer to the included readme.txt file for proper installation instructions and usage.

    Version 1.6 | Von RSPublishing | Plugin-Seite aufrufen
    Social Share Buttons by Supsystic ausw?hlen
    Social Share Buttons by Supsystic
    Deaktivieren
    Social share buttons to increase social traffic and popularity. Social sharing to Facebook, Twitter and other social networks

    Version 1.9.1 | Von supsystic.com | Details ansehen
    TinyMCE Advanced ausw?hlen
    TinyMCE Advanced
    ?Einstellungen | Deaktivieren
    Aktiviert die erweiterten Funktionen und Plugins in TinyMCE, dem visuellen Editor in WordPress.

    Version 4.6.7 | Von Andrew Ozz | Details ansehen

    Any help would be appreciated.

    Best regards

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter schwarzehunde

    (@schwarzehunde)

    Hello support team,

    i further investigated the problem and found the issue.
    The XHR request is giving a 404 because i cannot use permanent links on the webspace i use.
    https://www.schwarze-hunde.de/index.php/cf-api/CF5a770be2bbbcc/
    This is working fine.

    https://calderaforms.com/2016/01/caldera-forms-1-3-2-ajax/
    The issue was “fixed” here, but does not work in my case. How can i use the caldera_forms_cf_ajax_api_url filter or is there a more simple way around?

    Best regards

    Thread Starter schwarzehunde

    (@schwarzehunde)

    I found a solution, for those interested:

    <?php
    /*
    * Plugin Name: URL fix
    */
    /** PUT SOME CODE HERE **/
    
    add_filter( 'caldera_forms_submission_url', function( $url, $form_id ){
    	$parsed=parse_url($url);
    	$url = "$parsed[scheme]://$parsed[host]/index.php$parsed[path]";
        return $url;
    });
    ?>

    Save this as a .php, put it in wp-content\plugins folder and activate the plugin.

    Hi,

    thanks for sharing your solution! Seems like a lot of people (including me) are experiencing this problem.

    Unfortunately I am a complete newby – could you maybe explain to me a bit more where I need to put this code? So far I have tried everything to not touch anything with php written on it…

    Thanks!!! Your help would be greatly appreciated!

    martinw,

    I came across this thread having the same problem. I unchecked the ajax submission option in the form settings and that got mine working.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Submit button does not work’ is closed to new replies.