-
Posts
516 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Gideon So
-
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
- 7 replies
-
- permissions
- blank page
-
(and 1 more)
Tagged with:
-
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
-
What is the differences between Browser Sync and VS Code live server?? Gideon
-
Hi @alexpad, You can do it with adding inline css rules like style="background-image: url("<?php $slide->yourImageField->url; ?>") " Gideon
-
Hi @shogun, Welcome to the forum. There is no global field as far as I know. Gideon
-
Unable to login on second machine with exact same setup
Gideon So replied to derelektrischemoench's topic in General Support
How and where do you host your website? Gideon -
Unable to login on second machine with exact same setup
Gideon So replied to derelektrischemoench's topic in General Support
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 -
Method Page::template does not exist or is not callable
Gideon So replied to Vigilante's topic in Getting Started
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 -
How do I link to a page with a language in a multilingual website?
Gideon So replied to kaz's topic in General Support
Can you show me the home page settings? Gideon -
How do I link to a page with a language in a multilingual website?
Gideon So replied to kaz's topic in General Support
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 -
How do I link to a page with a language in a multilingual website?
Gideon So replied to kaz's topic in General Support
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 -
Best workflow to map custom website development with ProcessWire?
Gideon So replied to shogun's topic in Getting Started
Same here. Build the site in html first and then implement whatever you want into it. -
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
-
Hi @aComAdi, Just a wild guess. Have you tried setting the image field limit to 1? Gideon
-
[SOLVED] 301 redirect loop on all pages except homepage
Gideon So replied to a-ok's topic in General Support
Do you do any redirect in your template or Apache settings?? Gideon -
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
- 10 replies
-
- 1
-
-
- wiremail
- wiremailsmtp
-
(and 5 more)
Tagged with:
-
Hi @uliverse, It is $input->get($q). https://processwire.com/docs/start/variables/input/ Gideon
-
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
-
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
-
Hi @Anton, Glad to hear that you solved the problem by yourself. Good job. Gideon
-
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
-
Are you sure the Apache rewrite module loads properly? Gideon
-
Yeah!! Long time Linux user. From Fedora Core 1 (2003) to Fedora 30 (2019). Very happy. Gideon