eehmke
Forum Replies Created
-
Forum: Plugins
In reply to: [Participants Database] Records Show Date EditedI would need a date_created field, as we try to set up a registration for an event where the early birds get a reduced fee. Is that possible?
And I would need to export the field to CSV. If a hidden date field with the current date of the first creation of the record could be provided?
- This reply was modified 7 years, 10 months ago by eehmke.
Forum: Plugins
In reply to: [Event List] Login required for published eventSolved, the page that contains the [event-list] tag was not released.
Forum: Plugins
In reply to: [Participants Database] Request private link does not workOk I changed the permalinks of the site and configured the registration form as a subpage of another page. That solved the problem.
I can confirm that the function
pdb-before_validate_field(my own funtion added byadd_filter) is called again when the data is updated. But in my original code I had a database check for duplicate email. In the meantime I realized that PDB does this by its own, so I removed that check. So my problem seems to be solved.This seems not to be the case. I have version 1.7.8.7 installed (since this morning) and still have the same issue. pdb-before_validate_field is executed again ein editing the exiting entry, and of course finds the already stored email address. How can i detect that the function is called in the edit mode, not the create mode?
In my case there was a <IfModule> .. </IfModule> mismatch in the .htaccess file. Removing that blocks solved the issue.
Forum: Plugins
In reply to: [Participants Database] Export of CSV via command lineI would not re-import the data. The idea was to import the data to a mailman mailing list. Of course I would have to convert the CSV data into a format that mailman understands. But at the moment I am going to use a newsletter plugin like MailPoet.
Forum: Plugins
In reply to: [PHP Compatibility Checker] Update to test for 7.1 compatibility?support this request
Forum: Plugins
In reply to: [Order Tracking - WordPress Status Tracking Plugin] PHP 7.0 compatibilityIn the actual version 1.8.1 of PHPExcel most of these errors already seem to have been solved. I would suggest to migrate to the newest version.
The PHPExcel in the plugin seems to be based on version 1.8.0. I replaced the PHPExcel subdirectory in the plugin by version 1.8.1 of the PHPExcel release. All errors and warnings disappeared, with two exceptions:
- the PHPExcel/Calculation error is still reported. But even this problem is solved in the latest update (not contained in release 1.8.1)
- the sqlite problem is still not solved.
- This reply was modified 9 years, 3 months ago by eehmke.
Thank you, that works. Still I would suggest to add an option in the above sense. But as a workaround, this is ok.
Forum: Plugins
In reply to: [SpiderCalendar] Translation issue (german/austrian)Confirm, Januar is correct in de_DE. For Austria a translation de_AT would be needed, which is missing. The January translation seems to be the only difference between the languages, so the existing de_DE could be used for de_AT, while the modified version serves for de_DE.
Forum: Plugins
In reply to: [Decent Comments] PHP Compatibility Checker Decent CommentsI replaced line 60 of
/wp-content/plugins/decent-comments/class-decent-comments-widget.php:// function Decent_Comments_Widget() { // eehmke PHP 7.0 function __construct() {Works for me.
- This reply was modified 9 years, 4 months ago by eehmke.
Forum: Plugins
In reply to: [PHP Compatibility Checker] JSon data errorI have the same issue with WordPress 4.7, PHP 7.0, PHP Compatibility Checker 1.3.1, Firefox 50.1. When I close the error message by pressing OK and reload the page, the plugin works and delivers correct results.
I had the same issue.
In wp-content/plugins/check-email/plugin-register.class.php I had to change:
// eehmke PHP7 compatibility //function Plugin_Register() { function __construct() {In wp-content/plugins/check-email/check-email.php I had to change:
// eehmke the constructor has been called already by the new operator! // $register->Plugin_Register();Works fine for me.
- This reply was modified 9 years, 4 months ago by eehmke.
Forum: Plugins
In reply to: [PHP Compatibility Checker] FALSE POSITIVE: Using ‘break’ outside of a loopI run version 1.3.1 and still get this error. The code is:
foreach ( $this -> controllers as $group => $views_id ) foreach( $controller_ids as $id ) if ( in_array($id, $views_id) ) { $controller_cb = $id; $controller_group = $group; break 2; }//if //foreach //foreachin customizr/core/framework/class-controllers.php