Sunday, April 24, 2016

cara membuat blog dengan mudah menggunakan wordpress yang webnya keren d...

Friday, January 8, 2016

Access denied for user 'root'@'localhost' (using password: YES)

#1045 - Access denied for user 'root'@'localhost' (using password: YES) 

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.

change :
$cfg['Servers'][$i]['auth_type'] = 'http';
to
$cfg['Servers'][$i]['auth_type'] = 'cookie';

Tuesday, January 5, 2016

Reset Password Root phpmyadmin


  1. D:\xampp\apache\conf\extra\httpd-xampp.conf
  2. Change AllowOverride AuthConfig TO AllowOverride all
    Alias /phpmyadmin "D:/xampp/xampp/phpMyAdmin/"
       
            AllowOverride AuthConfig
            #AllowOverride all
            Order allow,deny
            Allow from all
       
  3. Change in D:\xampp\phpMyAdmin\config.inc.php cookie to config
    // $cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
    $cfg['Servers'][$i]['auth_type']     = 'cookie';    // Authentication method (config, http or cookie based)?



Wednesday, December 30, 2015

Forbidden You don't have permission to access /phpmyadmin on this server.

Forbidden  You don't have permission to access /phpmyadmin on this server.
If you have problem like that, change in folder of apache / in file httpd.conf
Change from :

  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1


Become :

 Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
        Allow from all


example :


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
        Allow from all

Wednesday, November 25, 2015

Apa itu active directory?

Apa itu active directory?
Active Directory adalah aplikasi pengaturan user dan komputer yang terdaftar disuatu jaringan. Dimana user dan komputer dapat dibagi dalam grup, unit, departemen dan lainnya dalam obyek yang ada di dalam active directory

Wednesday, May 7, 2014

Fail Export CSV

When I open the CSV file I exported, all data appear in 1 column instead of several

It may happen that your spreadsheet editor (Excel for example), when you open the CSV file you just exported from BeeBole, will show the data in one single column instead of nicely splitting them in several columns.
The reason behind this behavior is that CSV files (Comma Separated Values) are splitting data into columns using " , " as separator by default. But in certain countries, the default value used as separator is " ; " instead.
So, what should you do if your computer expect " ; " instead of " , "?
  1. Go to your Settings page clicking on the link in the top-right corner of your screen (You have to be an admin)
  2. In the Localization module, change the "List separator for exports" field from "coma ( , )" to "semicolon ( ; )"

Alternatively, you might want to change the Regional Settings of your computer if it happens for several app you use and not only BeeBole

Then, in Windows for example:

Go to Start>Settings>Control Panel>Regional and Language Options.
Click “Customize”.
Enter “,” for “List Separator”

source : http://help.beebole.com/home/faq/csv-format-does-not-work-in-excel