Tuesday, October 7, 2014

i recieve sorry the process android.process.acore has stopped unexpectedly please try again when i try to access my contacts list?

Try to find out which application or update you install before you get this error on your smart phone. Remove that application and you will get rid out of it. In my case, I have installed Viber application after which I receive this error. After uninstalling it, now I can access my contact list.


Wish you all the best.... If this solution works for you then write comment so that its authenticity will increase.


Thanks.

Sunday, May 11, 2014

You don't have permission to access / on this server on wamp

After WAMP server installation, when I tried to access it using URL

http://localhost:8080

it through me below message

"You don't have permission to access / on this server on wamp"

This message is appeared when you have an Operating System (Windows  8, Window 7, etc.) which is IPv6 compatible. This is because Apache server assumes that it will receive messages from ::1 port while we are only sending it from 127.0.0.1. To resolve the issue, you need to make changes in httpd.conf file (C:\wamp\bin\apache\apache2.2.22\conf\httpd.conf)  and in phpmyadmin.conf (C:\wamp\alias\phpmyadmin.conf). First you need to replace below line in httpd.conf file

Allow from 127.0.0.1

to

Allow from 127.0.0.1 ::1

Similarly, in phpmyadmin.conf file you need to replace the same line

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

to

    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
Deny from all
Allow from 127.0.0.1 ::1

After saving the changes in both files, restart the wamp server and now try to access the link "http://localhost:8080" .

Hope that issue is resolved now.

In case if above post resolve your problem then kindly comment to increase the credibility of the post.

Docker Tutorial

 I have listed all the necessary commands of Docker below. In case if any is missing or if any improvement required, please share in comment...