-
Posts
1,360 -
Joined
-
Last visited
-
Days Won
49
Everything posted by flydev
-
Hello, I am looking for beta-testers with Amazon S3 account Please PM me.
-
Just for informations - on my test installation, your dump is imported successfully. Apache/2.4.23 (Win64) PHP/5.6.25 libmysql - mysqlnd 5.0.11-dev - 20120503 Extension PHP : mysqli curl mbstring Version PHP : 5.6.25 Version MySQL : 5.7.14 Version PHPMyAdmin : 4.6.4
-
Can't found the answer on the IPB doc. Is there a limit to the number of participants in a private conversation ? Look like 5 is the max. Another little thing about the "module tag" in modules forum, its width is huge : Nothing really annoying but every day I wonder if this is normal, as every module does not contains the tag, and if it was the case, this will be 'huge' imo.
-
This would be awesome.
-
Mmm the module itself will be, but updating the SDKs with ProcessWireUpgrade (if that what you mean) will be hard if I am not missing something with this module. What I am thinking after some tests, and in particular about shared hosting, its to put on Github the vendor directory and let the user download and upload it to the their server if they want to use third party service storage. This approach only work (as the module itself) for ProcessWire 2.8 and 3.x. And if some people want simplicity on their virtual/private server, they just have to run a simple command line - composer update - in the root directory. Really, composer is nothing more than a tool to manage dependencies, and installing/using it require only one command line or a simple exe setup on Windows. Anyway, I will try to find a compromise and/or to figure how to manage theses dependencies in the module directory itself. If I can manage this, the module will be compatible with ProcessWire 2.7.
-
A small news for this morning, the AmazonS3 feature is implemented on the module (its a pain when you don't know about a SDK). Also please check the name of the final package as it was suggested by @szabesz. Thanks again for the suggestion, its better and easily manageable. Edit: For information, all SDKs are installed via composer. Is it a problem for you ?
-
The login function returns an user object on successful login or null on failure. You need to check this returned user object for roles: [...] $loggeduser = $session->login($input->post->user, $input->post->pass); if ( $loggeduser->isLoggedIn() ) { // user was authenticated and logged in // user has "admin" or "superuser" role foreach ($loggeduser->roles as $role) { $content .= $role->name . "<br/>"; } } [...] PS: do not forget to sanitize your input.
- 1 reply
-
- 5
-
As I have just finished implementing the FTP transfer protocol, I hope it will be available for beta testing this week-end . I have to implement Amazon before. I am going to buy an Amazon account tonight and implement this feature tomorrow.
- 530 replies
-
- 10
-
Hi Tyssen, if your are looking to backup the website rather than looking for an advanced feature like the deployment/installer, the first version which give us the possibility to to do so should be ready very soon out for a beta test. And if you have a wishlist and/or suggestion that should be implemented, feel free to reply on the dev topic.
-
Just finished improving the exclude feature. You can now exclude multiple dir, files, or excluding files by extension.
-
How can I position div container above the navigation in responsive??
flydev replied to Kass's topic in General Support
Look like I cant reproduce it. Could you make a screenshot ? Did you added some CSS style for the languages bar ? I just tested in chrome and the languages are still displayed above the meanmenu: Just in case, there is the full _main.php : -
How can I position div container above the navigation in responsive??
flydev replied to Kass's topic in General Support
Hello @Kass and welcome to the forum ! Your issue is easy to solve. So just after your div/container, add another div, for example : <div id="meanmenu-container"></div> after that - I am sorry I included the minified version of meanmenu - edit jquery.meanmenu.min.js and seek the property meanMenuContainer then add as value our new div: '#meanmenu-container' [...] meanMenuContainer: '#meanmenu-container', // Choose where meanmenu will be placed within the HTML [...] Now the languages bar should be above of the responsive menu (thanks Kongondo) -
When I built my tagging interface, I used this fantastic module : http://modules.processwire.com/modules/inputfield-chosen-select/ Then you just follow what @Robin S said. If you want a private access to my site to get an idea on how it work, just PM me.
-
As @szabesz already spotted it, scheduled cron job is already implemented using PwCron. About the Event-trigger dropdown, its meant to work with LazyCron but I had in mind to give a try to interact with PwCron directly from the interface of Duplicator. For the situation where a package will be built manually at the same time as a scheduled cron job, there is a File Locking technique implemented, so it should not be an issue. It should not be a problem - In the todo list ! Thanks you ! Any clue how I could start that ?
-
Good point. How about a simple button "Backup Now" to do it ? This is a thing in which I have to brainstorm; But definitely yes. I am looking for a good solution to name the packages files. Thanks here. It was stipulated on my first post, this will be the best part of the module This one is the hardest part to implement in my point of view so it will come in a second time but ASAP! What I mean by ASAP - I will finish to implement Amazon upload and the s/FTP as this last feature is required to jump to the installer one.
-
A small preview of uploading package to Dropbox and GoogleDrive at the same time : In this screencast I am using my own connection, thus the upload process is a bit slow.
-
Currently the module is functional, I use it on every site and it work quite well, no error since November. At this moment only ProcessWire >3.0.0 is supported but I was planning to release it being compatible with 2.7. What you can do with the module (working features) : You can modify package's settings : name of final filename, ignore some folders, set a maximum number of packages, remove older packages and trigger the backup function with LazyCron or PwCron. Save the package in a local folder Upload package to Dropbox Upload package to GoogleDrive Remove packages from those cloud services (depending on the configuration set) *A package is a ZIP file bundled with a database dump and a full website directory dump (site, wire, etc) I think I will finish the first public version and we'll see what happens as I tested the @arjen's fork of @rot's module and didn't managed to get it working as expected. I also find my module more "simple" to use; I mean you set options, check some checkbox, set a cronjob, click submit and let it run. Also I saw some good features like emailing the logs on failure that could be added easily. I'll look at the module a little closer this afternoon. Thanks for your input guys.
-
Backend and Frontend Shop Catalogue for PadLoper
flydev replied to kongondo's topic in Module/Plugin Development
Just do it Kongondo! I would have bought it directly. It would have saved me a lot of time for the project I'm going to work. -
Last update: June 2024 Current stable version: 1.5.4 Dev version: github dev-branch You can find the module on Github and in the modules directory : https://modules.processwire.com/modules/duplicator/ https://github.com/flydev-fr/Duplicator/archive/master.zip Screenshots / Features Dir and files exclusion CRON job Advanced settings Local and Cloud storage duplicator.mp4
- 530 replies
-
- 23
-
Hi OpenBayou, did you read this ? https://processwire.com/api/modules/markup-pager-nav/
-
I helped @raulyjo through MP, the problem did not come from the module. It was missing a page and the template code that were probably forgotten during the migration. All good now
-
Hi @franciccio-ITALIANO take a look at this post:
-
You need to create a new checkbox field, give it a name like autofbpost and add the field to your template. Next configure the module: in the inputfield On/Off Checkbox, enter the name of the field you created.
-
Hi @Karl_T, the problem is not inside the code. Please check this thread :
-
I uninstalled the module, applied your change (the zipped file didn't include the modifications), deleted the plugin pbckcode and commented the JS code, reinstalled the module and applied the Textformatter, still no luck, same error: Its crazy. It will be cool if someone with a site build with the Uikit frameworks could try too. And if you want I can give you a superuser access to the site. For information I didnt tried on a fresh pw install (I need it on this site). Edit: The function check shouldn't be for the str_get_html() instead of file_get_html() ?