AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.

My htaccess file configuration

 
<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\.0[678] no-gzip
  BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>

<IfModule mod_expires.c>
  ExpiresActive On

  # Images
  ExpiresByType image/jpeg "access plus 1 year"
  ExpiresByType image/gif "access plus 1 year"
  ExpiresByType image/png "access plus 1 year"
  ExpiresByType image/webp "access plus 1 year"
  ExpiresByType image/svg+xml "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"

  # Video
  ExpiresByType video/mp4 "access plus 1 year"
  ExpiresByType video/mpeg "access plus 1 year"

  # CSS, JavaScript
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType text/javascript "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 month"

  # Others
  ExpiresByType application/pdf "access plus 1 month"
  ExpiresByType application/x-shockwave-flash "access plus 1 month"
</IfModule>


<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteRule ^satta http://satta-king.soatechnology.net/
   # Force SSL
  #RewriteCond %{HTTPS} !=on
  #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
   # Remove public folder form URL
 #  RewriteRule ^(.*)$ exxamm/exxamm/public/$1 [L]
</IfModule>
#Options +SymLinksIfOwnerMatch 
#Options +FollowSymLinks

ErrorDocument 400 http://www.soatechnology.net/
ErrorDocument 401 /
ErrorDocument 403 http://www.soatechnology.net/
ErrorDocument 404 http://www.soatechnology.net/
ErrorDocument 301 http://www.soatechnology.net/
ErrorDocument 503 http://delhijurix.com/

<IfModule mod_rewrite.c>
  # RewriteEngine On
 #RewriteCond %{HTTPS} =on
 #RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R,L]

#RewriteEngine On
#RewriteBase /

#RewriteCond %{HTTPS} on
#RewriteRule ^ http://soatechnology.net/$1 [R=301,L]

   
   
</IfModule>

<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{ENV:REDIRECT_STATUS} ^$

RewriteCond %{HTTPS} !on           
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
<IfModule mod_rewrite.c>
RedirectMatch   "^/wp-login/?" /login
</IfModule>

<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>

# BEGIN FRedirect_ErrorDocument
# The directives (lines) between `BEGIN FRedirect_ErrorDocument` and `END FRedirect_ErrorDocument` are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
#ErrorDocument 404 /index.php?error=404
# END FRedirect_ErrorDocument

Change value to only mod_rewrite section

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.+)$ /index.php/$1 [L,QSA]
</IfModule>

AH00126: Invalid URI in request GET

There’s two issues here that are likely contributing to your troubles. First, you can’t check for file existence so easily in a server context (as you are with httpd.conf), because the request hasn’t been mapped to the file system yet.

If your requests for static resources happen to correspond directly to your file system structure beyond your DOCUMENT_ROOT, you can solve this by appending the value of DOCUMENT_ROOT before the incoming REQUEST_URI, as follows:

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d

If the path to your static resources is transformed somewhere down the line, the mod_rewrite documentation suggests using the following, which will issue a subrequest to perform a lookahead based on the request URI:

RewriteCond %{LA-U:REQUEST_FILENAME} !-f
RewriteCond %{LA-U:REQUEST_FILENAME} !-d

This approach is more expensive though, so try to use the first one where at all possible.

Secondly, the URI that you pass back into the request is actually invalid, because it needs the leading slash. Correcting that and combining it with the new conditions above gives you this modified rule set:

RewriteEngine On

RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^.*$ /index.php?page=$0 [PT,QSA,L]

Note that the value of page here will always have a leading slash, so you might actually want to use this rule instead, depending on your handling logic in index.php:

RewriteRule ^/(.*)$ /index.php?page=$1 [PT,QSA,L]

how to get hotstar subscription invoice

You can see your billing history by clicking on ‘View Transactions’ in My Account section on Hotstar website. You will also be able to access invoices for all successful payments from this section.

Please sign in to the website, go to the ‘My Account’ section, and double click on ‘Completed’ under view transaction. You will find your invoice there which can be viewed and downloaded for reference.

windows 10 slow down because of high usage of ram

