Jump to content

Gideon So

Members
  • Posts

    516
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Gideon So

  1. Hi @fruid, Welcome to the forum. ProcesszWire doesn't write anything into your template file. Please go through the tutorisls first and come back for help later. https://processwire.com/docs/start/templates/ Gideon
  2. I started working with VS code live server a few weeks ago. From what I learn from the video you posted here, both works more less the same. I have just found that there's a browser sync extension which support php, jsp and asp in proxy mode. https://marketplace.visualstudio.com/items?itemName=jasonlhy.vscode-browser-sync Gideon
  3. What is the differences between Browser Sync and VS Code live server?? Gideon
  4. Hi @alexpad, You can do it with adding inline css rules like style="background-image: url("<?php $slide->yourImageField->url; ?>") " Gideon
  5. Hi @shogun, Welcome to the forum. There is no global field as far as I know. Gideon
  6. Hi @derelektrischemoench, It is probably because of the effect of fingerprint settings. Please check the following page and look for fingerprint. https://processwire.com/api/ref/config/ Then put the correct $config->sessionFingerprint value into your config.php file Gideon
  7. Hi @Vigilante, I think the syntax should be $item->template. Read the below page and look for template. https://processwire.com/api/ref/page/ Gideon
  8. Can you show me the home page settings? Gideon
  9. Hi, Do you enable the language in the home page?? If must enable the language in the home page, otherwise it doesn't work. Gideon
  10. Hi @kaz, This is the limitation of the editor link function. Don't use the page selector. You should enter the url by hand. Gideon
  11. Same here. Build the site in html first and then implement whatever you want into it.
  12. Hi All, I found a problem that if I take a picture with my mobile phone in portrait mode and then upload to a PorcessWire site, the photo is not display correctly in the backend. It is rotated 90 degree anti-clockwise and the thumbnail is up-side-down. You can see it in the attached image. Any clues how to fix it?? Gideon
  13. Hi @aComAdi, Just a wild guess. Have you tried setting the image field limit to 1? Gideon
  14. Please show us some code in your template in order for us to give you some useful help rather than guessing what the problem is. Gideon
  15. Do you do any redirect in your template or Apache settings?? Gideon
  16. Hi @Mithlesh, Obviously It is nothing wrong with the WiresMailSmtp. There is some error about the submission of the form. Please provide code about how your form constructed and the code about how you manage the form submit. Then we can give you some useful hints. Gideon
  17. Hi @uliverse, It is $input->get($q). https://processwire.com/docs/start/variables/input/ Gideon
  18. Hi, No need to concatenate your output which means no need to use <?php $content .= page()->your field; ?>. Just do this: <?php echo page()->your field; ?> Gideon
  19. Hi, If you do not login to the system. Your code surely return a null page array. Please check if you are login when you check the result. Gideon
  20. Hi @Anton, Glad to hear that you solved the problem by yourself. Good job. Gideon
  21. What I would do is: 1. go to the directory that your db tables stay to check if the pages table exists. If it does exists go to step 2, otherwise go find your db backup if any. 2. repair the table with myisamchk / phpmyadmin repair table option 3. see if the site works properly. Gideon
  22. Are you sure the Apache rewrite module loads properly? Gideon
  23. Yeah!! Long time Linux user. From Fedora Core 1 (2003) to Fedora 30 (2019). Very happy. Gideon
  24. Seem this is a bug when set limit to 1. I will file a bug report to github. https://github.com/processwire/processwire-issues/issues/961 Gideon
×
×
  • Create New...