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
•
Using a Centos 6 or 7 server, how to check the current version of Apache?
httpd -vThis command will return a string that is similar to the following:
Server version: Apache/2.4.6 (CentOS)
Server built: Nov 16 2020 16:18:20If you want to find where the httpd binaries are located use the following:
whereis httpdThis command will return something like:
httpd: /usr/sbin/httpd.worker /usr/sbin/httpd.event /usr/sbin/httpd /etc/httpd /usr/lib64/httpd ...
Andrew Fletcher
•
When those simple annoyances are too frustrating! Yes we have all been...
Andrew Fletcher
•
Post the recent update to Xcode 12.x (12A7300), I found opening an app...
Andrew Fletcher
•
Attempting to load changes in a staging site and the bountiful error page...
Andrew Fletcher
•
(104)Connection reset by peer: mod_fcgid: error reading data from FastCGI...
Andrew Fletcher
•
Working through migration on a new Centos 7 server, the default mailbox size is 100MB. Yes a well organised account doesn't need more than 100MB. However, how to resolve this size for the outlier people with big mailboxes.
In one of our domains being migrated contains an account with 300MB plus and on another domain 400MB plus. To change the default size from 100MB run through shell the following command
plesk bin subscription_settings --update example.com...
Andrew Fletcher
•
Running a common composer command, post an upgrade on the server to Centos 7 and...
Andrew Fletcher
•
To add ejabberd and run MYSQL to the server I needed to update the server...
Andrew Fletcher
•
To connect to your CPanel hosted server via SSH OSX, please follow...
Andrew Fletcher
•
I'm receiving a server not found when logging in to Plesk from shell or...
Andrew Fletcher
•
This page shows a growing list of common commands for viewing and managing your Centos server.
ls syntax
$ ls [options] [file|dir]
ls command main options:
ls -a
list all files including hidden file starting with '.'
ls --color
colored list [=always/never/auto]
ls -d
list directories - with ' */'
ls -F
add one char of */=>@| to enteries
ls -i
list file's inode index number
ls -l
list with long format - show permissions
ls -la
list long format including hidden files
ls...
Andrew Fletcher
•
Whilst updating nodejs and npm on a Centos 6 or 7 server running Apache, I...
Andrew Fletcher
•
For what reason would you need to find the identity of the current user? You are...
Andrew Fletcher
•
I started out with a simple task... install Tailwindcss. What unfolded is...
Andrew Fletcher
•
Blocks are a great way to add pieces or chunks of content to your Drupal site....