-
Posts
485 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Gideon So
-
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
-
Hi, I have a image field which set limit to 1 and it works fine until I upgrade the core to 3.0.137. Everytime I try to upload a image to the field, it causes the following error: Recoverable Fatal Error: Argument 1 passed to ProcessWire\Pageimage::setOriginal() must be an instance of ProcessWire\Pageimage, null given, called in /home/web/processwire/WireCore-3.0/core/PageimageVariations.php on line 257 and defined (line 1334 of /home/web/processwire/WireCore-3.0/core/Pageimage.php) When I reload the page and try to edit the page, the backend looks like the following screenshot. The old image is not deleted. And I found that the image record still exists in the database. Any clue is welcome. Gideon
-
How to get a File Download link in a Page : PDF file attached
Gideon So replied to JeevanisM's topic in API & Templates
Hi @JeevanisM, Let me see. You should have code like this: <a href="<?php echo $page->pagefile->httpUrl; ?>">Click here to download</a> The code above should output a link to download the file. Gideon -
Hi @iNoize, Go check your FB app settings and remove all unnecssary permission. Gideon
-
How to get a File Download link in a Page : PDF file attached
Gideon So replied to JeevanisM's topic in API & Templates
Hi @JeevanisM, Try this: echo $page->pagefile->httpUrl; $page: the current page pagefile: the page file field httpUrl: the full url of the pagefile The whole statement means echo the full url of the pagefile in current page. Hope this helps. Gideon -
WOW. This is very impressive. Gideon