DreamHost cPanel Access and Security Management

DreamHost cPanel Access and Security Management

Adding a domain

>> Go to Manage Websites page

>> Click the Add Website button

>> Make a selection from the following four options: Enter a domain or subdomain or Create a subdomain or Register a new domainegister your domain name.

>> click the Next: Hosting button

>> click the Next: Options button

>> Installing WordPress and Setup Website

help.dreamhost.com/hc/en-us/articles/360049378932-Adding-a-website-and-hosting

Create Subdomain

elp.dreamhost.com/hc/en-us/articles/215457827

DreamHost Automated Migration WordPress plugin

>> Install DreamHost Automated Migration free WordPress plugin

>> Add a hosting plan

>> Install WordPress as a One Click Install.

>> As a result Make sure user assigned to your domain

>> Find Migration Key in Managed WordPress page or Manage Websites

>>  Installing and activating the plugin in old site

>> Enter Email and Migration Token (The Migration Key from your DreamHost panel)

>> Click the Migrate button when finished.

>> Checking your migrated site and making it live on DreamHost

>> View your DreamHost site using a hosts file

>> Change nameservers at your current host

For details: help.dreamhost.com/hc/en-us/articles/360035448951

Accessing to File Manager

to the Manage Websites page

click on Manage button

Now Navigating directories, Uploading files or folders, Downloading files and folders, Fetching a file from a URL, Editing files, Extracting zip files, Creating a new file or folder,Changing permissions, Deleting a file or folder

How to Delete a Website Files From Dreamhost Panel

Click Manage my Apps.

Remove from List button

example.com only files sub-directory are deleted and the empty website directory will remain

>> Go to the Install WordPress page

Click on Manage Installed Applications button.

Click on Delete all Files button from the right side. When you click Delete all Files, only the files are deleted.

You can visit this link for more details: help.dreamhost.com/hc/en-us/articles/215916107

Import & Export

To upload the website files, it can be done either via SFTP/FTP or File Manager in your panel. Please refer to the links below for guides.

via SFTP/FTP: help.dreamhost.com/hc/en-us/articles/115000675027-FTP-overview-and-credentials

via File Manager: help.dreamhost.com/hc/en-us/articles/360003490852-Using-the-website-file-manager-in-the-panel

For the database, you may import it via SSH or PhpMyAdmin. via SSH: help.dreamhost.com/hc/en-us/articles/221614988-SSH-Importing-a-database

via PhpMyAdmin: help.dreamhost.com/hc/en-us/articles/214395768-phpMyAdmin-How-to-import-a-database-or-table

How to Delete a Website Database From Dreamhost Panel

Find desired Database, click the Delete DB button. If Delete button does not display go to your One-Click Install

Dreamhost cPanelwest1-phpmyadmin.dreamhost.com/signon.php?pma_servername=amaro.pdx1-mysql-a7-5b.dreamhost.com
.htaccesswordpress.org/documentation/article/htaccess/
Mailhelp.dreamhost.com/hc/en-us/articles/215612887-Email-client-protocols-and-port-numbers

Theme.json Customize and Development for Guttenberg Editor

Theme.json Customize and Development for Guttenberg Editor

Theme.json Customize and Development for Guttenberg Editor

Creating the theme.json file

In the root theme folder in cPanel, create a file called theme.json. The file have three sections: settings, styles, and templateParts.

WordPress Code

{
    "version": 2,
    "settings": {
        "border": {
            "radius": false,
            "color": false,
            "style": false,
            "width": false
        },
        "color": {
            "custom": true,
            "customDuotone": true,
            "customGradient": true,
            "duotone": [],
            "gradients": [],
            "link": false,
            "palette": [],
            "text": true,
            "background": true,
            "defaultGradients": true,
            "defaultPalette": true
        },
        "custom": {},
        "layout": {
            "contentSize": "800px",
            "wideSize": "1000px"
        },
        "spacing": {
            "margin": false,
            "padding": false,
            "blockGap": null,
            "units": [ "px", "em", "rem", "vh", "vw" ]
        },
        "typography": {
            "customFontSize": true,
            "lineHeight": false,
            "dropCap": true,
            "fluid": false,
            "fontStyle": true,
            "fontWeight": true,
            "letterSpacing": true,
            "textDecoration": true,
            "textTransform": true,
            "fontSizes": [],
            "fontFamilies": []
        },
        "blocks": {
            "core/paragraph": {
                "color": {},
                "custom": {},
                "layout": {},
                "spacing": {},
                "typography": {}
            },
            "core/heading": {},
            "etc": {}
        }
    }
}

