Jump to content

iNoize

Members
  • Posts

    165
  • Joined

  • Last visited

Everything posted by iNoize

  1. Thaks for your answer I already installed the module from modules manager. Now I also installed the second version. Should i leave the first od better remove ?
  2. Hello, where can I get the PIM2 Module ? currently used with pw. 3.0.23 from the ModulesManager cant find the pim2 Link the one on the first side doesnt work for me. And is it on the Memory only ? If i check the variations the is see something like this. http://prntscr.com/bmm8aa The first two images are generated with the PW Api. If its only in the memory it couldnt be used with many of images on one site ? Tnx
  3. Thaks a lot, is it possible to detect the land and switch to right subdomain ? Are there some Modules or Snippets what I can use ?
  4. Thanks for the advice. For this solution i will use multipage but nice to know thats possible for other projects
  5. Okay currentky it works but dont know thats right, i see on de.mydomain.com one version of site on dev.mydomain.de the base version (other DB) of my site. Do i have alvays to install a new version or i can copy the site-de to site-en, site-pl ..... and create copys of the DB ? I have to login in each version seperatly ? Its only same core that the installation use ? So i can update the core an once but have uptodate the modules seperatly ? Greetz
  6. Hello, Option 1 doesnt really work for me https://processwire.com/api/modules/multi-site-support/ on pw 3.0.22 I have an installation. I copy the Site folder and call it site-de if i modyfi the index.config.php eg function ProcessWireHostSiteConfig() { return array( /* * Some Examples (you should remove/replace them if used). * Just note that the values must begin with 'site-'. * */ 'de.mydomain.com' => 'site-de' // 'www.mydomain.com' => 'site-mydomain', // 'dev.mydomain.com' => 'site-dev', // 'www.otherdomain.com' => 'site-other', /* * Default for all others (typically /site/) * */ '*' => 'site', ); } but i see only blank page or error 404 " 404 page not found (no site configuration or install.php available) " whats the Problem ? Or how to handle this on pw 3.0.22 Thanks
  7. Hello, i need some help with an multilanguage site, I have about 5 languages the problem is e.g. that in the Newssection is different content for different countries. The editor from one country should only see his own language. i dont really know how to sove this problem, is it possible to set rights on the multilanguage fields and tabs ? Or is there a better way ? Ive seen the module but dont really know is this the right way ? The next problem how to sitch the default language ? If the default is in German I have to create always an German page http://prntscr.com/bizxca but if i dont need an default page ? How to handle this ? Tnaks EDIT: I think I found the solution for my Problem http://processwire.com/api/modules/multi-site-support/ Multisite ? Or what the Profis say ?
  8. @justb3a Thanks a lot but something goes wrong there in your example ?
  9. @gebeer thanks for your advice it works for me like in the examples but what i need is the last comments self, if put out the whole feed <pre> <?php vardump($feed); ?> </pre> there are no comments in the array ? So my question was is it possible with this module ? or is it possible to rewrite a litle this module ? my php skills are not so good that i could do it self.
  10. Hello, seems to be the right one. But how to make a call now ? From the Module ? I treid do realize it self but my php are not enough for this currently.
  11. Hello, how to handle more than 2 languages ? Ive for example en (as default) , de, tr, cz and maybe there will be more later. So is it possible to use this module for more than 2 languages too ?? I have the problem that I need some pages only in English and German and some pages in other languages. Special in the news section. The title field on create the page I can't switch off so I can hide all other pages in the settings but not the default. Tnx
  12. Hello again, how can i get the {media-id} from the current image ? https://www.instagram.com/developer/endpoints/comments/ I want to get the comments but in the standard feed there is no media-id or comments in the array ? What i have to do to get the comments ? Thanks
  13. Hi, thanks for your answer. I have no current solution. I need to fill the $map->address value. I will try to export my XML with combined data. Example Street postal code city in one value but how to fill only $map->address the $map variable has three values $map->lat $map->lng also
  14. Hello, i need some support to realize this. I've two arrays. The one is an simple pgaeArray which i generate with $pages->find. The other is a little bit complicated. It's also an array but to get my values I have to loop an foreach because it's a part of a pagevar from my Array. So Array 1 is an pagearray and array two is only a foreach loop with values. How to add this values to a new page array an then compare array one and array two? I have to set urls if array 1 part of array to. If not then it should be only text. Tnaks
  15. Im not sure but check the security settings. I mean I had some kind of problem some months ago. Siteguard or something has to be disabled. Im not really sure now. Have to check on computer later
  16. Low budget ? Seen currently only on the phone. Wondering about responsible layouts in 2013
  17. ok is the installation in a subfolder ? e.g. www.yourdomain.com/ <- index.php // index of pw or www.yourdoimain.com/subfolder/index.php //subfolder is the name of your folder Than you have to change to # RewriteBase / RewriteBase /subolder/ # RewriteBase /~user/
  18. 1and1 check your htaccess I know this problem there # RewriteBase / # RewriteBase /pw/ # RewriteBase /~user/ change to RewriteBase / # RewriteBase /pw/ # RewriteBase /~user/
  19. Thanks Ive seen this post, but the simple examples are how to build forms with the api. I will create my own form fields.
  20. Hello, is there a full example somewhere how tho handle Forms ? Not created with the Api simple own form via the input field ? Name Email Checkbox Attachment How to set required fields ? Ive found a lot of different examples now im a little bit confused and dont really know what to do ? Yes I know there is a FormBuilder I have one licence but I will learn to handle also without FormBuilder the PW code. Tnaks
  21. Hello, i have some problems with the Forgot password function ? I have both calls for login and register on one page now i if try to restore the password i see the url two times the reset field so if i use one of them i get the mail but on click on the link eg http://domain.de/registrieren/?forgot=1&user_id=1125&token=b13bd5da7e7458479868969 nothinh happens ? I see also this two fields and jump also to http://domain.de/registrieren/?forgot=1 how to not render the register for the page if user try to reset password ? Tnx
  22. Sure , i try to import places from xml. is it possible to fill the $map->adress value with this module ? Tnx
  23. Hi, seems nice worked also for me with simple XML files. Is it possible to fill also an adress in to an $map field ? I have fields like Name Street City and how to fill an $map->adress value ? Thanks
  24. Oh it was much more easier $letter = strtoupper(mb_substr($tag->title, 0, 1, 'UTF-8')); works now Hello, I have a strange output problem now. ÄÜÖ dont show correctly It looks so What happens here and how to convert to the right chars ? $letter = strtoupper(substr($tag->title, 0, 1)); Tnx
  25. Hello, is it possible to set more than one hashtag and set limit for the page ? My idea is to inegrate it in a blog. and only e.G. 4 last pics with hashtags should be visible on the current post. maybe something like <?php $feed = $modules->get('InstagramFeed')->getRecentMediaByTag('processwire, cms'); ?> Thanks
×
×
  • Create New...