blonkm
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Fatal Error exporting XLSFor me this didn’t work, I had to change way more files in PHPExcel that use curly brace indexing.
So I used PHP Rector to refactor the entire library:
composer require rector/rector –devmodify rector.php:
use Rector\Php74\Rector\ArrayDimFetch\CurlyToSquareBracketArrayStringRector;
//register a single rule
$rectorConfig->rule(CurlyToSquareBracketArrayStringRector::class);run:
vendor/bin/rector process .\wp-content\plugins\advanced-cf7-db\admin[OK] 18 files have been changed by Rector
Forum: Fixing WordPress
In reply to: Could not insert term into the database -help!Forum: Fixing WordPress
In reply to: Could not insert term into the databaseAnother reason for not being able to create records is that the AUTO_INCREMENT is not set correctly for some reason. You can change this by executing the following SQL
>ALTER TABLE tbl_name AUTO_INCREMENT = <thenumber>;
For thenumber you would pick one higher then the highest value in the primary key field, which you can get with
>SELECT MAX(fld_name) FROM tbl_name;
do this for each table to make sure.
You can check the value to be used next using
>SHOW TABLE STATUS;
Forum: Plugins
In reply to: MBOX Plugin not displaying using SafariMaybe this:
Error: [Exception… “Access to restricted URI denied” code: “1012” nsresult: “0x805303f4 (NS_ERROR_DOM_BAD_URI)” location: “https://www.richardtrout.com/wp-content/plugins/mbox/js/mootools.remote.js Line: 3”]
Source File: https://www.richardtrout.com/wp-content/plugins/mbox/js/mootools.remote.js
Line: 3Forum: Fixing WordPress
In reply to: File Upload/Download section for my membersI am planning on doing the same thing, but instead just use the password field of a post. The client can go to the post, type the password and see downloads. They cannot upload though. I am still wondering how to tie in ssl and block robots. A lot is manual of course this way, since the client has to make their own links after the upload. Still it’s a quick way of making this. Let me know if you have any other improvements.
Forum: Requests and Feedback
In reply to: TinyMCE Wishlistchromecow, same problem here. Only I have the MS script debugger and I get an error message. If you use FF you can probably also see an error message in the javascript console.
This seems to be the problem:tinyMCEPopup.restoreSelection();
Maybe I can hack it. Will let you know.