💻
Cheatsheets
  • Most Useful Command Line Tools: 50 Cool Tools to Improve Your Workflow, Boost Productivity, and More
  • 7_tips_to_reverse_engineer_javascript
  • Configuring a Repl
  • How to create your command-line program (CLI) with NodeJS and Commander.js | by Duc N. | JavaScript
  • replit Node.JS 24/7 Project Hoster
  • cheatsheets
  • Alacritty, Tmux, and Vim
  • amethyst
  • Android
  • Installing Arch Linux
  • Arch Linux
  • aria2
  • bin
  • bspwm
  • Chocolately Notes
  • command_line_pipes
  • CSS Grid
  • curl
  • The curl guide to HTTP requests
  • Docker
  • Easymotion
  • Emmet
  • Favorite figlet fonts
  • FFMPEG
  • figlet
  • File Serve
  • File Transfer
  • fish shell
  • Front End Dev Links
  • How to use Git.io to shorten GitHub URLs and create vanity URLs
  • Git
  • Downloading a Tarball from GitHub
  • Make Infinite Gmail Addresses For One Inbox
  • How To Use GPG on the Command Line
  • guide_to_fish_completions
  • Homebrew
  • How to clean Arch Linux
  • HTML5 Boilerplate
  • Install
  • All the keyboard shortcuts you’ll ever need for Safari on iPad
  • iosevka
  • iPhone
  • ish (iOS)
  • Javascript Notes
  • jq
  • Jupyter Notebooks
  • Lettering
  • lf-wiki
  • lf
  • Command Line
  • Adding a swapfile after a clean installation without swap partition
  • mac_bluetooth_issues
  • Mac Terminal
  • maim
  • markdown-sample
  • Markdown Notes
  • Images in README.md Markdown Files
  • Organizing information with tables
  • md_cheatsheet
  • NiftyWindows Help
  • nix
  • Justin Restivo - A Portable Text Editor: Nix <3 Neovim
  • NPM
  • neovim configuration
  • Pastery
  • Powershell
  • Table of Basic PowerShell Commands | Scripting Blog
  • Powershell Modules
  • Puppeteer
  • Python
  • rclone-colab
  • replit
  • Hi there, I'm Raju Ghorai - a.k.a. [coderj001]
  • Scriptable
  • Servor
  • Replacing Postlight’s Mercury scraping service with your self-hosted copy
  • Shell Scripts
  • skhd
  • Spicetify
  • SSH
  • SurfingKeys
  • tar
  • Terminal Web Browser Docker
  • Text Generators
  • tmux shortcuts & cheatsheet
  • unicode
  • VIM
  • VIM Diff
  • vi Complete Key Binding List
  • 8 Essential Vim Editor Navigation Fundamentals
  • Vim Shortcut Keys
  • Vite
  • VNC
  • web-servers
  • Web Server
  • Windows Command Line
  • Writeguard
  • WSL Cheatsheet
  • youtube-dl
  • zsh Plugins
  • zspotify
Powered by GitBook
On this page
  • Other Email Issue
  • Email blocking by Barracuda
  • Issues as of 4/1/2020
  • Krista said:
  • Customer said:
  • Mediatemple Info
  • Permissions
  • Ownership
  • Changing website permissions
  • I think this is what fixed the problem when we switched to DV server

Was this helpful?

Writeguard

PreviousWindows Command LineNextWSL Cheatsheet

Last updated 3 years ago

Was this helpful?

Other Email Issue

ss1
ss2

Email blocking by Barracuda

Request Received

Thank you for submitting your request. If this is your first request, your IP address will have its reputation increased to "normal" for 48 hours while we investigate. It may take up to 1 hour for the reputation increase to propagate to all Barracuda Spam Firewalls globally. We appreciate your patience and apologize for any inconvenience.

Your confirmation number is BBR21586894740-10107-515.

http://www.emailreg.org/index.cgi?p=register

Issues as of 4/1/2020

Krista said:

SQL Syntax

Customer said:

Add to cart

1064 You have an error in your SQL Syntax check

Manual Deposit Ticket DT15-C


Mediatemple Info

Permissions

Rule of thumb for correct permissions:

  • Folders: 755

  • Static Content: 644

  • Dynamic Content: 700

TIP:

Linux permissions can be represented with numbers, letters, or words. They also include an entry for Owner, Group, and Everyone.

code

ls

755

drwxr-xr-x

644

-rw-r--r--

700

-rwx------

  • 755 stands for Owner: read, write, execute; Group: read, execute; Everyone: read, execute

  • 644 stands for Owner: read, write; Group: read, Everyone: read

  • 700 stands for Owner: read, write, execute; Group: (none); Everyone: (none)

Ownership

In Linux file structures, every file and folder is assigned to an Owner and a Group. The correct owner and group for your server are as follows, listed like this:

  • Plesk server - note that domainuser is the FTP user for that domain, and example.com is the specific domain in question:

    • /var/www/vhosts/example.com/ - root:root

    • /var/www/vhosts/example.com/httpdocs/ - domainuser:psaserv

    • /var/www/vhosts/example.com/httpdocs/index.html - domainuser:psacln

Changing website permissions

This might have to be done like this:

find . -name *.php -exec chmod 640 {} \;

because the xargs pipe didn't work correctly for me...

This command finds all php files and lists their permissions in the ls -l display

find . -name *.php | xargs ls -l

Changes all directories to 711 drwx--x--x

find . -type d | xargs chmod 711

Changes all php files to their correct permissions

find . -name *.php | xargs chmod 640

Change html, css, js, and images to the following

find . -name *.html | xargs chmod 644

REFERENCE:

cd ~/workspace/pset7
find . -type d | xargs chmod 711
find . -name *.php | xargs chmod 640
find . -name *.json | xargs chmod 640
find . -name *.html | xargs chmod 644
find . -name *.css | xargs chmod 644
find . -name *.png | xargs chmod 644
find . -name *.js | xargs chmod 644
chmod 644 ./public/fonts/*

I think this is what fixed the problem when we switched to DV server

ss3

One way to avoid having your email inadvertently blocked is by registering your domain and IP addresses at . Emails from domain names and IP addresses that are properly registered on can be automatically exempted from spam filtering defense layers on Barracuda Spam Firewalls and other anti-spam solutions, preventing your email from being accidentally blocked.

screenshot

Got info from

EmailReg.org
EmailReg.org
here
Solving 403 Forbidden on Port 443 (HTTPS) for Apache 2.4