developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
491
results
Andrew Fletcher
•
Cached data - keep it or clear it out?
You might have noticed, but when opening an app or visiting a website for the first time can take longer than on a subsequent visits to the same site. This extra time taken is primarily due to our devices not having cached data for the website or app.
If you’re not quite sure what cached data is, let's take a quick look.
Cached data are files, scripts, images, and other multimedia stored on your device after opening an app or...
Andrew Fletcher
•
Adding a new user to your Joomla! website using Community Builder.
Out of the...
Andrew Fletcher
•
In this article, I will show you how to update an existing member's details...
Andrew Fletcher
•
In this article, I'll show you how to create a new an Acy Mailing 5...
Andrew Fletcher
•
In this article, I'll show you how to manage an Acy Mailing 5 subscription...
Andrew Fletcher
•
In this article, I'll show you how to edit an existing member's newsletter subscription status using Acy Mailing 5.
Access to Acy Mailing 5
This is screen accessible via the administration area: Select Components → Acy Mailing 5 → Users from the drop-down menus.
Edit a member's newsletter subscription
There are two methods you can use to enter edit mode for a member (user):
Click on the member's email; or
Click on the checkbox along the corresponding...
Andrew Fletcher
•
In this article, I'll show you how to review a newsletter's statistics for...
Andrew Fletcher
•
In this article, you will learn how to send a newsletter using Acy...
Andrew Fletcher
•
In this article, I'll show you how to edit an unsent Acy Mailing 5...
Andrew Fletcher
•
I prefer htop over top on my Linux server. Running a Solr index got...
Andrew Fletcher
•
The generally accepted answer to a mysqldump is:
mysqldump -h [host] -u [user] -p [database_name] [table_name] > [file].sqlOr a variant there of... Of course if you are logged in to the server and working from it you don't need to express the -h [host]
mysqldump -u [user] -p [database_name] [table_name] > [file].sql
But no not for me. I wasn't seeing the success story of a downloaded database file. Instead I was warmly embraced by error land:
mysqldump: Got...
Andrew Fletcher
•
Working in Twig, I had to add classes to a pre-existing array. Whilst I've...
Andrew Fletcher
•
Wanting to create a new repository on GitHub, add in a few of the available...
Andrew Fletcher
•
On a git pull from remote dev environment to a staging environment running off...
Andrew Fletcher
•
I needed the check if a file existed in a directory as the migrate script wasn't...