Jump to content

slkwrm

PW-Moderators
  • Posts

    321
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by slkwrm

  1. Thanks, Ryan! It's really cool how easy things can be done in PW! I decided to translate backend as you described here. Everything works fine, but how do I translate the default text in the search field? I tried to search using the string from the page source, but had no luck.
  2. I think Adam wants a possibility of using formatting for custom title output, so he could construct his own title from page fields
  3. Thank you, Ryan! I use yesterday's version. I'll let you know if I encounter this mysterous things again
  4. I'm trying to unlock one of admin pages to rename it, but after checking off a tick in "Locked: Not editable" and trying to save the page I get a message: "Note that this page is locked and no changes will be accepted unless first unlocked." and my change (unlock page) don't get saved. Is it normal? If yes, then what is the right way to unlock pages? Edit: It gets more wierd. Suddenly all tickboxes next to Statuses on a Settings tab dissapeared, after several refreshes they appeard again.
  5. Thank you, Ryan. Not sure about different transliteration in different langages, only assumed it. But only for Russian language there are several standards of transliteration and also not standardized but very popular common transliteration format. So maybe it makes sense to take it out to a config option in future.
  6. Hi Ryan, I have a request for adding transliteration of russian letters. Could you add this to InputfieldPageTitle.js? (It seems like it's time for me to learn some Git ) 1 to 1 letters: str1 = "абвгдеёзийклмнопрстуфыэ" str2 = "abvgdeeziiklmnoprstufye" 1 to >1 letters: srch = ['ж', 'х', 'ц', 'ч', 'ш', 'щ', 'ю', 'я'] repl = ['zh', 'kh', 'tc', 'ch', 'sh', 'shch', 'iu', 'ia'] ignored letters: ъ, ь The above matching is taken from the state standard for new passports ГОСТ Р 52535.1-2006 More info on Russian alphabet It may seem strange but there isn't any universal standard for russian alphabet letters transliteration. So it may become handy to have this match tables switchable somewere in PW. It would allow to choose transliteration standard (also may be handy for different locales of the website as transliteration of the same letters, possibly, may vary from language to language). Thank you!
  7. slkwrm

    Need a new mouse

    Here in Russia we still have Logitech MX Revolution in stores. Never used such mouses though.
  8. @Adamkiss Yes, definetely it's not really good solution, didn't know anything about upgrade.php @Shane You should follow Apeisa's instructions and use upgrade.php
  9. I've never upgraded PW, but it seems like you just don't have "flags" field in your "templates" table. If you use PHPMyAdmin try to add field manually. Go to your PW db, choose "template" table, add field (after fieldgroups_id). Enter this values: Field: flags Type: int Length/Values: 11 Default: As defined, 0 Or if you use prefer using sql statement, then connect tou your MySQL server: mysql>use yourprocesswiredatabase (replace it with your actual PW database) ALTER TABLE `templates` ADD `flags` INT( 11 ) NOT NULL DEFAULT '0' I hope this will help you to solve this problem, didn't test it though.
  10. Apeisa, thanks for thorough answer! Very educative. I wander would it be hard to implement inputfield module "Tagcloud select". It would work with pages used as tags and let user select\unselect tags by clicking on them in a tagcloud. Also would be nice to have special field to manually input tags with autocomplete and "synched" with tagcloud (the way it's done when you tag a bookmark on delicious.com). So if user adds a tag that doesn't exist yet, a new tag-page is created in the backgroud. I'm a beginner at js and have limited experience with php, so don't really know how effort it will require. Maybe just should start writing it
  11. @Apeisa I tried your module yesterday, added some cool pics to my test site Working great! Do you think about implementing some kind of pagination? How long did it take you to write it?
  12. @Apeisa: Thanks for the tip with custom selector. I didn't notice this field before I think it would be nice to extend PageListSelectMultiple's functionality so user could select not only direct children of selected page but also, optionally, all its descendants on lower levels. It would eliminate unncessary clicks to get to the parent of selectable pages (which you should do currently if you didn't select any parent) and user still would use three structure to select pages (which is not the case with SelectMultiple, AsmSelect and custom selector) limited by the branch under selected parent.
  13. @Apeisa Thanks for interesting links. Definetely Drupal community could be a role-model as long as visions are the same. I heard a lot of good things about it. And during the time I was tinkering with Drupal I also had only good impressions from it. Hey, and longevity of their community is also a sign of good health @Ryan Yep, that's weird. For some reason the term "shareware" is avoided currently, but we still have "trial" I've just remembered about an article I read some time ago on Ryan Thrash's (one of MODx creators) blog. It's called Open Source vs. Open Core and may be of some interest in the context of this discussion. They are trying to apply Open Core ideology to their new Revolution branch of MODx and it seems quite promising, because currently MODx's getting a lot of momentum. Though as far as I understood some people consider Open Core nothing more than hype and just another trendy marketing word. There are two links at the bottom of the article which provide additional information on the topic. http://thrash.me/tech-and-modx/open-source-vs-open-core.html
  14. My 2 cents, although I'm new here. I think that strong point of PW is that it's very flexible platform comparing to others. It means that creating a website with PW beneficial in the first place (in terms of productivity and quality of a product) for people who can write code and create non-trivial designs (opposite to joomla or some other cms's where you can just install some modules and get yet another "joomla-looking" website). Also from designer's side PW requires at least basic knowledge of php and some agreements between designer and server-side developer, so designers can't just create front-end themes for PW that would suit most websites as with Wordpress. IMHO, PW is good at creating very custom, "handcrafted" websites and can't be used by total newbies (which is a good thing ) And this leads me to conclusion that community of developers using PW should be more service-oriented rather then product-oriented concerning making their living from. So I think that most of the modules should be free, but customers should pay for fine-tuning and integration. As for paid modules I think that such ones as online shop and all modules conserning sales and integration with payment systems can and should be paid. It's IMHO, maybe I'm missing the point, this is just how I see things at the moment at the current level of my understanding
  15. Both 2.0. and 2.1. I use XAMPP on Windows.
  16. I have to say that I used cyrillic titles in PW and everything worked like a sharm. I think the problem is in php or apache config, not PW.
  17. Don't know about FF3, but in IE8 it looks fine. Everything in its right place.
  18. Thanks, Ryan! I didn't realize that it can be the issue. Probably, I should replace my torrent files directory to another hard drive
  19. Hi, guys. Today when I logged in to my local PW website I got this error. Can anybody help? Exception: Got error 28 from storage engine (in D:\WEBDEV\xampp\htdocs\pw21\wire\core\Database.php line 72) #0 D:\WEBDEV\xampp\htdocs\pw21\wire\core\DatabaseQuery.php(83): Database->query(Object(DatabaseQuerySelect)) #1 D:\WEBDEV\xampp\htdocs\pw21\wire\core\Pages.php(286): DatabaseQuery->execute() #2 D:\WEBDEV\xampp\htdocs\pw21\wire\core\Pages.php(138): Pages->getById(Array, Object(Template), NULL) #3 [internal function]: Pages->___find('limit=5, sort=-...') #4 D:\WEBDEV\xampp\htdocs\pw21\wire\core\Wire.php(267): call_user_func_array(Array, Array) #5 D:\WEBDEV\xampp\htdocs\pw21\wire\core\Wire.php(229): Wire->runHooks('find', Array) #6 D:\WEBDEV\xampp\htdocs\pw21\site\templates-admin\default.php(82): Wire->__call('find', Array) #7 D:\WEBDEV\xampp\htdocs\pw21\site\templates-admin\default.php(82): Pages->find('limit=5, sort=-...') #8 D:\WEBDEV\xampp\htdocs\pw21\wire\core\admin.php(74): require('D:\WEBDEV\xampp...') #9 D:\WEBDEV\xampp\htdocs\pw21\site\templates-admin\controller.php(13): require('D:\WEBDEV\xampp.
  20. Thank you, DRILONB!
  21. Heard good things about Circles interface. Unfortunately, Google suspended regestration to G+, so I haven't had an opportunity to check it. DRILONB, if you have an invite, please, send it to 2silkworm[at]gmail(dot)com Btw, the traffic jam picture is from Moscow. Tough city
  22. Here's a showing interface for image crop in gallery addon in MODx Revo, although it uses ExtJS in its backend. Hey Ryan, this Dictator branding rocks. Hitler CMS would be even cooler ;D
  23. Thanks, Ryan. I don't know actually yet in what scenarios duplicate pages can be useful, but pretty sure they exist. I just try things and post here my observations.
  24. lol ;D I thought "vehicle" means any transportation device in English.
×
×
  • Create New...