Gutenberg Code

{
    "version": 2,
    "settings": {
        "appearanceTools": false,
        "border": {
            "color": false,
            "radius": false,
            "style": false,
            "width": false
        },
        "color": {
            "background": true,
            "custom": true,
            "customDuotone": true,
            "customGradient": true,
            "defaultGradients": true,
            "defaultPalette": true,
            "duotone": [],
            "gradients": [],
            "link": false,
            "palette": [],
            "text": true
        },
        "custom": {},
        "dimensions": {
            "minHeight": false,
        },
        "layout": {
            "contentSize": "800px",
            "wideSize": "1000px"
        },
        "spacing": {
            "blockGap": null,
            "margin": false,
            "padding": false,
            "customSpacingSize": true,
            "units": [ "px", "em", "rem", "vh", "vw" ],
            "spacingScale": {
                "operator": "*",
                "increment": 1.5,
                "steps": 7,
                "mediumStep": 1.5,
                "unit": "rem"
            },
            "spacingSizes": []
        },
        "typography": {
            "customFontSize": true,
            "dropCap": true,
            "fluid": false,
            "fontFamilies": [],
            "fontSizes": [],
            "fontStyle": true,
            "fontWeight": true,
            "letterSpacing": true,
            "lineHeight": false,
            "textColumns": false,
            "textDecoration": true,
            "textTransform": true
        },
        "blocks": {
            "core/paragraph": {
                "border": {},
                "color": {},
                "custom": {},
                "layout": {},
                "spacing": {},
                "typography": {}
            },
            "core/heading": {},
            "etc": {}
        }
    }
}

My Applied Theme Code

{
    "version": 2,
    "settings": {
        "appearanceTools": false,
        "border": {
            "color": false,
            "radius": false,
            "style": false,
            "width": false
        },
        "color": {
            "background": true,
            "custom": true,
            "customDuotone": true,
            "customGradient": true,
            "defaultGradients": true,
            "defaultPalette": true,
            "duotone": [],
            "gradients": [],
            "link": false,
            "palette": [],
            "text": true
        },
        "custom": {},
        "layout": {
            "contentSize": "800px",
            "wideSize": "1000px"
        },
        "spacing": {
            "blockGap": null,
            "margin": false,
            "padding": false,
            "units": [ "px", "em", "rem", "vh", "vw" ]
        },
        "typography": {
            "customFontSize": true,
            "dropCap": true,
            "fontFamilies": [],
            "fontStyle": true,
            "fontWeight": true,
            "letterSpacing": true,
            "lineHeight": false,
            "textDecoration": true,
            "textTransform": true
        },
        "blocks": {
            "core/paragraph": {
                "border": {},
                "color": {},
                "custom": {},
                "layout": {},
                "spacing": {},
                "typography": {}
            },
            "core/heading": {},
            "etc": {}
        }
    }
}
SubjectLink
Block Editordeveloper.wordpress.org/block-editor/how-to-guides/themes/theme-json/
How Createfullsiteediting.com/lessons/creating-theme-json/

Customize Twenty Twenty One Theme

Customize Twenty Twenty One Theme

Change Header Color Size (Twenty Twenty One)

header#masthead {
max-width: 100% !important;
padding-left: 10%;
padding-right: 10%;
background: red !important;
padding-bottom: 2%;
padding-top: 2%;
}

header#masthead {
    max-width: 100% !important;
    padding-left: 10%;
    padding-right: 10%;
    background: #D34F73FF; !important;
    padding-bottom: 2%;
    padding-top: 2%;
}

header#masthead .site-title, header#masthead .site-title * {
    color: #ffffff !IMPORTANT;
    font-size: 27px;
    !important;
}
.site-description {
    color: #ffffff !IMPORTANT;
    font-size: 17px;
    !important;
}

@media only screen and (min-width: 482px){
.primary-navigation .primary-menu-container > ul > .menu-item > a {
    color: #ffffff !important;
    font-size: 18px !IMPORTANT;
   !important;
}
}

@media only screen and (min-width: 482px){
.primary-navigation .primary-menu-container > ul > .menu-item > a:hover {
    color: blue !IMPORTANT;
}
}

footer#colophon {
    clear: both;
    width: 100% !IMPORTANT;
    max-width: 100% !important;
    padding-left: 10% !important;
    padding-right: 10% !important;
	  background: #32373C;
	  padding-bottom: 0%;
    padding-top: 0%;
}

