Jump to content

justb3a

Members
  • Posts

    321
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by justb3a

  1. Compare the entries from $options with the entries from $entryPage->titel. $options->value must match $value->titel. Maybe you have to change titel to value: $valArray[] = $value->value;
  2. Try to remove the point before the equal sign: $valArray[] = $value->title;
  3. Have a look here. include=hidden $vorstand = $page->children("vorstand=1,include=hidden,sort=sort");
  4. Wow! Thank you so much. I noticed from time to time that the "backend"/admin area is responding faster on the server as on my local machine. But I had no real idea what causes this. In that time I deactivated Xdebug by disabling some parts in the php.ini. Now I deinstalled Xdebug completely and BÄM™ the "backend" loads much more faster (instead of some seconds to below one second). So it's seems to be a difference between disabling the relevant parts in the php.ini or deinstalling it completely. I found an interesting article discussing this issue.
  5. https://studio8.productions/ The title could be optimized (only contact page).
  6. This should work: $sortedPages = $pages->find('selector'); $prevPage = $page->prev($sortedPages); $nextPage = $page->next($sortedPages);
  7. Who would forget this ?? v0.2.1 - Regardless whether a mail has been sent or not, if saveMessages is enabled, the data will be stored. Besides a corresponding log entry will be saved.
  8. #TYPO3: Gibt es denn nun eine Möglichkeit für FAL-Datensätze (sys_file, sys_file_metadata) eine andere Pid als 0 zu vergeben? @einpraegsam

  9. new version 0.2.0 brings in some new features: supports multiple instances allows usage of full ProcessWire API in options allows to render more than one contact form on a page allows to send more than one email makes validation hookable read on
  10. For a site with `https` it doesn't make a difference: http://isit.pw/?url=kf-interactive.com - Yup http://isit.pw/?url=www.kf-interactive.com - Yup http://isit.pw/?url=http://www.kf-interactive.com - Yup http://isit.pw/?url=https://www.kf-interactive.com - Yup But for a site without `https` it does make a difference: http://isit.pw/?url=www.schau-platz-wittenberg.de - Yup http://isit.pw/?url=schau-platz-wittenberg.de - Nope
  11. Why not using existing methods? As @LostKobrakai said, git submodules are not used by many because of the peculiar workflow. There is a module to handle core upgrades: Core Upgrade. Or - if you're familiar with using git - you may consider using wireshell, this is a command line interface like drush for drupal. Instead of `git submodule update` just execute `wireshell upgrade`. If there are no changes the `index.php` and `.htaccess` files are updated as well.
  12. I had to wait for Jenkins anyway…
  13. I added this endpoint, could you please pull develop branch and test it? Get a list of recently tagged media getRecentMediaByTag($tagname) <?php $feed = $modules->get('InstagramFeed')->getRecentMediaByTag('processwire'); ?>
  14. RT @getkirby: Get a 25% discount on all PRO licenses until Dec. 17 — https://t.co/JZo91eYOp9

  15. RT @tkadlec: Jotted down a quick post walking through the process I went through getting my sites onto HTTPS with @letsencrypt. https://t.c…

  16. The wait is over. wireshell 0.5.1 is here. https://t.co/OX8dA2bver Enjoy. #processwire - thanks @himg

  17. wireshell 0.5.1 Changelog Adds log:tail command including filters --limit=, --text=, --from=, --to= Adds log:list command Improves new command, support for site profiles (path/to/profile.zip OR one of beginner, blank, classic, default, languages), autocompletion for timezone Adds field:list command including filters --all, --template=, --type= Adds list field:types command Extends field:create command, allow custom field types Extends new command: adds ability to specify version of ProcessWire --dev, --devns, --sha= Extends upgrade command: adds ability to specify version of ProcessWire --dev, --devns, --sha= Removes unnecessary empty state checks Removes command aliases for better list overview #36 Fixes wrong iso format Improves changelog format Adds field commands field:delete and field:tag Adds tag option for field:create command Extends user:create command, ask for password and email address Extends backup:db command, add option --target ... and there is a brand new documentation! If you use the develop branch, there is another documentation branch. Furthermore all the documentation files are inside the repository, everybody can easily edit them. It's written in markdown and uses a post commit hook to build the documentation.
  18. I'll make sure that nobody is working on the content for that time (for example disabling login for editors). And I exclude tables which contain dynamic content, for example incoming contact requests ( ignore_tables = ['field_scf_email', 'field_scf_fullname', ... ]; ). But I know this doesn't handle all cases...
  19. That's interesting. Usually I have a local copy of each site. For sync (and deploy) I use capistrano. For example: cap production db:server_to_local. - db:server_to_local Import server database locally --- executes --- - db:dump_server_db dump server database - db:download_server_dump download server database dump - db:dump_local_db backup local database - db:import_server_db import server database locally - db:download_assets you will be asked, whether to fetch assets from server This way I can also sync between servers easily (production to staging for example).
  20. Thanks, upgrading to 2.7.2 fixes this issue.
  21. That's a good point. I remember that I changed something like that a long time ago. I found my snippet sql errors - check (mysql 5.6.15): sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" remove STRICT_TRANS_TABLES
  22. Fresh install 2.7.1 and upgraded to 2.7.2 2015-11-28 19:04:38Update #14: Initializing update 2015-11-28 19:04:38Detected core version change 2.7.1 => 2.7.2 2015-11-28 19:04:39Update #14: Completed! Edit: I just upgraded an "old" PW 2.6.20 installation without any problems: 2015-12-01 14:39:13Update #14: Initializing update 2015-12-01 14:39:13Detected core version change 2.6.20 => 2.7.2 2015-12-01 14:39:14Update #14: Completed! MySQL ❯ mysql --version mysql Ver 14.14 Distrib 5.7.9, for osx10.11 (x86_64) using EditLine wrapper Have a look at your database. What is the default for column created (table pages)? +-------------------+------------------+------+-----+---------------------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------------------+------------------+------+-----+---------------------+----------------+ | created | timestamp | NO | MUL | 0000-00-00 00:00:00 | | +-------------------+------------------+------+-----+---------------------+----------------+
×
×
  • Create New...