Jump to content

ariq01

Members
  • Posts

    105
  • Joined

  • Last visited

Posts posted by ariq01

  1. @Nelsa thanks btw for nginx conf. But mine still error. I can't access (404 not found) https://blesta/admin/theme/theme.css?dir=WHMBlesta

    and only can access https://blesta/admin/theme/

     server {
            listen   443 ssl http2; ## listen for ipv4; this line is default and implied
            #listen   [::]:80 default ipv6only=on; ## listen for ipv6
    
            root /**/public_html;
         index index.php index.html;
         error_log  /**.error.log warn;
    
            # Make site accessible from http://localhost/
            server_name **;
    
            ssl_certificate **/ssl/ssl-bundle.crt;
            ssl_certificate_key **/ssl.key;
    
    
            ssl_session_cache shared:SSL:20m;
            ssl_session_timeout 10m;
            ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
            ssl_prefer_server_ciphers on;
            ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
    
            ssl_dhparam /etc/nginx/dhparams.pem;
    
    
        add_header Strict-Transport-Security "max-age=31536000; includeSubDomains";
        client_body_buffer_size 32m;
        
    location ~ \.php$ {
    		try_files $uri /index.php?$args;
            #try_files $uri =404;
            #https://github.com/cloudrck/blesta-nginx/blob/master/sites-available/blestav3 ON
    
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_connect_timeout 60;
            fastcgi_send_timeout 180;
            fastcgi_read_timeout 180;
            fastcgi_buffer_size 128k;
            fastcgi_buffers 4 256k; #
            fastcgi_busy_buffers_size 256k; 
            fastcgi_temp_file_write_size 256k;
            fastcgi_intercept_errors on;
    
            #https://github.com/cloudrck/blesta-nginx/blob/master/sites-available/blestav3 OFF
    
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            }
    
            location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                    expires max;
                    log_not_found off;
            }
        
        location ~ (\.pdt) {
        return 403;
        }
    
        location = /favicon.ico {
                    log_not_found off;
                    access_log off;
            }
    
            location = /robots.txt {
                    allow all;
                    log_not_found off;
                    access_log off;
            }
    
    location / {
    if (!-e $request_filename){
    rewrite ^(.*)$ /index.php;
    }
    # For access to install file  
    if ($request_uri ~ "^(.*)/install.php$"){
        rewrite install.php /%1/install/ redirect;
      }
    }
    
    }
    
    server {
        listen 80;
        server_name **;
        rewrite ^ https://**$request_uri permanent;
    }

     

  2. Hello all !

    I don't know it's bug or not. My blesta since 05/10/2016 got error suddenly.

    There are no pending product on client view (in admin dashboard) after got an order.

    I mean this. :

    Clients order a product -> an order received to admin -> Invoice coming to their email -> when i check on client view. There are no pending product.

    93cac08c387a466e93766f261dcf2d77.png

     

    Anyone has this problem too? pls help me

     

    **i've try to re-order with my test client account. And there are no pending product too.
    And when i've record payment to that invoice. no pending product actived !

×
×
  • Create New...