Jump to content

Marco Angeli

Members
  • Posts

    119
  • Joined

  • Last visited

About Marco Angeli

  • Birthday 02/22/1969

Contact Methods

  • Website URL
    http://www.marcoangeli.net

Profile Information

  • Gender
    Male
  • Location
    Cividale del Friuli - Italy
  • Interests
    Books

Marco Angeli's Achievements

Sr. Member

Sr. Member (5/6)

33

Reputation

2

Community Answers

  1. Hi fruid, If your requirements are more basic you can always use snipcart with their default Dashboard. There's a good tutorial here: https://snipcart.com/blog/processwire-ecommerce-tutorial
  2. Hello, I'm new to Snipcart and SnipWire, just a few questions before I try your module, which looks very promising! I'm working on a multilanguage site (Italian/English/Cech) and I need to have three different currencies and (maybe) taxes. Am I covered with SnipWire? ?
  3. Hi Marvin, does this work with processwire 3? And, is there a demo online? Thanks.
  4. hey zoeck, thank you for the feedback. I finally resolved the issue: I installed the module by uploading the zip file: that didn't work. Then I uninstalled everything and followed the instructions: I created a folder named "FieldtypeLeafleftMapMarker" with everything inside and that worked. Thanks again.
  5. hey zoeck, thanks for the suggestions. On my html I've got this code: <link rel="stylesheet" type="text/css" href="/site/modules/FieldtypeLeafletMapMarker/assets/font-awesome-4.6.3/css/font-awesome.min.css"> but there's no FieldtypeLeafletMapMarker folder inside my module directory. Instead I have MarkupLeafletMap folder with all the assets inside... very strange. I'll investigate further...
  6. Hi everybody, I'm using the dev-version, sans google api with ProcessWire 3.0.123 but unfortunately my map doesn't appear (blank div on the page): http://processwire.marcoangeli.net/about/ here are my settings: _init.php $map = $modules->get('MarkupLeafletMap'); _head.php <?php echo $map->getLeafletMapHeaderLines(); ?> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> basic-page.php echo $map->render($page, 'map'); Do I miss some basic setting? Thanks!
  7. ...thanks for sharing, diogo, beautiful site.
  8. well...solved! my .htaccess file on dev at the very end of the page (after the processwire directives) ################################################################################################# # END PROCESSWIRE HTACCESS DIRECTIVES ################################################################################################# had this little code that caused the issue: RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] I deleted it and now I'm feeling better... ?
  9. Hi there, I migrated my site from dev to live server. Copied all files in the new location, transferred MySQL db from dev to live. The site works properly, but the images not. Even the processwire logo in control panel is not visible: is it something related with files permissions? Is there an easy way to solve this issue? EDIT: if I update a page via control panel, adding a new image, the thumbnail is blank...
  10. Hi, wonderful module, but I can't make it work for a multilanguage web site. I only get the results for the default language. Could anybody share their (working) solution?
  11. Soma, you're right. It's a redirectict to a single url. @ wbmnfktr: thanks for the explaination! Problem solved. Thanks!
  12. Hey guys, thanks for pointing me to the PW htaccess code. I wasn't aware of it. Anyway that code is a bulk redirection of all existings http urls to to the home page. I would avoid it for seo reasons. I found many advices that suggest to redirect the single http page url to the equivalent https page url. For example, if I needed to redirect the about page: Redirect 301 /about https://www.mysite.it/about Unfortunately that code doesn't work in the default .htaccess file (Too many redirects error), and I don't know why. Maybe some of you already found a solution?
  13. Hi there, I added a ssl certificate to my site and I'd like to redirect every single http url to its new https version So I added this code in the .htacces file, after the RewriteEngine On : Redirect 301 /about https://www.mysite.it/about Unfortunately this is now working: I get the "too many redirects" error. The following code works, but it's a bulk redirection to the home page, something I don't want for SEO reasons (https://moz.com/blog/save-your-website-with-redirects? RewriteCond %{HTTP_HOST} mysite\.it [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.mysite.it/$1 [R,L] Any suggestions?
×
×
  • Create New...