Hills
Forum Replies Created
-
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] FORM ENTRIES NOT DISPLAYING@nusa-surf
here’s a plugin “cfdb” may save the data sent from Caldera and read them, but now this plugin is not listed in www.remarpro.com now.
i installed this plugin in my site for a backup of the form submitted data.
*BUT this plugin “cfdb” can not read the data saved by Caldera before “cfdb” is actived.
here’s the plunin’s link:
https://cfdbplugin.com/for your reference.
good luck.Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] FORM ENTRIES NOT DISPLAYINGHi,@nusa-surf ,
i tried to find the issues for a few days, and i found a way to solve it:
the bug is here:
caldera-forms\classes\admin.php on line 966
the code is:
$is_json = json_decode( $row->value, ARRAY_A );
(The error info says: “json_decode() expects parameter 1 to be string, array given in …caldera-forms\classes\admin.php on line 966”)i kill this line (looks like following:)
//$is_json = json_decode( $row->value, ARRAY_A );then my entries appeared.
i don’t know if any other error would occur after i killed the line(@shelob9).
(by the way, my server is Window hosting IIs7)- This reply was modified 7 years, 2 months ago by Hills.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] FORM ENTRIES NOT DISPLAYINGSame issues occurred on my website, i tried both Caldera1.5.5 and Caldera1.5.6-b-1, no entries can be shown when click the Form’s “Entries” menu. The difference is a spinning wheel spins but noting shown in 1.5.5 while no spinning wheel appeared at all in 1.5.6-b-1.
Some new issues occurred in Caldera1.5.6-b-1: the menu “Email”,”Processors”, “Conditions”, “Revisions”, “Variables”, and “Responsive” get no response when be clicked in form edit page.
The php version is PHP5.6 and WordPress 4.5.3.
but all the above issues didn’t occur and worked correctly when run in my local server (PHP5.4.17)
How to solve it? thanks.Maybe you can try this:
1)Copy the file “wp-content/themes/mTheme-Unus/inc/p-index.php” to the folder “”wp-content/themes/mTheme-Unus/” and change the file name to “front-page.php”;
2)Modify the code
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
(line 8)
to
$paged = (get_query_var('page')) ? get_query_var('page') : 1;
the front page will display your blog latest posts.
Forum: Plugins
In reply to: [Transposh WordPress Translation] Can't edit translationSame problem occurred on my site too, any suggestions?
OK! it seems work well!
Thank Greg Ross for your solution. i’ll modify the code and wait for the results.
Thank plugin author very much. so quickly response. i downloaded and updated to the latest version(4.3.1), it works perfectly!
Same issue of mine. “Visitor” didn’t change
Also we can define some file extensions that can be uploaded to group file folder. Fee’s code can be modified like this(you can define your own permitted file extensions):
//////////////////////////////
$ext = substr($extension,1);
$ext = strtolower($ext);
$mimes= array(‘rar’,’zip’,’jpg’,’gif’,’pdf’,’png’,’bmp’,’ico’,’tar’,’gz’,’gzip’,’7z’,’doc’);
$mime_ok = false;
if (in_array($ext,$mimes)) $mime_ok = true;
if(!$mime_ok)
return false;
//////////////////////////////////Same error occurred on my site, but the error only appears when using IE explorer, and didn’t occur when using Chrome browser.
Any suggestions?A very nice solution!! thanks a lot.