Jump to content

Gauravk

Clients
  • Posts

    1,283
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Gauravk got a reaction from CoffeeCake in Subscription Enhancements   
    Just like the products in commerce, subscription should also have these features enabled.
    Discounts Coupon code (not working with subscriptions, throwing gateway error) Multiple renewal option in same place - Monthly and Yearly Client area settings Custom email
     
    Throws this gateway error only if coupon code is used.

     
  2. Thanks
    Gauravk reacted to Katherine Grace Bond in One time subscription should have expiry too   
    I think we are having the same problem with our product setup. We can set up recurring payments, but evidently, they recur forever unless we go into each individual customer's purchase and set an expiration date. We would like very much to build into the product a set number of payments. (Field: How many payments) We've been told this is not possible. I'm not sure why. 

    As our customer base increases, we are seriously considering other platform options, as it would be too easy to miss manually adding expiry dates for each customer. Charging the customer after the agreed-upon time is enough of a trust issue that we would soon begin losing return customers. 

    Is this fixable? 
  3. Thanks
    Gauravk reacted to ASTRAPI in How to constantly defrag tables in MySQL?   
    Hello
    The best thing that you can do is to convert all tables to Innodb .
    You will benefit a lot.
  4. Thanks
    Gauravk reacted to bfarber in Server Management - Best Practises   
    In phpmyadmin it's as simple as changing the table type.
    That said, you should ensure your webhost has optimized your MySQL configuration for InnoDB first.
  5. Thanks
    Gauravk reacted to Steph40 in Server Side Optimization - CentOS + MySQL   
    Centminmod uses Centos, a highly optimized version of nginx. Installed PHP 7.3 and redis.
  6. Thanks
    Gauravk reacted to Ryan Ashbrook in Server Management - Best Practises   
    InnoDB is officially recommended, yes. In fact some places, like AWS, don't even support MyISAM anymore.
    Apache versus Nginx and MySQL vs MariaDB really depend on personal preference, though bear in mind our support team are mostly familiar with Apache and MySQL.
  7. Thanks
    Gauravk reacted to Steph40 in Server Side Optimization - CentOS + MySQL   
    @AlexWebsites I have tried both and they both work very well. Redis does a lot more then memcached out of the box and you can still use it with centminmod, along with all the constant tweaking that eva2000 does. 
  8. Thanks
    Gauravk reacted to Steph40 in Server Side Optimization - CentOS + MySQL   
    @Gauravk sent you a pm.
  9. Thanks
    Gauravk reacted to Steph40 in Server Side Optimization - CentOS + MySQL   
    I highly recommend centminmod:
    https://centminmod.com/
  10. Thanks
    Gauravk reacted to Adlago in How to speed up site loading?   
    For "onload" img, i am still experimenting with html from your source code and when i have a good result i will write an instruction. Finding a solution in this way is a slow process and involves too many analysis.
    Using a cookies-free domain I am not sure if it will conflict with your cloudflare plan.
  11. Thanks
    Gauravk reacted to Daniel F in Mark as paid - Alternative   
    We’re still investigating your issue 
  12. Thanks
    Gauravk reacted to ASTRAPI in Server Side Optimization - CentOS + MySQL   
    Hello @Gauravk
    You should plan an upgrade to Centos 7 to get the new compilers and try to use phpfpm + Nginx + tuning everything on the system....
    Not something that you can solve easily on a topic...
  13. Thanks
    Gauravk reacted to Makoto in Server Side Optimization - CentOS + MySQL   
    Hey @Gauravk,
    If you're looking to have your server professionally tuned, I'm happy to offer my services to you.
    You can find my rates and contact me here:
     
  14. Thanks
    Gauravk reacted to AlexWebsites in Server Side Optimization - CentOS + MySQL   
    Under the support section, you'll see to the right system info. If IPS is using Redis, you'll see something like:

  15. Thanks
    Gauravk reacted to Makoto in Server Management - Best Practises   
    1. It's recommended to just use InnoDB.
    2. Yes, it's good to set expiration headers on static content. Usually, around a month for static resources is recommended. For core stylesheets and such, IPS uses a "cache buster" query string any time anything important is updated, so you don't have to worry about old cached content causing issues.
    3. Absolutely use opcache with PHP. Even with the default configuration it can make a major improvement in performance.
    4. No experience with it personally.
    5. Redis can be used to lower MySQL database load on things like view counters and such which are used for both guests and members alike. There's also other cached data that it can use to improve performance. Redis will improve performance primarily if MySQL overhead is high on your server.
  16. Thanks
    Gauravk reacted to Ryan Ashbrook in Memcache. How do I know if it's working?   
    You shouldn't leave it enabled, but you can use constants.php to enable the Caching log which will tell you if it's loading anything from Memcache or not.
    \define( 'CACHING_LOG', TRUE ); That being said, though, we generally recommend Redis now.
  17. Thanks
    Gauravk reacted to AlexWebsites in Server Side Optimization - CentOS + MySQL   
    Are you using Redis?

     

  18. Thanks
    Gauravk reacted to Adlago in How to speed up site loading?   
    Once your server accepts a request for access to your site - the server starts using IPS software - generally speaking, ie. executes your global template, and prepares an html file to send to the client. This creation time of this html file is a waiting time.
    How long a server will create this file depends on the speed and other parameters of your server.
    That's why I wrote to you to consult your host support.
     
  19. Thanks
    Gauravk reacted to Adlago in How to speed up site loading?   
    This waiting time depends on your main server - it produces an html file.
    How to improve this - consult with your host company.
  20. Thanks
    Gauravk reacted to Jim M in New category in Image Gallery should be on top   
    This order in the ACP will reflect on the front-end.
  21. Thanks
    Gauravk reacted to Makoto in What is the expiry for one-time subscription without renewal   
    https://invisioncommunity.com/forums/forum/499-feedback-and-ideas/
  22. Thanks
    Gauravk reacted to Morrigan in What is the expiry for one-time subscription without renewal   
    @Gauravk This is a support forum. I recommend you post in the feedback forum.
  23. Thanks
    Gauravk reacted to Morrigan in What is the expiry for one-time subscription without renewal   
    There is currently no way to do this. Also you just tagged a random member on the site lol.
     
  24. Thanks
    Gauravk reacted to Adlago in How to speed up site loading?   
    Yes, that's good.
    The loading speed of your site can be improved if you use the GtMetrix tips for your images.
    See this test, especially in section Page Speed/Optimize images.
    https://gtmetrix.com/reports/carnity.com/NrNLUUlo
    If you download the suggested optimized images and replace them, the speed will improve by at least 5-6 points.
    Most important for replacement are the first 4-5 images in the suggested list of this test.
  25. Thanks
    Gauravk reacted to newbie LAC in How to change billing default country?   
    Hello,
    My plugin doesn't change HTML
    Test


     
×
×
  • Create New...