.site-info .powered-by {
  margin-top: initial;
  margin-right: auto;
	color:white;
}

.powered-by a {
    color: blue !IMPORTANT;
}

.site-name {
	color:white;
}

.entry-content a
{
	color:blue;
}

.ref {
	color:red;
}
/* Author Image */
.author-bio.show-avatars .avatar {
    display: none;
}

Additional CSS for Hadisquran

/*Fonts for p td */
 
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');

p, td{
font-family: 'Amiri', serif;
		line-height:2;
}

.fnp {
	line-height: 2.1em;
	font-size: 40px;
font-family: 'Amiri', serif;
}

.fntd {
font-family: 'Amiri', serif;
}

.ref {
color: #008856;
}

.son {
color: #B551E0;
}

/* Header Background */
header#masthead {
   /* max-width: 100% !important;*/
    padding-left: 10%;
    padding-right: 10%;
    background: #666633; !important;
    padding-bottom: 2%;
    padding-top: 2%;
}

/* Header Site Title */
header#masthead .site-title, header#masthead .site-title * {
    color: #ffffff !IMPORTANT;
    font-size: 27px;
    !important; 
} */

/* Header Site Description */
.site-description {
    color: #ffffff !IMPORTANT;
    font-size: 17px;
    !important;
} */

/* Primary Navigation*/
@media only screen and (min-width: 482px){
.primary-navigation .primary-menu-container > ul > .menu-item > a {
    color: #ffffff !important;
    font-size: 18px !IMPORTANT;
   !important;
}
}

/* Primary Navigation Hover 
@media only screen and (min-width: 482px){
.primary-navigation .primary-menu-container > ul > .menu-item > a:hover {
    color: blue !IMPORTANT;
}
}

/* Footer */
footer#colophon {
    clear: both;
    width: 100% !IMPORTANT;
    max-width: 100% !important;
    padding-left: 10% !important;
    padding-right: 10% !important;
	  background: #666633;
	  padding-bottom: 0%;
    padding-top: 0%;
}

/* Footer Credential */
.site-info .powered-by {
  margin-top: initial;
  margin-right: auto;
	color:white;
}

/* Footer Credential link Colour */
.powered-by a {
    color: blue !IMPORTANT;
}

/* Site Name */
.site-name {
	color:white;
}

/* Body Link Color */
.entry-content a
{
	color:blue;
}

/*
.ref {
	color:red;
}
*/

/* Author Image */
.author-bio.show-avatars .avatar {
    display: none;
	

Change Header Font Color

SubjectsThemeURL
Additional CSSThreeyoutube.com/watch?v=Xz7uo1cFma0
CSS TricksOnehttps://allaboutbasic.com/2021/01/05/wordpress-theme-twenty-twenty-one-modifications-and-customizations-of-headers-fonts-styles-and-more/
CSS TricksOnesevenspark.com/docs/ubermenu-3/theme-integration/twenty-twenty-one
Theme CustomizationOnekinsta.com/blog/twenty-twenty-one-theme/#customizing-a-template-file
ReviewOnetorquemag.io/2021/01/twenty-twenty-one-review/
Child ThemeOneblog.hubspot.com/website/wordpress-create-child-theme

How to Export and Import Posts and Products in WordPress

How to Export and Import Posts and Products in WordPress

Export Content

  1. Login to the wp dashboard of the source site
  2. Hover on Tools
  3. Click Export
  4. Choose post to export
  5. Should you choose to export posts only, keep in mind that featured images will not be carried over and must be manually imported again on the destination site.
  6. Click on Download Export File

Import Contents

  1. Login to the wp dashboard of the destination site
  2. Hover on Tools
  3. Click on Import
  4. Click on WordPress
  5. Click on Install Now
  6. Run Importer and chose files
  7. If you do not have the WordPress importer installed, you will see a prompt to install the plugin and must do so before continuing
  8. Upload Files

WordPress User Roles and Permissions Management

WordPress User Roles and Permissions Management

WordPress User Roles and Permissions Management

WPWPUWPMWPRWP
hadsqrnNajmulmsr@gmail.comAd
hadsqrnmasrahagmtbd@gmail.comEd
hadsqrnhadisgart1978islamition@gmail.comAd
hadsqrnMuttaengineerhk@yahoo.comAh
hadsqrnnajmulislamnazl@gmail.comAd
hadsqrnmusm197830apprsoft@gmail.comEd
atgmt
atgmt
atgmt
atgmt
atgmt
atgmt