Jump to content

cyberderf

Members
  • Posts

    26
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

cyberderf's Achievements

Jr. Member

Jr. Member (3/6)

2

Reputation

  1. For the record I finally ended just adding this to MAMP httpd.conf , restarted MAMP/Apache and it works: <Directory "C:\Users\Fred\sites\mywebsite"> AllowOverride All /Directory> Thanks for help!
  2. Just installed locally on Windows 10 and MAMP. Installation went fine, but not the admin page. I used a virtualhost and load my site like this: local.mywebsite.com. Frontpage work fine, but httptp://local.mywebsite.com/processwire/gives a 404 error. My virtualhost in MAMP apache config is set like that, and MAMP is running on port 80. <VirtualHost *:80> DocumentRoot "C:\Users\Fred\sites\mywebsite" ServerName local.mywebsite.com </VirtualHost> I also added the following in windows hosts file, at the end: 127.0.0.1 local.mywebsite.com Any idea why the admin page dont load? Edit: if this could help, every other subpages dont works either. Ex. http://local.mywebsite.com/about/
  3. Quick question about this code insert instruction.. do I have to replace $page with something else? $map = $modules->get('MarkupGoogleMap'); echo $map->render($page, 'map'); ````````` In the above, $page is the Page object that has the 'map' field. Rreplace 'map' with the name of your FieldtypeMap field
  4. What with MarkupGoogleMap module also.. is it still required. I get an error trying to update.
  5. My API key is configured correctly in FieldtypeMapMarker. I have the same problem than kbutler64 tough... Saying that Google maps did not load correctly on each map. These are the error I get in Chrome inspector: util.js:221 Google Maps JavaScript API warning: NoApiKeys https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys lw.m @ util.js:221 util.js:221 Google Maps JavaScript API warning: SensorNotRequired https://developers.google.com/maps/documentation/javascript/error-messages#sensor-not-required lw.m @ util.js:221 As requested by the module document, i added this line in the head: <script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?sensor=false'></script> Google now says it's not required.. I also notice this code,required by Google API, it not loaded in the page. <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" type="text/javascript"></script> What should I do?
  6. ?‍♂️ Great it works now! P.S Perhaps it should added to the readme of the plugin.
  7. It's here at the end of the page. It's including itself with the plugin . But I added this at the end of my search.php template whihc was missing. <?php if(!$config->ajax) include("./head.inc"); echo $out; if(!$config->ajax) include("./foot.inc"); ?> Still nothing shows up!
  8. Installed on version 3.0.87, default minimal site profile. I added the correct id in the _head template, but nothing happen when typing.
  9. Hi guys! Is there a module or a tutorial to get a front-end autocomplete search without intensive development?
  10. Hi all! I have ProcessWire 3.0.42 installed with a lot of content. How can I install this bootstrap profile over it? Cheers Fred
  11. The admin theme is pretty cool... but with all respect due to the creators.. it'due for a redesign as for the look, and even usability. And there not a lot of themes for 3.x + version of PCW. A contest would be great!
  12. I want to have both things linked. Because in the backend it would be simplier for entering the data.
  13. I am not sure I get it.. You mean make the integer value field invisible if the the unlimited checkbox is checked?
  14. @fbg13 About the checkbox.. is there any way I could link it to the minutes field so there are related?
×
×
  • Create New...