-
Posts
95 -
Joined
-
Last visited
-
Days Won
2
Alessio Dal Bianco last won the day on December 3 2013
Alessio Dal Bianco had the most liked content!
About Alessio Dal Bianco
- Birthday 08/28/1986
Contact Methods
-
Website URL
https://alessiodalbianco.me
Profile Information
-
Gender
Male
-
Location
Udine, Italy
Recent Profile Visitors
5,520 profile views
Alessio Dal Bianco's Achievements
Full Member (4/6)
115
Reputation
-
Hello to everyone! As @HerTha wrote, I resumed my very old module in order to make it compatible with PHP 8.1 and I've done the bare minimum (for now) for make it work. I did not create yet an Official release because: In order to not break things for the current installations, I still need to adapt and test the new PHP class that @DavePintroduced in its own fork: LukeMadhanga\Pdf2Text::pdf2txt($filefullpath); I suspect that was already included in his composer or something. The module as you know is quite old, I tested it with the latest version of Processwire some days ago and it seems to work fine overall, if you have any suggestion on the module structure let me know here https://github.com/USSliberty/Processwire-site-indexer/pull/4! I am curious if there is some kind of metrics on how many installations/downloads have my module, I saw that during these years many (better) alternatives have popped up, in the end I would like to know if any of you still need support for it in terms of features and/or bugs or I can just release this minor version and mark the module as deprecated or something else. Alessio
-
Hi folks! tonight i searched a tool for create an UML directly from the source code of PW. The result is a 9MB of PNG Enjoy it http://zoom.it/hT0q
-
Italian (it-IT)
Alessio Dal Bianco replied to Alessio Dal Bianco's topic in ProcessWire Language Packs
Hi Soma! yes, i'm currently maintaining this Language Pack, not so frequently but i am on it. If it needs some other translation i can help willingly I will work on Comments module and the error messages. @italians If some other want to contribute please contact me on pm. -
Thank you all for appreciation! @3fingers You are right. Maybe when i will work on the mobile version i will insert the "LanguageSupportPageNames" module. For now i'm using this in header: <link rel="alternate" hreflang="x-default" href="<?php echo $page->httpUrl ?>" /> <link rel="alternate" hreflang="en" href="<?php echo $page->httpUrl ?>?lang=english" /> <link rel="alternate" hreflang="it_IT" href="<?php echo $page->httpUrl ?>?lang=default" />
-
I all, i have update the module. Some fixes for repeater fields plus the addition of Diderik (Thank you!) ADB
-
I know this line very better but in this case i removed it, since this site (for now) is only for desktops. In fact apeisa with his android (also on my iphone) was unusable, the page is 960px wide and the device 480px (more or less), and the metatag force the whole page to have the device width; the result is that the page was cut.
-
The mobile version is a "coming soon". But i can remove the metatag viewport that in this situation is useless :/
-
I used this one: http://caroufredsel.dev7studios.com/ It have a lot of features!
-
Hello everyone! I launched yesterday another PW site: http://compab.it The modules that i have used are: • Site wide file manager. • CKeditor • Language Field Tabs • Modules Manager • Site indexer • Ergo ADMIN THEME Enjoy!
- 12 replies
-
- 11
-
Hi all! i have noticed that if enable the cache (for example on homepage), if I switch language the page is always the same, so i imagine that cache file is the same for any language. I wonder if there is any option that can save one cache file for each language. Alessio
-
Hi jdiderick, Thank you for the addition! I will release a new version soon with your code and some other improvements. ADB
-
Hi all, i have some problems when trying to add more pages with asmSelect. I have a field called "categorie" that contains an array of pages ( imagine the behavior of categories ). If i try to add one page from that field all works fine, if i try to add more than one page i get this error: I found that "1007" is the id of the default language. Maybe could be useful for reproduce this error. The field config is like this: There is something that i am missing ?
-
Hi doolak, i've tested it and works fine. But i don't know if there are drawbacks since this function return a string instead of float, and is "hookable" by other modules.
- 11 replies
-
Hello haha, one question: Have you reinstalled processwire and after transferred the templates + database ? The password are "salted" with a key defined in /site/config.php. This key must be the same as previous installation, if not you cannot login. /** * Installer: User Authentication Salt * * Must be retained if you migrate your site from one server to another * */ $config->userAuthSalt = '[alphanumeric string]';