25 Google Assistant Commands That Will Transform Your Life

By sw

What are the Google Assistant commands you need to know? Everyday commands Send an email to [contact name] Read my text messages Send a message Send a WhatsApp message Call home Call [your contact name] Make a call Make a video call with dad Commands for…

Digital Currencies – Bitcoin (BTC), BITCOIN CASH (BCH) and BITCOIN GOLD (BCG)

By sw

Bitcoin (symbol: Ƀ; abbrev: BTC or XBT, peer-to-peer electronic cash system) is a decentralized cryptocurrency-like digital currency, as well as an alternative economic system, featured in 2008 on The Cryptography Mailing mailing list[10] by a programmer, or a group of programmers, under the pseudonym Satoshi Nakamoto; It is considered the world's first digital currency…

ERROR: mysql_fetch_assoc() expects parameter 1 to be resource

By sw

The error “mysql_fetch_assoc() expects parameter 1 to be resource” can be associated with several factors with which PHP will access the Database, to identify the specific error use the following command. Ex: Solution to identify the specific error of the query $query = “SELECT *…”; $query = mysql_query($query); if (!$query) { die(mysql_error()); }…

Removing index.php from site url in Joomla

By sw

Para remover o index.php no Joomla utilize os seguintes procedimentos. No .Htaccess Insira o seguinte código Options +FollowSymLinks RewriteEngine On RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR] RewriteCond %{QUERY_STRING} (|%3E) [NC,OR] RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) RewriteRule .* index.php [F] RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteCond %{REQUEST_URI} !^/index\.php RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}…