-
Posts
3,015 -
Joined
-
Last visited
-
Days Won
20
Everything posted by szabesz
-
So, I am told...but at the cost of what? You get a slower app? Just what I've read. But the point about using technology you already know (HTML, etc) is a good thing (most times). Yeah, pros and cons. It all depends on what you want to develop. For games, being native is the best option but anything else can be ok built on Cordova. "Speed" (regarding both app performance and development time) highly depends on the framework(s) being used. I do not really have a lot of experience so I am not the one to get into deeper details, I just wanted to draw attention to a few important points.
- 35 replies
-
Sure, but as Adrian said the core and its plugins are "native". What else could they be? Last time I built an app with Cordova was 5 years ago and it was pretty problematic but it worked for sure. I guess since then things must have matured a lot and naturally developing hybrid apps takes a lot less time, also you do not have to learn Java, Swift, Objective-C, "all at the same time" but you can put to use a great deal of knowledge you already have. Last winter I googled around to see what is available to ease Corodva based development and by spending a day on the research I concluded that ionicframework.com is the one I would pick. No project in sight for me though, so I stick to PW these days
- 35 replies
-
Do not try to be more creative than they are! They might take it as an insult I like the site too, btw. Some big images were a bit slow to appear and the hamburger menu is a bit too small but all in all it is a very nice site!
-
Hi, Since I have ListerPro, I use that to change the defaults. Sorry if it does not help, maybe some else can can provide another solution, not requiring ListerPro.
-
Migrate Processwire with Plugin but Backend does not work as expected
szabesz replied to Maxplex's topic in General Support
@Maxplex Did you use this one by any chance? https://modules.processwire.com/modules/duplicator/ Duplicator should work but as @Robin S pointed out, manual cloning of the site should work too. I used to install a few sites at 1&1 without issues. -
Another issue report: Right after installing and accessing Duplicator's Package Manager, when no package has ever been created: 2x PHP Warning: filesize(): stat failed for .../site/assets/logs/duplicator.txt in .../wire/core/FileLog.php:225 1× PHP Warning: filesize(): stat failed for .../site/assets/logs/duplicator.txt in .../wire/core/FileLog.php:237 1× PHP Warning: file(.../site/assets/logs/duplicator.txt): failed to open stream: No such file or directory in .../wire/core/FileLog.php:238
-
I see. However, it just "fails" silently. Maybe a notification to the user? Or did I get one just missed it?
-
@flydev Hi, I was fiddling with the package name config and accidentally created one package named like this: 2018-02-05_21-16-00-{timestamp}_mysite_loc.zip.package.zip I could not delete it with the Package Manager's trash icon + clicking the Delete button of the confirmation dialog (nothing happened). Maybe because of the curly brackets?
-
-
Thanks! These sort of cryptic patterns ARE very useful but only after I have implemented them properly
-
I think I figured it out, I am missing the first pipe character and that is why I got the warning.
-
@adrian I've just installed the module (2.0.12), I have an issue. PHP Notice: Undefined offset: 1 in .../site/modules/FieldtypePhone/FieldtypePhone.module:320 when saving the module settings with this: /*Hungary*/ hungaryAreaCodeOnly {([phoneAreaCode])}-{[phoneNumber,0,3]}-{[phoneNumber,3,4]} If I add " | 1-21-123-4567" to the end, the notice is gone. You noted this new "part" in a post here and provide an example on the module's config page but it did not seem to be mandatory.
-
Also, you do not really need the installer. If you have the db and the files, then they can be restored manually. The installer is there to make the process a lot faster and semi-automatic, less error-prone.
-
It is in: .../site/modules/Duplicator/Deploy/installer.php And that means: https://github.com/flydev-fr/Duplicator/blob/master/Deploy/installer.php
-
Hi, Download the installer called "installer.php" and put it next to the ZIP package in the site root directory. So they must reside in the same directory. Access installer.php from the browser.
-
I agree, thanks!
-
This is OT, sorry, but if there is enough interest, the last few posts could be moved to a dedicated Topic... I do not have to much spare time this year but I would love to help anyone interested in developing an alternative module directory. For example there are such things for WP: http://www.wpmeta.org/ https://managewp.org/plugins/best https://proplugindirectory.com/ and more... ProcessWire is a native cataloging system, as we all know. So it would not take too much time for a few experienced devs to come up with something useful and opensource. What I could contribute is UI/UX design and creating and editing content, for example. We've read lots of other posts about willing to help to boost the ProcessWire documentation, so I guess there should be enough of us to turn it into a success story. This site I propose could be a "module+snippets finder", ie. a "ProcessWire Solutions" site, meaning both modules and snippets could be in the database, making integrated "solution" searches possible. Anybody up to the challenge?
- 11 replies
-
- 2
-
-
- megapixels
- resize
-
(and 3 more)
Tagged with:
-
I'm pretty sure your post here made a difference but that is quite ok, I think.
-
Cool, thanks!
-
[solved] How to disable CKEditor's style preview in the dropdowns?
szabesz replied to szabesz's topic in General Support
Thanks once more! I think I start with this one and see how it goes: .cke_panel_list * { font-family: sans-serif, Arial, Verdana, "Trebuchet MS"; font-weight: normal; font-style: normal; font-size: 14px; margin: 0; } .cke_panel_listItem a { padding: 2px 7px; } padding: 2px 7px; makes the list more compact vertically. -
[solved] How to disable CKEditor's style preview in the dropdowns?
szabesz replied to szabesz's topic in General Support
My bad... I already have that file but I named it differently, sorry for this I added the rules to the end of the css and it does the trick indeed. I just need to refine it a bit! Thank you! -
[solved] How to disable CKEditor's style preview in the dropdowns?
szabesz replied to szabesz's topic in General Support
Thanks Robin! Looks promising. Is there anything I need to do to make it load? So far no success, as this contents.css does not seem to be included this way, I cannot find it... -
Images field - upload already uploaded images
szabesz replied to Marco Ro's topic in General Support
And there is the commercial module called Media Manager: -
[solved] How to disable CKEditor's style preview in the dropdowns?
szabesz replied to szabesz's topic in General Support
As @BitPoet said, there is AdminCustomFiles module (I've never used it), and AdminOnSteroids module can do it too. Also in config.php something like this: $config->scripts->add($config->urls->templates . "admin/admin_global.js"); $config->styles->append($config->urls->templates . "admin/admin_global.css"); A related good read: http://soma.urlich.ch/posts/custom-js-in-processwire-admin/