Jump to content

Stu

Members
  • Posts

    51
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    Stu reacted to Deactivat3d in Email Server or External Service?   
    Hi Stu,
    Google and others can be convenient but if you really care about your data you might want to self-host this.
    If you're not keen on that, you can meet in the middle and go with a mail provider that is smaller and more focused on the security and integrity of your data.
    Cheers
  2. Like
    Stu reacted to Jono in Email Server or External Service?   
    Hey Stu,  you may get more interaction on this if you post in our discord server https://discord.gg/UNs26C.  If you feel like being an especially nice person you could even post back on here some of the answers you get
  3. Like
    Stu reacted to Jono in Affiliate module for Blesta   
    I'm happy to be able to say, this is actually the main focus of v4.11.0  https://dev.blesta.com/browse/CORE-3356
     
  4. Like
    Stu reacted to Paul in Affiliate module for Blesta   
    What he said ⬇️
     
  5. Thanks
    Stu reacted to samuel.hautcoeur in Looking for a theme developer [Edit: FOUND]   
    @Stu Cyandark (https://clients.cyandark.com/)
    They are absolutely fantastic!
  6. Thanks
    Stu got a reaction from Michael in Unable to change Theme   
    To follow up on this, I've set nginx to pass everything to apache and it now works.
    So this is clearly nginx caching causing the behaviour.
     
    Thanks
  7. Thanks
    Stu got a reaction from BeZazz in Unable to change Theme   
    To follow up on this, I've set nginx to pass everything to apache and it now works.
    So this is clearly nginx caching causing the behaviour.
     
    Thanks
  8. Like
    Stu got a reaction from Abdy in [Plugin] BlestaCMS   
    Very useful addon and well coded.
    I wouldn't be without it.
  9. Like
    Stu reacted to Michael in [Plugin] BlestaCMS   
    Just got a bug patch soon when @cyandark spots it on github haha  but only effects addon companies / multi-language.
  10. Like
    Stu got a reaction from Michael in [Plugin] BlestaCMS   
    Very useful addon and well coded.
    I wouldn't be without it.
  11. Like
    Stu got a reaction from activa in Nginx Config   
    Messed with this for a while after posting the question.
    I have come up with the following which seems to work....
     
    location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { try_files $uri =404; 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; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } # Deny all attempts to access hidden files # such as .htaccess, .htpasswd, .DS_Store (Mac). location ~ /\. { deny all; } # Disallow access to any file with .pdt extension location ~ (\.pdt) { return 403; } }  
    If anyone wants to add to this please feel free to post.
  12. Like
    Stu got a reaction from Abdy in [Plugin] BlestaCMS   
    Reissued the blesta_cms license and everything is fine again.
    Thanks for your help @cyandark and @Licensecart
  13. Like
    Stu got a reaction from Paul in [Plugin] BlestaCMS   
    Reissued the blesta_cms license and everything is fine again.
    Thanks for your help @cyandark and @Licensecart
  14. Like
    Stu got a reaction from Michael in [Plugin] BlestaCMS   
    Reissued the blesta_cms license and everything is fine again.
    Thanks for your help @cyandark and @Licensecart
  15. Like
    Stu reacted to Michael in [Plugin] BlestaCMS   
    Stuart mate do you have a IPv6? feel free to pm me or live chat so we can add it to the license.
  16. Like
    Stu reacted to Abdy in [Plugin] BlestaCMS   
    This message is not from Blesta, It's from BlestaCMS. Try to re-issue your BlestaCMS License.
    @Licensecart can help you.
  17. Like
    Stu got a reaction from Michael in [Plugin] BlestaCMS   
    oh oops forgot I had installed that, I thought I was still working on a clean blesta install lol.
     
    My bad, thanks guys
  18. Like
    Stu got a reaction from Abdy in Nginx Config   
    Hi Guys,
     
    can some people show me their nginx configs for blesta?
    I had it working using the 'try_files $uri' way of doing things, but I reinatlled my server and forgot how I made it work before.
    I am currently using a method i found on here elsewhere (thanks to that poster),
    but I would like to get back to the 'try_files $uri' method as it was much cleaner and simpler.
     
    Here is what i'm currently using...
    location / { error_page 404 = @blesta; #IF file doesn't exist log_not_found off; } location ~ \.php$ { try_files $uri =404; 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; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } # Disallow access to any file with .pdt extension location ~ (\.pdt) { return 403; } if (!-e $request_filename){ rewrite ^(.*)$ /index.php; } #Core rewrite location @blesta { rewrite ^(.*)$/index.php/(.*) /$1 permanent; } }  
    I remember before I was using something a lot simpler, something like...
     location / {
                   try_files $uri $uri/ 
                   then the fastcgi_pass stuff
  19. Like
    Stu got a reaction from Paul in New Install Display Error   
    Well I couldn't figure this out, and the VPS was behaving a little strange in general so I deleted the server and created a totally new droplet.
    I completed the installation exactly as I had done before and now everything is fine and working great.
    Its perfectly possible that I missed something the first time round, I really dont think I did, but its possible.
    Anyway, all working now
    Thanks for your help guys
  20. Like
    Stu got a reaction from Paul in Database error after provisioning first SolusVM VM   
    Thanks for the tips guys.
    I did indeed upgrade to a 1GB droplet.
  21. Like
    Stu got a reaction from Michael in New Install Display Error   
    Well I couldn't figure this out, and the VPS was behaving a little strange in general so I deleted the server and created a totally new droplet.
    I completed the installation exactly as I had done before and now everything is fine and working great.
    Its perfectly possible that I missed something the first time round, I really dont think I did, but its possible.
    Anyway, all working now
    Thanks for your help guys
  22. Like
    Stu reacted to Abdy in Database error after provisioning first SolusVM VM   
    Try upgrading your droplet to 1 GB
  23. Like
    Stu reacted to mrrsm in Database error after provisioning first SolusVM VM   
    For testing and maybe even production, depending on how many customers you have, a 512Mb instance is probably more than enough.  You may need to tune some things to work better under a lower ram environment, such as mysql, or you can supplement it by adding swap which will probably rarely get used.  An example for centos 6 is something like this https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-centos-6
  24. Like
    Stu reacted to Adam in New Install Display Error   
    Morning,
     
    It looks like your CSS and images are not loading. Maybe a permissions issues or you forgot to upload the files / folder.
    View the source on the webpage, and try to load a CSS file. See what the server response back with:
    Example:
    Visit: domain.tld/app/views/client/bootstrap/css/bootstrap.min.css
    -Adam
     
  25. Like
    Stu got a reaction from Michael in Database error after provisioning first SolusVM VM   
    looks like I ran out of memory on my low budget test server and mariadb crashed.
    Restarted it and everything is fine.
    How much memory do you recommend for a live production blesta install?
×
×
  • Create New...