July 23, 2020, admin, 0
How to rename pdf file extensions? I had pdf files on my server with extension .pdf and I wanted to rename the extension to PDF. Use the following one-liner to do this. for f in *.pdf; do mv $f `basename $f .pdf`.PDF; done; You are done.
Like this:
Like Loading...
July 22, 2020, admin, 0
DBD::mysql perl module was not installed or properly installed. Install it using the command: cpan DBD::mysql
Like this:
Like Loading...
January 22, 2020, NixUSer, 0
Set hostname in Ubuntu using hostnamectl command
Like this:
Like Loading...
July 9, 2019, admin, 0
You can add custom email filters to discard email attachments in cPanel for a particular user. Use Global Filters option to add it for the whole account. For this, use Email Filters in cPanel >> Email Tab. For example, you want to delete emails with .exe attachments. In cPanel, go to Email More
Like this:
Like Loading...
July 5, 2019, admin, 0
I have added the following to my .htaccess file (password protected) to limit the access to wordpress login pages. ErrorDocument 401 “Unauthorized Access” ErrorDocument 403 “Forbidden” <FilesMatch “wp-login.php”> AuthName “Authorized Only” AuthType Basic AuthUserFile /home/user/.htpasswd require valid-user </FilesMatch> But after the change, the page won’t load, it gave out a infinite loop More
Like this:
Like Loading...