Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi,
    When you are typing, first select the input/textarea, and then press buttons on keyboard:
    Ctrl + Left Shift sets the text direction to left-to-right.
    Ctrl + Right Shift sets the text direction to right-to-left.

    Good luck.

    Forum: Fixing WordPress
    In reply to: Audio Background

    Hi,
    You can try audio tag in html without plugin!
    Sample code:

    <audio loop autoplay style="display:none">
    <source src="https://www.thepizzapusha.com/wp-content/uploads/2018/12/wiz-khalifa-stay-stoned-redbone-weedmix.mp3" type="audio/mpeg">
    </audio>

    Place the code in the right place (theme).
    Internet Explorer, Chrome, Firefox, Safari and Opera supports MP3 format with “audio/mpeg” MIME-type.

    Good luck.

    Hi,
    This is a sample web.config :

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <directoryBrowse enabled="true" />
            <staticContent>
                <mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
                <mimeMap fileExtension=".jpeg" mimeType="image/jpeg" />
                <mimeMap fileExtension=".gif" mimeType="image/gif" />
                <mimeMap fileExtension=".png" mimeType="image/png" />
                <mimeMap fileExtension=".bmp" mimeType="video/bmp" />
            </staticContent>
        </system.webServer>
    </configuration>

    First, test top code, if this code is running true, then test/use bottom code:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <directoryBrowse enabled="true" />
            <staticContent>
                <mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
                <mimeMap fileExtension=".jpeg" mimeType="image/jpeg" />
                <mimeMap fileExtension=".gif" mimeType="image/gif" />
                <mimeMap fileExtension=".png" mimeType="image/png" />
                <mimeMap fileExtension=".bmp" mimeType="video/bmp" />
            </staticContent>
        <rewrite>
          <rules>
            <rule name="wordpress" stopProcessing="true">
              <match url=".*" />
              <conditions logicalGrouping="MatchAll">
    	    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
              </conditions>
              <action type="Rewrite" url="index.php" />
            </rule>
          </rules>
        </rewrite>
        </system.webServer>
    </configuration>

    Note: after save web.config , you must restart web-server.
    Documents: https://bit.ly/2tvrK5o

    Good luck.

    Hi,
    I think because you are using ssl / https on your website,
    This file is loaded via the HTTP protocol:
    http://fonts.googleapis.com/css?family=Dancing+Script%3A400%2C700%7CLato%3A400%2C700%7COpen+Sans%3A400%2C700%7CQuattrocento+Sans%3A400%2C700&ver=4.9.6
    And then your website has insecure error.
    This url (http://fonts.googleapis.com) does not support HTTPS protocol, And with these conditions you must upload css file and fonts on your host and change links in source to your site with protocol HTTPS.

    Good luck.

    Hi,
    You can change your password via database.
    Go to phpmyadmin and select your database,
    Then click on wp_users table.
    Edit your admin record, and enter the user_pass from the following value:
    008f9b7201ff06e78b05a6bcb1fac820
    Now your admin password is:
    123654123
    * Password without space
    After login to admin, you can change your password.

    Note: If your IP has been locked, you can search your ip in database and find the record and delete it!

    Good luck.

    Hi,
    A series is related to the server and a series is related to the script.
    With so many content, surely your website visit should be high too.
    Some Server-Side Issues:
    You should have a strong server with a good hard drive like the NVME SSD and use the most powerful webservers like LiteSpeed .
    And for better speed, You must use Server-Side Cache.
    Server side caching is the act of caching data on the server.
    Data can be cached anywhere and at any point on the server that makes sense. It is common to cache commonly used data from the DB to prevent hitting the DB every time the data is required. We cache the results from competition scores since the operation is expensive in terms of both processor and database usage. It is also common to cache pages or page fragments so that they don’t need to be generated for every visitor.

    Some Script Issues:
    The number of your plugins will be minimized and use a fast theme (optimize theme).

    Good luck.

    Hi ,
    I think webserver can not identify mime type for images.
    You can add MIME type in <system.webServer> ,
    For example :

          <staticContent>
             <mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
          </staticContent>

    After saving, you can restart the webserver.
    Mime types for images :

    image/gif
    image/png
    image/jpeg
    image/bmp
    image/webp

    Good luck .

Viewing 7 replies - 1 through 7 (of 7 total)