Office 365 How to Change a user’s display name
Login to the admin account, then select admin panel In the admin center, go to the Users > Active users page. Click the user's name. Then select Manage contact information. In the Display name box, type a new name...
Call to undefined function MYSQL_NUM_ROWS()
mysql_* functions have been removed in PHP 7. You have to use mysqli_ functions. mysqli_num_rows() Here is an example: $conn = new mysqli($servername, $username, $password, $dbname); $sql = "SELECT `index`, `opendate` FROM open_and_birth GROUP BY `opendate`"; $result...
How to fix error: inet_e_resource_not_found
if you have the error message same as: error codes like Hmmm… Cannot reach this page: then you can find some details error like: “There was a temporary DNS error. Try refreshing the page. Error Code: INET_E_RESOURCE_NOT_FOUND” “The connection to the DNS server timed...
AMPPS install Yetiforce
default username and password: admin Password1 fix The following errors were found : Required PHP extension not found : intl you need enable php_intl.dll : open php.iini then Change ;extension=php_intl.dll to extension=php_intl.dll (remove the semicolon) Class...
Transfer WordPress Http to Https Error
After I install the SSL certificate to the server. I change the then I got these error. If you have the same error with your website. then you have 90% chance to fix it by yourself. error 1: Not Authorized to View This Page [CFN #0004] error 2: Not found [cfn #0005]...
The solution to put polylang switch side by side of the logo WordPress.
To use this tutorial, you need to find the current hearder.php file of your WordPress theme. (for example MH Magazine lite theme the header.php file is includes/mh-custom-functions.php) first you need le the logo float to left. add the code to the style.css line 110:...
Change Import file size limit in PHPMyAdmin
When you try to import database throught PHPMyadmin you have limitation: (Max: 8,192KiB) To increase the PHPMyadmin import limitation. you need to find your server php.ini file then find the line of post_max_size change it to the value that you want. for example:...
How to solve WordPress waiting for count.carrierzone.com
if you see waiting for count.carrierzone.com and you WordPress website hanging. then you need disable: <!-- WiredMinds eMetrics tracking with Enterprise Edition V5.4 START --> <script type='text/javascript'...
WordPress invalid menu items
You can Remove invalid menu items under “appearance->menu” from the dashboard. If you want restore the menu item. you need check if the page or post on the trash bin. if you can find them from the trash, then you need restore them back. If you can not find them in the...
Maximum execution time of 30 seconds exceeded within PhpMyAdmin
Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files\Ampps\phpMyAdmin\libraries\classes\Dbi\DbiMysqli.php on line 213 find your php.ini file ( in my case C:\Program Files\Ampps\phpMyAdmin\libraries) then edit the fellowing...
WordPress multilanguage Garbled – Solved
If your WordPress multilingual website shows garbled like the picture showing on top. then it must be something wrong with your WordPress language file. Because WordPress can be used in a variety of languages, it must store each language in a separate file. Each...
Remote access mysql database using phpMyAdmin
mysqli_real_connect(): (HY000/1130): Host '192.168.1.6' is not allowed to connect to this MySQL server Reason: This error occurs due to the default configuration the MySQL database is currently using. This configuration allows connections only from the ‘root’ user...