ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Emad R
    3. Posts
    • Profile
    • Following 3
    • Followers 3
    • Topics 171
    • Posts 1,332
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Cant get Rocket.Chat Snap to send SMTP emails

      @Emad-R 2019-05-26 20_53_58-How To Install and Configure Postfix as a Send-Only SMTP Server on Ubuntu 14.04 .png

      Issue not with snap, command line ssmtp does not send as well

      posted in IT Discussion
      Emad RE
      Emad R
    • Cant get Rocket.Chat Snap to send SMTP emails

      I am using third party service and tried both

      SMTP2GO
      and
      sendinblue

      And It is showing icon that emails got send but not receiving! Digital ocean + ubuntu 18 18.04

      2019-05-26 20_33_16-Window.png

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Calling Minecraft Experts - Modded Minecraft Server Booting User

      @NashBrydges

      Did you try with UFW inactive ?

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Exploring VitalPBX

      @scottalanmiller

      Centos Latest 7 ? like what version are you running , i tend to use rolling ISO:
      1902-01.iso
      https://buildlogs.centos.org/rolling/7/isos/x86_64/?C=M;O=D

      Also what is the Asterisk Version ?

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: SAMIT on Huawei vs US & Google Day Two Recap

      @scottalanmiller

      Very realistic point of view, I am waiting for what they will do with newer phones, BTW huawei owns middle east market , my phone is nova plus.

      posted in News
      Emad RE
      Emad R
    • RE: Why is it called automation?

      @Pete-S

      The product automation but they need heck a lot of manual labor.

      posted in IT Business
      Emad RE
      Emad R
    • RE: Database held for ransom, anyone experience this before?

      Yup, restore from backups. ARe you using old Drupal or Wordpress Site or shared hosting like TMD ?

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Need a script to cleanup a Backblaze B2 bucket

      @JaredBusch

      If you can keep the backup locally, then rclone or b2 api can do this, by performing the rules locally then syncing it to the cloud.

      If you cant keep them locally due to size, why not create cron rclone dummy rule to sync dummy file to that bucket, this will force it to delete b2 storage cause that dummy file is not existing, you will need to use rclone sync function and not copy.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Data check/scrub RAID 1 - how often?

      @Pete-S

      Monthly or twice a month at night, Scrubbing will check each block and that takes alot of time and performance.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Docker for Production Use of Third Party Software

      @scottalanmiller

      I agree with the black box argument, and harder to maintain.

      DevOps and the Death of the System Admin...

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Suggestions to build a High-End Gaming PC

      @brianwinkelmann

      Anything with ThreadRipper and 32-64 GB RAM, will last you for 5+ years and the Storage/GPU can be easily upgraded. I dont use alot of GPU so something like GTX 1650 will work for me, cause it needs no external power and you can get away with 500W PSU with that.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Phishing testing / awareness / training suggestions?

      @manxam said in Phishing testing / awareness / training suggestions?:

      HFS web server and log IPs that click the hyperlink.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: WordPress Cutover Main Page Works, but Secondary Pages Do Not

      @scottalanmiller

      Ok ensure .htaccess file is present and has good permission

      try chmod something open to the docroot and chown like www-data:www-data for whole docroot just for test

      Use wordpress cli to change the site URL home and URL address to the correct values after site move
      define( 'WP_HOME', 'http://example.com' );
      define( 'WP_SITEURL', 'http://example.com' )

      You can use the portable phar
      https://gist.github.com/pcsontos/122fceb3d6e6e43da98d
      wp-cli.phar option update home 'http://example.com'
      wp-cli.phar option update siteurl 'http://example.com'

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Tracking Down an Apache & WordPress Memory Leak

      @scottalanmiller

      Not sure why it happens. but if you use memcache that will reduce the load on DB and PHP and apache, so that might help

      Restore Apache config to default, is PHP running as mod apache ? take it out perhaps the leak is in PHP

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Do you live near a meth lab?

      Fking Sackler Family

      posted in Water Closet
      Emad RE
      Emad R
    • RE: AMD Vs Intel

      @hobbit666

      After Ryzen, everything AMD released is good. and worth having.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Need headphones

      @Obsolesce

      SoundMagic E10 or E10C
      40-50 USD

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: If Not WordPress, What's the Alternative

      @scottalanmiller

      WP autoupdates man by itself, it is super easy and simple.

      However I think many folks are moving to self documenting systems or without DB, I never used them but heard of them.

      You just have to use WP with like 1-5 plugins, no need for 100, and it will be perfect.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: virt-manager for Windows

      @scottalanmiller

      I searched this b4, forget about it. There is none.

      posted in IT Discussion
      Emad RE
      Emad R
    • RE: Windows Server 2019 Need to Download and Run without AV Deleting Files

      @scottalanmiller

      I made this script cause I dont rely on Windows AV , i rely on my judgement on how not to get Viruses

      sc config "wuauserv" start= disabled
      sc config "Sense" start= disabled
      sc config "WdNisSvc" start= disabled
      sc config "WinDefend" start= disabled
      
      REG add "HKLM\SYSTEM\CurrentControlSet\services\WinDefend" /v Start /t REG_DWORD /d 4 /f
      
      @echo off 
      echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> Windows Defender -> Turn Off"
      echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> File Explorer -> Configure Windows Defender SmartScreenTurn -> Off"
      echo "REGEDIT = Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System	EnableLUA=0"
      
      sc stop wuauserv
      sc stop Sense
      sc stop WdNisSvc
      sc stop WinDefend
      

      You dont need all of it, i think you only need

      @echo off
      echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> Windows Defender -> Turn Off"
      echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> File Explorer -> Configure Windows Defender SmartScreenTurn -> Off"

      Try to do the 2 gpedit using command line, I am not sure how then reboot

      posted in IT Discussion
      Emad RE
      Emad R
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 66
    • 67
    • 14 / 67