rgilgen
Forum Replies Created
-
I had the same problem in version 1.05.02. I am also on a multisite installation. I got the following error “Captcha Input error: Invalid referer”. The problem was that I mapped the site to an other domainname. Therefore I needed to register the domainname on the recaptcha site (https://www.google.com/recaptcha/admin/list). Then I got a socket error on my page … ?Could not open socket“ … this occurs because I am behind a proxy. The solution is described in the following post:
https://wiki.recaptcha.net/index.php/Recaptcha-php-with-proxy-support-1.10While I updated formidable the file /export/htdocs/wp-content/plugins/formidable/classes/recaptchalib.php had been overwritten. There was the proxy enabling code.
Forum: Plugins
In reply to: php coding / ProjectManager customization<?php $dataset_meta = $projectmanager->getDatasetMeta( $dataset->id ); $meta_values = array(); foreach ($dataset_meta AS $meta){ $meta_values[$meta->label] = $meta->value; } // I assume "Team" is the name of your custom form field. echo '<td class="name">' . $meta_values["Team"] . '</td>'; ?>
For the customization I suggest to copy from
wp-content/plugins/projectmanager/view/dataset.php
towp-content/themes/yourTheme/projectmanager/
and then change the content to your needs. The copied file will automatically be used instead of the original in the plugins folder.Forum: Plugins
In reply to: [Plugin: Visitor Maps and Who’s Online] Maxmind GeoLiteCity database ProblemHi I experienced the same problem. The whole site went blank and the admin page was blank to.
Solution:
I deleted thewp-content/plugins/visitor-maps/GeoLiteCity.dat
downloaded it from https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz in the same directory and unzipped it.Reason:
Somehow the installation didn’t download the file correctely. Its size was 0kb. This caused an error which made the whole site blank.