Close Unnecessary Running Programs/Applications. Disable Startup Programs. Defragment Hard Drive & Adjust Best Performance.

Here are a few effective ways to stop high RAM usage in Windows 10:

  1. Close unused background programs.
  2. Disable startup programs.
  3. Uninstall programs you no longer use.
  4. Check your computer for malware.
  5. Increase virtual memory paging file size.
  6. Change NDU value in the registry.
  7. Disable the SysMain/Superfetch task in the service menu.
  8. Disable animations in the Windows 10 interface.
  9. Reduce the number of tabs open in your browser.
  10. Upgrade your RAM.
  11. Reinstall Windows 10.

Sending of message failed. Account does not exist in Facebook Hosted API, please use /register API to create an account first.

You need to first register the number on WhatsApp Cloud API before you can begin messaging. Checkout their developer docs: https://developers.facebook.com/docs/whatsapp/cloud-api/reference/registration

Note, you will need to add the number to the Business Manager account and verify it in the process first.

Copy the Base64-encoded Certificate

A base64-encoded certificate string is generated for you and is used for validation during WhatsApp Business API client registration.

  1. Go to the Business Settings in your Facebook Business Manager.
  2. Click on WhatsApp Accounts under the Accounts menu, then select your WhatsApp Account from the WhatsApp Accounts list, if it isn’t already highlighted.
  3. Go to the Settings tab, and click the WhatsApp Manager button.
  4. Under the Phone Numbers tab, you should see your phone numbers listed. Click the View button of the phone number you want the certificate for.

use of mod_userdir

mod_userdir allows accessing a user’s homepage using the temporary URL with the /~user/ syntax, like http://ipaddress/~user where ‘ipaddress’ may be replaced with the server’s hostname or any domain name that is resolved to the server you wish to check the content on.

What is Mod_userdir?

mod_userdir. The UserDir directive sets the real directory in a user’s home directory to use when a request for a document for a user is received.

How to Enable mod_ UserDir?

Enable access. To enable mod_userdir access, perform the following steps: Select the Enable mod_userdir Protection checkbox. To enable mod_userdir functionality for specific hosts, select the appropriate Exclude Protection checkboxes.

 Learn how to use a number that’s already on WhatsApp.

You can delete your account from within WhatsApp. Deleting your account is an irreversible process, which we can’t revert even if you perform it by accident.

To delete your account

  1. Open WhatsApp.
  2. Tap More options > Settings > Account > Delete my account.
  3. Enter your phone number in full international format and tap DELETE MY ACCOUNT.
  4. Select a reason for why you’re deleting your account in the dropdown.
  5. Tap DELETE MY ACCOUNT.

Deleting your account will:

  • Delete your account from WhatsApp.
  • Erase your message history.
  • Delete you from all of your WhatsApp groups.
  • Delete your Google Drive backup.

If you delete your account:

  • You can’t regain access to your account.
  • It may take up to 90 days from the beginning of the deletion process to delete your WhatsApp information. Copies of your information may also remain after the 90 days in the backup storage that we use to recover in the event of a disaster, software error, or other data loss event. Your information isn’t available to you on WhatsApp during this time.
  • It doesn’t affect your information related to the groups you created or the information other users have relating to you, such as their copy of the messages you sent them.
  • We may retain certain log data in our databases even after you delete your account, but such data will be disassociated from any identifying information such that it can no longer be linked to your account. To do this, on a regular basis, we wipe certain identifying information from this log data, and we replace any instance of your account ID with a replacement identifier which cannot be linked back to your account once it is deleted.
  • We may also keep your information for things like legal issues, terms violations, or harm prevention efforts.
  • Please refer to our Privacy Policy for more information.
  • Your information shared with other Meta Companies will also be deleted.

linux zip exclude file extension

 sudo zip public_html.zip public_html/ -r -x \*.mp4 -x \*.mp3 -x \*.mov -x \*.zip
 sudo zip -r public_html.zip public_html/  -x \*.mp4 -x \*.mp3 -x \*.mov -x \*.zip -x \*.mkv