Jason's blog

How to Become Google Adsense Millionaire

 

Step by step How to become Google Adsense Millionaire

 

   Not every body can become Google Adsense millionaire... but everybody have that dream to become Google Adsense millionaire... Recently I have found this code that can make me an Google Adsense millionaire instantly... watch how I became an Adsense millionaire in this step by step to make an Google Adsense millionaire.

 

1.  Login to you Adsense account: on URL bar : https://www.google.com/adsense/report/overview

google adsense url

 


Adsense Injector No Google Adsense client ID choosing module is enabled. Please check your settings

 

Drupal No Google Adsense client ID choosing module is enabled. Please check your settings

 

   Today i'm upgrade the Adsense Injector module for my Drupal site. but then the error message * No Google Adsense client ID choosing module is enabled. Please check your settings appear.  What a pity... my adsense CTR is low then ever... now my Adsense not working anymore... try to search the net to find the solution for No Google Adsense client ID choosing module is enabled. Please check your settings... nothing that make sense appear... after hours... and lot trial an error... I think I got the solution for the No Google Adsense client ID choosing module is enabled. Please check your settings message and hope this solution could be use for other that have the same problem.

 

 The No Google Adsense client ID choosing module is enabled. Please check your settings message example on Drupal page:


How to make money online the idiot guide to Google Adsense success.

 

How to make money online – The idiot guide to Google Adsense success

 

Wonder how people make money online? The article below show you the step by step to register adsense and start make money online…

 

What is adsense???

 

Basic Info: Advertisements that run by Google.  Google will pay you when you display their advertisement on your web page / site, Google also pay for every click on their advertisement thru your account.

More Info: Google AdSense is an ad serving program run by Google. Website owners can enroll in this program to enable text, image and, more recently, video advertisements on their sites.

 


Google system down 10 june 2007

Today... cannot log in adsense hehhehehehheh :-)

http://www.google.com/errors/asfe/system_down.html

error message:

 

The Google AdSense website is temporarily unavailable. Please try back later.
We apologize for any inconvenience.

Google AdSense の web サイトは一時的にご利用いただけません。後で再度お試しくださいますようお願いいたします。
お手数をおかけいたしますことをお詫びいたします。

Die Google AdSense-Website ist vorübergehend nicht verfügbar. Bitte versuchen Sie es später noch einmal.
Wir entschuldigen uns für eventuell enstandene Unannehmlichkeiten.

Le site Google AdSense est temporairement indisponible. Veuillez réessayer plus tard.
Nous vous prions de nous excuser pour le désagrément occasionné.

El sitio web de AdSense de Google no se encuentra disponible en estos momentos. Por favor, inténtelo de nuevo más tarde.
Disculpe las molestias.


Select and working with MySQL database.

 Sometimes you have lot of database on your MySQL server, this list of database could be so many, but you just need to work with one of these database. This article show step by step to select and start working with the database.

1. Login and connect to you MySQL database:

# mysql -u root -p

 

2. List all MySQL database available on the server:

  mysql> SHOW DATABASE;

 

3.. Choose the database that you want to work with:

  mysql> USE mysql-database-name;

 

Wink This example show that we change and start working with the current database that named 'mysql-database-name';

SealedPlease change the 'mysql-database-name' with the database that you want to work with.


Display list of database on MySQL server.

This article show step to display the list of database that available on your MySQL database server. This is command is quite useful if you have lot of database on your server and you want to list all of them.

1. Log in to MySQL server, make sure that you have sufficient privilages to list all database available on your MySQL:

[root@tenouk ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 70 to server version: 5.0.27
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>

2. To list all database on your MySQL sever:

mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| databasename |
| jmtidb |
| mysql |
| test |
+--------------------+
5 rows in set (0.00 sec)

mysql>

 

The database shown on these example are named information_schema, databasename, jmtidb, mysql and test.


Drupal display blank page after adding enabling Drupal modules

 

Drupal display blank page after adding or enabling new Drupal modules.

 

Page access control not found or Drupal display blank page after you adding or enabling new Drupal modules.  The example that I get, gallery2 just display blank page. The reason is that you may be running out of memory, you may need to check the PHP configuration file and check default memory setting for your PHP.
 

The default PHP memory limits for:
Fedora Core 5: 8M
Fedora Core 6: 16M

Solution: increase PHP memory by editing the PHP configuration file located at /etc/php.ini or use find command to locate the PHP (php.ini) configuration files.
[root@fedora ~]# find / -name php.ini
 


Setup and configure MYSQL database server on Fedora Core.

The step by step procedure below is show the setup procedure and the configuration of MYSQL database server (MSQLd) on Fedora Core 6 operating system.

[root@tenouk ~]# mysqladmin -u dba_user -p create databasename
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)'
Check that mysqld is running and that the socket: '/var/lib/mysql/mysql.sock' exists!

1. If the error message above appear, this could mean that you MYSQL sever is not in service, you need to start the mysqd server on your fedora core server. Try the service command to start mysqld as in example below:.


Change root password for mysqld on Fedora Core.

The article below show step by step procedure how to change the current root password for MYSQLd (MYSQL server). This procedure can be done only when you know the current root password for MSQLd server; The step by step command below execute and tested on Fedora Core 6 using Ver 14.12 Distrib 5.0.27.

[root@tenouk ~]# mysql --user=root --pass mysql

Enter password: [Enter your MYSQL root password here, then hit enter key]

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A


Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 1 to server version: 5.0.27


Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

[Use and executet MYSQL command below and put your new password for MYSQL root user]

mysql> update user set Password=PASSWORD('your-new-mysql-password') WHERE User='root';

Query OK, 2 rows affected (0.01 sec)

Rows matched: 2 Changed: 2 Warnings: 0

[To apply changes make sure you execute the command below]

mysql> flush privileges;


Setting MYSQL database privilages for user

To use MySQL database you need to give your user permission (privallages) to access and edit the database.

The example below give full privillages to user to edit and acces the database.

1. Log in to mysql with the user that have full permission .

[root@bakawali ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1408 to server version: 5.0.22

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.


2. To Grand All privillages to database user.

mysql> GRANT ALL PRIVILEGES ON database_name.* TO 'database_user'@'localhost' IDENTIFIED BY 'user_password';
Query OK, 0 rows affected (0.07 sec)


3. To apply the changes execute this command

To activate the new permissions, enter the following command:
FLUSH PRIVILEGES;

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.05 sec)


4. To exit the mysql database

mysql> exit
Bye
[root@bakawali ~]#

 


 

NOTE: Below is the examle to grant specific privillages to the mysql database

mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON database_name.* TO 'database_user_name'@'localhost' IDENTIFIED BY 'user_password';


Custom Search

Syndicate content