Jump to content
thirty bees forum

alwayspaws

Members
  • Posts

    2,067
  • Joined

  • Days Won

    2

Everything posted by alwayspaws

  1. Thank you @yaniv14 @Traumflug - do you mean we have to do it?
  2. Your ideas are terrific @wakabayashi
  3. Thank you @Traumflug I did that originally but it didn't show anything helpful so I Googled each and one is related to Buffer and the other to Crowdfire. Buffer says that this is how Google interprets their cookies. They are add ons in my google toolbar. Problem Solved. This is what one cookie looks like when opened:
  4. It's version 1.3.1 and it still shows there's an upgrade for it: The following module(s) were upgraded successfully: Viewed products block : Current version: 1.3.1
  5. @Nemo - that would be terrific for others. @Pilou - I don't have any customers or orders. I updated my products csv and can use that.
  6. I'll look into them again. Good news! Siteground fixed the issue! They said It was set for the subdomain inside the Lets Encrypt in your cPanel. They had told me to install Lets Encrypt for the subdomain since my SSL certificate is not good for it; only for my live site. Is it safe to leave all that .htaccess info in this forum or should I delete it?
  7. @yaniv14 said in Newly installed thirtybees site won't load - ERR_TOO_MANY_REDIRECTS: it should be fine within admin. are you using any caching or module for cache or anything? The very long cookies in the screenshot above are okay to allow? Also, about cache, I haven't changed anything so whatever the default settings are, is what is there.
  8. I found how to Clear the local DNS cache in macOS Open terminal and enter: ​sudo killall -HUP mDNSResponder enter password It doesn't display anything afterwards so I don't know if it did something or not. I'm going to contact my host just in case there is something misconfigured. @yaniv14 Thank you and Good Night. I appreciate all this help!
  9. OK! Thanks for guiding me in the right direction(s). I found a FAQ that may help me fix the DNS. It says I may have to wait a few hours. Also it says to flush the local DNS cache but only shows how to do it in Windows. I'll google it for my Mac. After an SSL installation on your web hosting account you may not be able to open your site. FAQ: Site does not open after SSL installation: https://www.siteground.com/kb/sslerrormessage/
  10. I'm going to contact my host and tell them that. I tried http://newshop.alwayspaws.com earlier before posting the question and had the same result.
  11. Done. Here is the new .htaccess file contents ~~start~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again .htaccess automatically generated by thirty bees e-commerce open-source solution http://www.thirtybees.com - http://www.thirtybees.com/forums SetEnv HTTPMODREWRITE On RewriteEngine on Domain: newshop.alwayspaws.com RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] AlphaImageLoader for IE and fancybox RewriteRule ^images_ie/?([^/]+).(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType application/x-font-woff .woff Header add Access-Control-Allow-Origin "*" If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 ~~end~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again
  12. Yes! Thank you! One of the things you had me do in the other post must have fixed them. I wish I knew what. :)
  13. No, this is a brand new install and I have done nothing except update the modules. It still won't load.
  14. I removed them and saved, but I did it right from within Admin. Is this correct? Or do I edit .htaccess and upload it via FZ?
  15. I decided to begin a fresh installation in a subdomain of my site. The installation went very smoothly! :)
  16. Disabled friendly urls and turned on debug mode. Here is the .htaccess contents: RewriteEngine on RewriteRule .*.(jpg|jpeg|gif|png|bmp|png)$ - [F,NC] RewriteCond %{HTTPREFERER} !^$ RewriteCond %{HTTPREFERER} !^http://alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http://alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://newdev.alwayspaws.com/.$ [NC] RewriteCond %{HTTPREFERER} !^http://newdev.alwayspaws.com$ [NC] RewriteCond %{HTTPREFERER} !^http://thirtybees.alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http://thirtybees.alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.alwayspaws.com/.$ [NC] RewriteCond %{HTTPREFERER} !^http://www.alwayspaws.com$ [NC] RewriteCond %{HTTPREFERER} !^http://www.newdev.alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.newdev.alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.thirtybees.alwayspaws.com/.$ [NC] RewriteCond %{HTTPREFERER} !^http://www.thirtybees.alwayspaws.com$ [NC] RewriteCond %{HTTPREFERER} !^https://alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://newdev.alwayspaws.com/.$ [NC] RewriteCond %{HTTPREFERER} !^https://newdev.alwayspaws.com$ [NC] RewriteCond %{HTTPREFERER} !^https://thirtybees.alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://thirtybees.alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.alwayspaws.com/.$ [NC] RewriteCond %{HTTPREFERER} !^https://www.alwayspaws.com$ [NC] RewriteCond %{HTTPREFERER} !^https://www.newdev.alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.newdev.alwayspaws.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.thirtybees.alwayspaws.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://www.thirtybees.alwayspaws.com$ [NC] RewriteRule .*.(jpg|jpeg|gif|png|bmp)$ - [F,NC] ~~start~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again .htaccess automatically generated by thirty bees e-commerce open-source solution http://www.thirtybees.com - http://www.thirtybees.com/forums SetEnv HTTPMODREWRITE On RewriteEngine on Domain: newshop.alwayspaws.com RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] AlphaImageLoader for IE and fancybox RewriteRule ^images_ie/?([^/]+).(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType application/x-font-woff .woff Header add Access-Control-Allow-Origin "*" If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 ~~end~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again
×
×
  • Create New...