developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
30
results
Andrew Fletcher
•
The development version of the app database is held on the staging site. Note all development and testing will be completed on the staging site.
Drupal 9 uses:
HAL : Serializes entities using Hypertext Application Language.
RESTful Web Services
For testing purposes you can use either of the following Chrome extensions:
Postman;
DHC
Using Postman to perform a GET command for a node
The get string is https:/{your-site.com}/node/<nid>?_format=hal_json, where the...
Andrew Fletcher
•
The user parameters provides details about a specific user based...
Andrew Fletcher
•
Have you noticed through your Google account that there are items being indexed...
Andrew Fletcher
•
Well for me it is very slow. Recently, I upgraded from CentOS 6 to Centos...
Andrew Fletcher
•
If you are receiving the following 403 errors:
"message": "The used...
Andrew Fletcher
•
To connect to your CPanel hosted server via SSH OSX, please follow these steps:
Generate your SSH key
Log in to your CPanel account. As first you will have to generate an SSH key pair in cPanel -> SSH/Shell Access
Complete the details in the Generate new SSH key pair form
First name
Last name
Email
Password - take note of the password you used to generate the key as you will use it shortly
Allowed IP address
Copy the private key from cPanel and save it into...
Andrew Fletcher
•
I had an issue where logging in from the app disconnected. The error that...
Andrew Fletcher
•
Adding an image via RESTUI can be done in a snap... once you know how! I...
Andrew Fletcher
•
The magically descriptive error 401 Forbidden "message": "Access...
Andrew Fletcher
•
If you are like me you probably have searched for clues to and found little......
Andrew Fletcher
•
I had an instance where I needed to move content from a plist to the server database. To achieve this step, I added a few lines of code where the plist was called and added a call to the API so the data would be on the server.
The original code appeared as:
class ContactsSource {
static var contacts: [Contact] {
let data = try! PlistLoader.array(fromFile: "ContactsDB", ofType: "plist")
return data.compactMap { Contact(dictionary: $0) }
}
}I needed to access...
Andrew Fletcher
•
Registering a user via REST is an important process particularly when the...
Andrew Fletcher
•
While I have posted an article about how to POST an image using REST in Drupal...
Andrew Fletcher
•
You have been working hard on getting comments being added (POST) through REST...
Andrew Fletcher
•
For others that have spent countless hours getting this to work and are...