Posts

My YouTube account was disabled by YouTube and the disabled account was the default channel. Now I can't access my other channel from the same Gmail. How can I fix this?

  My YouTube account was disabled by YouTube and the disabled account was the default channel. Now I can't access my other channel from the same Gmail. How can I fix this? the only way to fix this is to get your account undisabled, you can appeal this and maybe if you didn’t have that many subs or videos/views you could restart totally on a new gmail. A YouTube channel manager can't add or manage the access of others , but they can:   Upload, edit, and delete videos See channel analytics Edit the account information Reply to comments Add playlists A channel owner can invite other people to access the channel. To do this, you can:   Go to YouTube Studio Select Settings Select Permissions Click Invite Enter the email address of the person you want to grant access to Choose one of the access options

454 4.7.0 TLS not available due to local problem

 454 4.7.0 TLS not available due to local problem install ssl for postfix on cyber panel https://207.244.254.94:8090/manageSSL/sslForMailServer just select any domain and issue SSL

curl: (60) SSL certificate problem: certificate has expired

 curl: (60) SSL certificate problem: certificate has expired curl -I --insecure https://www.onlinepng.com/rest/default/V1/products/attributes/metal_type $curlMetal_Type = curl_init(); curl_setopt_array($curlMetal_Type, array(     CURLOPT_URL => 'https://www.onlinepng.com/rest/default/V1/products/attributes/metal_type',     CURLOPT_RETURNTRANSFER => true,     CURLOPT_ENCODING => '',     CURLOPT_MAXREDIRS => 10,     CURLOPT_TIMEOUT => 0,     CURLOPT_FOLLOWLOCATION => true,     CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,     CURLOPT_CUSTOMREQUEST => 'GET',     CURLOPT_HTTPHEADER => array(         'Authorization: Bearer 0ndxl4m7tb5thn284b2two596egtynsw'     ),     CURLOPT_SSL_VERIFYPEER => false, // Disable SSL certificate verification )); this is added  CURLOPT_SSL_VERIFYPEER => false, // Disable SSL certificate veri...

kipmi0 using 100% CPU

  Seeing 1.00 average server load – 100% of a single core used by kipmi0. Resolved by executing from shell, as root – echo 100 > /sys/module/ipmi_si/parameters/kipmid_max_busy_us Another note: On CentOS/RHEL, that command can be made permanent by adding it to /etc/rc.d/rc.local. The rc.local runs after all of the other init scripts

block crawling of a page with robots.txt

create a robots.txt block thes pages, https://web-stories.in/c and https://web-stories.in/shop.php User-agent: * Disallow: /c Disallow: /shop.php This robots.txt file will block all search engines from crawling the pages  /c  and  /shop.php . As a result, these pages will not be indexed by search engines and will not appear in search results. To create a robots.txt file, you can use a text editor to create a new file named  robots.txt  and add the above code to it. Then, you can upload the file to the root directory of your website. Once the robots.txt file is in place, search engines will start crawling your website and will respect the instructions in the file. This will prevent them from crawling the pages  /c  and  /shop.php , and these pages will not be indexed by search engines.

how to set 410 for a page

create page with below content for tuny.php  <?php header ("HTTP/1.1 410 Gone"); echo "<h1>410 Gone</h1>"; echo "<p>The resource you are looking for has been deleted.</p>";

renmae xmlrpc.php from all /home/*/public_html directory

You can use the find command along with the exec action to search for all xmlrpc.php files under /home/*/public_html/ and rename them to xmlrpc.php-back . Here is the modified command: sh Copy code find /home/*/public_html/ - type f -name "xmlrpc.php" - exec mv -v {} {}-back \; Explanation: find : This command is used to search for files and directories based on a given expression. /home/*/public_html/ : This searches within the public_html directories of all users. -type f : This option ensures that find only looks for files. -name "xmlrpc.php" : This finds all files named xmlrpc.php . -exec : This option allows you to pass another command that will be executed on every file found. mv -v {} {}-back : This is the mv (move) command used to rename files. The {} symbol is a placeholder that find replaces with the current file path. So mv -v {} {}-back effectively renames each found file by appending -back to its name. The -v option makes the mv command...