We currently manage around 70+ WordPress websites. Keeping plugins up to date on a WordPress site quickly became a daily routine. This task quickly had to be tasked to one of our team members on a daily basis. Dashboards like these became a common thing. Enabling Automatic Updates By default, every site has automatic updates […]
Tag: Support
GitHub Actions Build with Runner and Deploy using self-hosted
Use GitHub Actions to build and deploy with a private runner to deploy to IIS Project: ASPX Website on GitHub. Goal: Complete CI / CD using GitHub Actions to build and using self-hosted running to deploy to on-prem IIS server.
Disable Comments on Media
Comments can be a great way to interact with your Users and add some personality to your website by including your them in the conversation. However, you may not need the comments section for all features on your site. In this article we will be focusing on how to remove the comment section from WordPress […]
How To Increase Maximum File Upload Size in WordPress
Are you looking to increase the maximum file size you’re able to upload to your WordPress Site? Sometimes the default settings might not be enough to handle the uploads you are looking to make. Whether you’re looking to upload larger images, new plugins, or large theme files, having control over the size limit is an […]
Classic ASP Function to Set Dynamic Image (1 of 2)
I reviewed some recent client Classic ASP code and found a 4 level deep branching of an IF statement. Reading the code, its intent is to look at the object type and return an icon representing the type. I try to stay away from IF statements altogether but using a SINGLE if statement is something I do […]
Adding Custom Properties to Objects in Classic ASP
I the last blog post Converting Recordset into Objects in Classic ASP we created a public function initialize(rs) which takes in a single row from the database and creates a single class object account. Our goal is to add a new property named fullname where we combine firstname and lastname We will update the public function initialize(rs) as follows: […]
Converting Recordset into Objects in Classic ASP
Now that you know how to create a Class and Objects in Classic ASP, we will look at Converting Recordset into Objects in Classic ASP. Lets create a Class account which has several properties. I usually use the database table account and copy the model so the Class matches the database model Class account public […]
How to create a Class and Objects in Classic ASP
Creating Objects in programming is one the best ways to have code that is easily maintainable. With new Classic ASP clients, I have found creating Classes and Objects is a very good way to begin refactoring legacy code. Class trip public arrive_date public depart_date End Class Here we have created a Class trip with 2 properties […]
WordPress vs Squarespace
t Dhali we design most of our sites using WordPress. WordPress is a powerful open source software and tool for building websites and apps. Some estimate that over 25% of ALL websites are currently built with WordPress. The most common use for a WordPress site is as a content management system, or CMS. This allows […]
Update Your WordPress Website
Clients often ask what the benefits are of updating their WordPress site, including plugins and themes. While some of the benefits include fixing/addressing bugs, adding key features and increased functionality, the main reason why it is vital to be on top of your WordPress site maintenance is security reasons. According to WPBeginner, more than 80% […]