Jump to content
thirty bees forum

Saha

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by Saha

  1. @lesley I did try this . Put the code in apache conf,virtual host as well as .htaccess still no luck .
  2. @lesley thirtybee.local is my local virtual host.
  3. Failed to load http://localhost:9200/thirtybees11/_search: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://thirtybee.local' is therefore not allowed access.
  4. @lesley Already Provided an example . The resources like css , js, images are latest when they are fetched without www ie https://example.com/css/example.css https://example.com/js/example.js https://example.com/image/example.jpeg And when Fetched with www older version of the file is fetched ie https://www.example.com/css/example.css https://www.example.com/js/example.js https://www.example.com/image/example.jpeg I guess something wrong with apache server configuration.
  5. For Better Understanding Checkout Below Eg:- Case 1 https://abc.com/img/abc.png Gives me the proper Latest Image Case 2 https://www.abc.com/img/abc.png Gives me the Old Image or image not found Above also applies for css ,js etc. In Case 2 i am able to get the latest image after some time interval.
  6. In Preference->Seo Schema of urls Route to Category {id}-{rewrite} If i remove {id} which is optional in Thirty Bee Category page gives me 404 not found eg : https://abc.com/3-electronics ( WORKS) https://abc.com/electronics ( Does not Work )
  7. @daokakao Did not help having the same issue. Does Thirty bee have canonical redirection issue with ssl ? In the admin section Preference->seo Redirect to the canonical URL if i set this no redirection The category page works Displaying the link in non url friendly format like http://abc.com/?controller=category&id_category=3
  8. I have apache server apache2 version : 2.4.25 build : 2017-07-27T14:32:31 php version : PHP 7.0.22-0ubuntu0.17.04.1 mysql : mysql Ver 15.1 Distrib 10.1.26-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2 I only have one php version installed
  9. It's been a long time still not able to resolve this issue. Need some urgent Help can somebody please help me.
  10. @yaniv14 ServerAdmin webmaster@localhost DocumentRoot /var/www/html # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined # For most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the CGI configuration for this host only # after it has been globally disabled with "a2disconf". #Include conf-available/serve-cgi-bin.conf # SSL Engine Switch: # Enable/Disable SSL for this virtual host. SSLEngine on # A self-signed (snakeoil) certificate can be created by installing # the ssl-cert package. See # /usr/share/doc/apache2/README.Debian.gz for more info. # If both key and certificate are stored in the same file, only the # SSLCertificateFile directive is needed. SSLCertificateFile /etc/ssl/certs/ssl-cert-secret.pem SSLCertificateKeyFile /etc/ssl/private/secret.key SSLOptions +StdEnvVars SSLOptions +StdEnvVars
  11. I have a prestashop installation on one server (First Server) and thirty bee installation on other(Second server) I have a proxy server which has the ssl certificate When i change the mount point of proxy server to prestashop installation the category page works with SSL (Files accessed from First server) When i change the mount point to thirty bee installation the category page says 404 not found (Files accessed from Second server) /etc/apache/sitest-available/000-default.conf (second server) # The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the ServerName # specifies what hostname must appear in the request's Host: header to # match this virtual host. For the default virtual host (this file) this # value is not decisive as it is used as a last resort host regardless. # However, you must set it for any further virtual host explicitly. #ServerName www.example.com ServerAdmin webmaster@localhost DocumentRoot /var/www/html # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined # For most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the CGI configuration for this host only # after it has been globally disabled with "a2disconf". #Include conf-available/serve-cgi-bin.conf <Directory /var/www/html> Options Indexes FollowSymLinks MultiViews AllowOverride All Require all granted </Directory> /etc/apache/sites-available/default-ssl.conf(second server) ServerAdmin webmaster@localhost DocumentRoot /var/www/html # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined # For most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the CGI configuration for this host only # after it has been globally disabled with "a2disconf". #Include conf-available/serve-cgi-bin.conf # SSL Engine Switch: # Enable/Disable SSL for this virtual host. SSLEngine on # A self-signed (snakeoil) certificate can be created by installing # the ssl-cert package. See # /usr/share/doc/apache2/README.Debian.gz for more info. # If both key and certificate are stored in the same file, only the # SSLCertificateFile directive is needed. SSLCertificateFile /etc/ssl/certs/ssl-cert-secret.pem SSLCertificateKeyFile /etc/ssl/private/secret.key SSLOptions +StdEnvVars SSLOptions +StdEnvVars First server has the exact same copy
  12. Replaced all of my existing project files with thirty bee 1.0.3 version files Front end seems to be working But Backend shows me a white screen Use of undefined constant TBVERSION_ - assumed 'TBVERSION_' in /var/www/html/classes/Cookie.php on line 93
  13. I was able to add idcategorydefault in product table which added one category How can i assign multiple categories to a product like electronics >> mobile >> mobile covers
  14. I have enabled ssl on my site . Everything works except the category page https://www.abc.com/?controller=category&id_category=3 When the friendly url is on it says 404 not found when it is switched off it redirects to non ssl link http://www.abc.com/?controller=category&id_category=3 and says too many redirects As far as i know i don't think their is a problem with seo settings or .htaccess seems like ssl might be configured wrong Plz help me In an environment without ssl everything works normal.
×
×
  • Create New...