-
Posts
1,366 -
Joined
-
Last visited
-
Days Won
49
Everything posted by flydev
-
For storing emoji, utf8mb4 is required as each emoji consist of four bytes in UTF-8 and you cannot store them using MySQL utf8 implementation as it can only symbols that consist of one to three bytes.
-
You could check in first instance the mysql server settings and adjust them in the config file my.cnf : [client] default-character-set = utf8mb4 [mysql] default-character-set = utf8mb4 [mysqld] character-set-server = utf8mb4 collation-server = utf8mb4_unicode_ci character-set-client-handshake = FALSE Then restart the server and try to save a page with an emoji.
-
No problem, as Andreas said, everything you requested is already implemented. If you have other features in mind, do not hesitate guys ? Also, with the next version, you will be able to backup the big site with Duplicator. I can make backup of a 1.6GO website without issue. It can be already tested - it's on the dev branch on Github.
-
-
I fixed the issue (thanks for reporting it) so you could access the process module again, but I don't have idea at this moment where is or what's the error. Could you try to make others AWS backups with different website and post the result ? Meanwhile I will re-read the code to see if I can catch something.
-
Hello, Just ideas, Have you tried to access the new deployed website in a incognito browser window, clearing cache and cookies ? If yes then did you compared the .htaccess on both host and the settings (webserver/php/cache settings) ?
-
I just tested it and the process ended without error ??♂️ What's the version of your Duplicator ? Edit1: Ok got it. Will push a fix. Edit2: You can update the module to the version 1.3.15
-
If I understand, this will help you : Check this function : https://processwire.com/api/ref/functions/wire-render-file/ A blog introduction: https://processwire.com/blog/posts/processwire-2.5.2/#new-wirerenderfile-and-wireincludefile-functions A example approach : https://marcus.io/blog/contextual-components-php Search Helper for forum posts: https://www.google.com/search?q=wirerenderfile+partial
-
Yes I had in mind safe_mode_exec_dir but I forgot that it was removed.
-
Just another thing, the next minor version will contain an encryption setting, trying to make Duplicator a bit GDPR compliant.
-
Thanks you very much for this report @adrian Already on the todo list. I will check the PR after this message, but this can depend on the user end database schema used. We will have on the next version multitude options to customize the behavior of mysqldump. I was thinking too to give a textbox to enter some custom swicth for the command-line before proceeding. Thanks, I will make some checks available to the destination dir of the script. I am sure this is because you have safe_mode enabled, if you can confirm me that, it would be awesome. Yes it's for debugging purpose and to avoid the page reloading - just set the var $debug to false in ProcessDuplicator.js, Thanks again, going to check the PR.
-
Hi, You can add a variable which store the number of menu shown in your foreach() loop then add the class uk-hidden to the rest of items: <?php $nMenu = 0; // number of menu shown foreach(...) { // [...] // check the var, if > 5 then add uk-hidden class to the elem $hidden = ($nMenu < 5) ? '' : ' uk-hidden'; echo "<li class='someClass{$hidden}'>My Menu </li>"; // [...] $nMenu++; // increment } // end foreach
-
It's also working on windows by now, pushing the update to the dev branch ?? Test version: v1.4.15
-
I made some progress and I could finally backup on an Unix machine the bigger setup I have (a backup imported as the method is not finished to be able to work on Windows) - for about 400MB files and a database of 1.6GB using the new implemented method which use the MySQL native tools. The method consist of writing a shell script on the fly which then is executed. If you wanna test it - still a work in progress - you can find the new method implemented on the dev branch on Github.
-
thanks @dragan just pushed a fix - sorry for the mistake.
- 39 replies
-
- 1
-
-
- responsive
- bootstrap
-
(and 3 more)
Tagged with:
-
Finally, I rebuilt the profile and updated it to the latest version of Bootstrap 4.4.1. I Also updated the bsRender* helpers functions, removed the Bower dependency and added the possibility (as example) to minify and bundle assets for releasing the website in production. With $config->debug set to true, you will want to work with asset files in site/assets/dev/src, and when ready, you will launch a terminal in this same directory and type yarn build to minify, concat and bundle assets, then set $config->debug to false to see the website with the assets minified.
- 39 replies
-
- 1
-
-
- responsive
- bootstrap
-
(and 3 more)
Tagged with:
-
I checked it and I need to rebuild the profile - I will update Bootstrap to the latest version at the same time as this profile was shipped with the beta version. Stay tuned.
- 39 replies
-
- 1
-
-
- responsive
- bootstrap
-
(and 3 more)
Tagged with:
-
We could build also the server part with Delphi, but using ProcessWire as a database interface, make the whole thing easier. It's incredible. If you couple it with a real server dedicated server, you have full speed. I have a setup where an embarked client communicate with a server-application made with Delphi through TCP/IP, relying the requests on localhost to ProcessWire : You mean a device like this ?
-
Build a custom Process module then code what you need ? https://processwire.com/api/ref/wire-database-p-d-o/ Example in one setup I have, 3 custom tables in the database managed through a Process module which serve to find plates : In this example, I am just looking for data, but you can do what you want, show a MarkupAdminTable or even an HandsonTable to edit your data easily.
- 1 reply
-
- 5
-
-
-
@howdytom The profile didn't work - thanks you, I'll try to fix it in the couple of hours.
- 39 replies
-
- 3
-
-
-
- responsive
- bootstrap
-
(and 3 more)
Tagged with:
-
@dragan @bernhard I feel dumb but I don't see anything in the discussion linked - so I don't understand what you was speaking about ?
-
@howdytom Wow it's been a while a didn't tested it. Let me check.
- 39 replies
-
- 1
-
-
- responsive
- bootstrap
-
(and 3 more)
Tagged with:
-
Ok for restoring, we might find a way to speed to the things, but about the backup, you kinda lost me here with your comment ?
-
Good to know; To give you a simple answer: InnoDB was faster for writes and MyISAM for reads. Nowadays, InnoDB are the way to go, yo should be aware that MyISAM is deprecated and being ? removed in MySQL 8 I think, or maybe on a later release.
-
Ok @adrian thanks , let us know then. It's planned yes, I was already coding something this night using natives tools. Stay tuned.