Rss Feed Like Us on facebook Google Plus

September 3, 2013

Volcano Box Setup 2.1.9








Volcano Box v2.2.9 Update Setup Download

Download Now

How to Read MTK Android Full Flash in Factory Tool Format.
You have to perform as you read from here for Success !

1- Phone must be Rooted & Usb Debug On & Working Condition & Memory Card must be Inserted ( more than 2 Gb & 32 bit Formatted )
2- Plug phone with usb
3- Download VolcanoBox 2.2.9 & Extract it & Open it
4- Select MTK tab
5- Select One-Key Root
6- Select Back Flash
7- Select Folder to Save Flash file Backup in FACTORY Format
8- Do wait... Software will tell you Completed
It's ready now for Factory Tool Flasher to Flash your phone

  • Search & Download Latest Smart Phone Flash Tool ( MTK Original Flash tool )
  • Select Scatter File
  • Click on download


Wait for flashing and Your will be Done !

Read More

HTML5 Introduction

HTML5 is the 5th major revision of the core language of the World Wide Web: the Hypertext Markup Language (HTML). In this version, new features are introduced to help Web application authors, new elements are introduced based on research into prevailing authoring practices, and special attention has been given to defining clear conformance criteria for user agents in an effort to improve interoperability.
                                                                                                            W3.org

HTML5 is the ubiquitous platform for the web. Whether you're a mobile web developer, an enterprise with specific business needs, or a serious game dev looking to explore the web as a new platform, HTML5 has something for you! Choose your path: 
                                                                                                          HTML5 Rocks


HTML5 - New Features

Some of the most interesting new features in HTML5:
    HTML5 Powered with Connectivity / Realtime, CSS3 / Styling, Device Access, Multimedia, Semantics, and Offline & Storage
  • The <canvas> element for 2D drawing
  • The <video> and <audio> elements for media playback
  • Support for local storage
  • New content-specific elements, like <article>, <footer>, <header>, <nav>, <section>
  • New form controls, like calendar, date, time, email, url, search

Browser Support for HTML5

Mozilla Firefox, Google Chrome, Opera , Safari , IE 9+




Read More

August 30, 2013

Download Lemon B229 Flash File

Lemon B229 Flash File 16MB

Download

Detection initiated...
Vcc: null
Gnd: 2 4
Analyzing D+ and D-...
D+ = 6, D- = 8
Analyzing USB device, please wait...
Find USB device:SCI USB2Serial (COM5), (VID_1782&PID_4D00)





Read More

August 29, 2013

Error 0x80070522: A required privilege is not held by the client.

This Problem occurs when you copy files to c drive or any other drive. the error message comes and you are not able to copy files.

or any window software not able to generate files in C drive...
This issue might occur permissions are not set properly for the C Drive.
Make sure that you are logged in as Administrator.

To take ownership of C Drive, follow these steps:
  • Right-click the C Drive and then click Properties.
  •  Click the Security tab.
  • Click Advanced, and then click the Owner tab.
  • In the Name list, click your user name, or click Administrator if you are logged in as Administrator, or click the Administrators group.
  • Click on Edit and then put a check mark against "Replace all existing inheritable permissions on all descendants with inheritable permissions from this object".
  • Click OK, and then click Yes when you receive the following message:
  • This will replace explicitly defined permissions on all descendants of this object with inheritable permissions from C-Drive (C:).
  • Do you wish to continue?
  • Once the permissions are replaced, click on OK.
  • Check if you are able to copy, paste or delete any documents now.

OR you can try the steps below

If the above steps fail then you may also want to disable UAC and check if that helps.
  • Click Start, type msconfig in the start search box, and then press Enter.
  • If you are prompted for an administrator password or for a confirmation, type the password, or click Continue.
  • Click the Tools tab.
  • Click Disable UAC and then click Launch.
  • A command window appears, and shortly thereafter, a notification bubble appears informing you that UAC is disabled.
  • Click OK and restart your computer to apply the change.
OR you can try this (it will definitely solve your problem)
  • Reboot into Safe Mode.
  • Log on as Administrator.
  • Click Start
  • Type the three letters cmd
  • Press Ctrl+Shift+Enter
  • Run the process as Administrator.
  • Type the following commands and press Enter after each:

    takeown /f c:\ /a /r /d y
    cacls c:\  /t /c /g administrators:F  System:F  everyone:F
    (Answer "yes" when prompted "Are you sure?")


The commands will make you the owner of drive C: and will give full access to everyone to all of its folders.

Read More

JQuery ColorBox : Do Postback for inline HTML

While using JQuery Color Box with inline content , postback of submit button is not working...



CAUSE:
Color Box script generates an iframe for your target Page/Html.In case of inline content/html ColorBox generates an iframe outside the  <form> tag. As we all know to do postback we need  <form> tag. So in generated iframe HTML there is no  <form> tag available.

SOLUTION:
very simple hack , we have to just append the generated iframe html to <form> tag. checkout the below script.

SCRIPT

<script type="text/javascript">
        function cbox() {
            $.colorbox({ inline: true, width: "50%", href: "#inline_content", onOpen: AllowPostback });
        }
        function AllowPostback() {
            $("div#cboxOverlay").appendTo("form:first");
            $("div#colorbox").appendTo("form:first");
        }
    </script>

HTML

<div id='inline_content' style='padding:10px; background:#fff;'>
      <h2>Inline Content </h2>
      <input type="submit" id="btn" name="btn" />
</div>



Read More

August 25, 2013

GPG Dragon Box v3.27 Ready to download


GPG Dragon software updates to latest version automatically. It also provides detailed news, information and features for latest release if available with if a popup window.

If you face any error you can use the GPG Dragon v3.26 .
  • Add SPD 8825\6825 CPU Support [First in the World]
  • Add SPD 8825\6825 CPU Write Flash Support
  • Just Support Factory Flash PAC Format File
  • Move the MTK 6575 NAND Write Flash Support 0x840 page .
  • Add MTK android IMEI Change with USB Cable Support .
  • <Without Root\more easy do it!!!> 
  • Software Add Set Pinout Windows 
  • in Software Tools Add Dragon V2 software 
  • Add Reset Foramt for SPD android Phone [beta]


Reference:-
http://www.4shared.com/get/ixBiMR_a/Dragon_V327_new.html

Check out OLD Versions..
GPG Dragon Box v3.25
GPG Dragon Box v3.26 
Read More

August 24, 2013

Use More Than One Web.Config File : Asp.Net

If you have planned to have different Web.config files for sub-folders in the application root folder. It helps us to have small and easily maintainable configuration files.

System wide configuration settings are defined in the Machine.config for the .NET Framework. The Machine.config file is located in the  C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG
folder. The settings defined in this file are applicable to all ASP.NET applications in that system.

We can override these default settings by including a Web.config file in the application's root folder.

By including Web.config files in sub-folders, we can override the settings defined in the Web.config file in the application's root folder.

The following are sample section declarations from a Machine.config file:
<section name="processModel" 
  type="System.Web.Configuration.ProcessModelConfigurationHandler, 
        System.Web, Version=1.0.5000.0, Culture=neutral, 
        PublicKeyToken=b03f5f7f11d50a3a" 
  allowDefinition="MachineOnly"/>
 
<section name="sessionState" 
  type="System.Web.SessionState.SessionStateSectionHandler, 
        System.Web, Version=1.0.5000.0, Culture=neutral, 
        PublicKeyToken=b03f5f7f11d50a3a" 
  allowDefinition="MachineToApplication"/>
 
<section name="appSettings" 
  type="System.Configuration.NameValueFileSectionHandler, System,
        Version=1.0.5000.0, Culture=neutral, 
        PublicKeyToken=b77a5c561934e089"/>
There is an attribute allowDefinition specified in the first two section declarations with the values: MachineOnlyand MachineToApplication.

What it does mean?

If allowDefinition="MachineOnly", then we can not override this section either in application level or in folder level. The only section declared in the Machine.config file with this settings is processModel.

If allowDefinition="MachineToApplication", then we can override these sections by the root directoryWeb.config. Sections with this setting 
in Machine.config are authenticationmachineKeysessionStatetrust, and securityPolicy.
If allowDefinition attribute is omitted in a section declaration of the Machine.config file, we can override that section at any level.

We can override the section appSettings at any level and can access it by usingConfigurationSettings.AppSettings easily.


Read More

August 15, 2013

Auto Refresh an Asp.Net Web page


when You want to Refresh a web page automatically..
You can simply add following line of code in the Header section to enable auto refresh in an ASP.NET web page.
<meta http-equiv="refresh" content="15">
Where 15 refers to the number of seconds it will take before refreshing the page.
Also you can redirect to a specific page if you put the URL inside the tag.

<meta http equiv="refreshcontent="15;url=http://www.techimpulsion.in" >
In reality, this is standard HTML functionality and nothing specific to ASP.NET. The same effect of auto-refresh would be seen whether it is an ASP.NET page or just a HTML page, or a page made in Java, PHP, ColdFusion, Perl or the like.
More Preferential for Asp.net Developers

If you want to set the refresh time dynamically then that can be done in ASP.NET by adding server side code in the Page_Load function to set it, as shown below: 
Response.AppendHeader("Refresh", "15")
you can change the refresh time according to your requirement.
Read More

August 13, 2013

WMI failed to connect to local computer : error code 0x8007007e

 WMI failed to connect to local computer or you are unable to get the pahysical information of the system like mac addrss, ip address etc...
it is run by a dll file called -  wbmiscripting.dll
To resolve the problem follow these steps.....
1. Log onto Windows with an administrator account, click Start, type services.msc in the Start Search box
and press Enter.
2. In the right pane of the Service console, locate and right-click Windows Management Instrumentation, and then select Stop to stop the service.
3. Start Windows Explorer, and then locate the %SystemRoot%\System32\Wbem\Repository folder.
4. Backup and delete all the files in the %SystemRoot%\System32\Wbem\Repository folder.
5Restart the computer.
The files that were deleted will be re-created when the computer restarts.
Note: The Windows Management Instrumentation service starts automatically when you restart the computer.
If the issue persists, please re-register WMI DLL files and re-compile WMI mof files to check if the issue can be resolved. Here are the detailed steps:
Start cmd as administrator

Copy and paste
cd %windir%\system32\wbem press enter
after then copy and paste
for /f %s in ('dir /b *.dll') do regsvr32 /s %s press enter
after then copy and paste
for /f %s in ('dir /b *.mof') do mofcomp %s press enter
after then copy and paste
wmiprvse /regserver press enter

ReStart the Windows Management Instrumentation service .
Read More

August 11, 2013

Identify Your Real Zodiac Sign !

The 'real' signs after alteration

Astrological signs represent twelve equal segments or divisions of the zodiac. According to astrology, celestial phenomena reflect or govern human activity on the principle of "as above, so below", so that the twelve signs are held to represent twelve basic personality types or characteristic modes of expression.There are "sun" signs and "moon" signs, which both depend on your date of birth.
Washington, Jan 15 (IANS) Astronomers suggest an overhaul in the process of defining horoscope on the basis of one's birth date as the earth's position vis-a-vis the sun and other stars has changed since the astrological signs were determined over 2,000 years ago.

Apart from the existing 12 astrological signs, the experts include a 13th sign Ophiuchus, a formation which the ancient Babylonians discarded because they wanted 12 star signs.

According to astronomers, the 'real' dates of all the 12 astrological signs will be altered for about a period of 30 days.

Here are the 'real' dates of astrological signs:
  • Capricorn: Jan 20 to Feb 16.
  • Aquarius: Feb 16 to March 11.
  • Pisces: March 11 to April 18.
  • Aries: April 18 to May 13.
  • Taurus: May 13 to June 21.
  • Gemini: June 21 to July 20.
  • Cancer: July 20 to Aug 10.
  • Leo: Aug 10 to Sep 16.
  • Virgo: Sep 16 to Oct 30.
  • Libra: Oct 30 to Nov 23.
  • Scorpio: Nov 23 to 29.
  • Ophiuchus: Nov 29 to Dec 17.
  • Sagittarius: Dec 17 to Jan 20.
In Indian astrology, there are five elements: fire, earth, air, water and space. The master of fire is Mars, while Mercury is of earth, Saturn of air, Venus of water and Jupiter of space.
Jyotish astrology recognises twelve zodiac signs (Rāśi),that correspond to those in Western astrology. The relation of the signs to the elements is the same in the two systems.

N0. Sanskrit International Alphabet of Sanskrit Transliteration Sanskrit gloss Western name

Tattva (Element)
Ruling Planet
1 मेष Meṣa ram Aries

Tejas (Fire)
Mars
2 वृषभ Vṛṣabha bull Taurus

Prithivi (Earth)
Venus
3 मिथुन Mithuna twins Gemini

Vayu (Air)
Mercury
4 कर्कट Karkaṭa crab Cancer

Jala (Water)
Moon
5 सिंह Siṃha lion Leo

Tejas (Fire)
Sun
6 कन्या Kanyā girl Virgo

Prithivi (Earth)
Mercury
7 तुला Tulā balance Libra

Vayu (Air)
Venus
8 वृश्चिक Vṛścika scorpion Scorpio

Jala (Water)
Mars
9 धनुष Dhanus bow Sagittarius

Tejas (Fire)
Jupiter
10 मकर Makara sea-monster Capricorn

Prithivi (Earth)
Saturn
11 कुम्भ Kumbha pitcher Aquarius

Vayu (Air)
Saturn
12 मीन Mīna fish Pisces

Jala (Water)
Jupiter

The dates for these zodiac signs are those in sidereal astrology, different from those in Hellenistic tropical astrology. Aries begins at the date when the sun enters into the constellation Aries, taking into account the precession of the equinoxes, while in tropical astrology Aries begins at the vernal equinox.
Read More

Best Places to visit in India - The Real Heaven

Have you visited the best places in India? Well you might have but the list never ends for places in India. India is known for its numerous cultures and each place you visit gives a different fragrance of our Incredible India. From heaps of sacred places, serene temples to spirited festivals, magnificent beaches, frosty & snow laid mountains, lantern-lit villages to superlative cities India leaves an impression on you and a never ending memory. 

Although this might not be a holiday season for most of you, you can make list of these places and keep it in your planner to plan your trip in India. These are some of the best places that India has got something unique to offer to its travelers.

Kashmir - Heaven on Earth:

Set high in the North of India, also called the 'Peak of India', Kashmir is surrounded by the Great Himalayas and the Pir Panjal mountain range. Kashmir's valley is made of fresh water streams, delicious apple orchards, mighty ice capped mountains and lush meadows. Among the silent valleys of Kashmir, there is much excitement awaiting those who are interested in adventure sports like river rafting, Trekking and Winter Sports. Be it adventure fanatics, spirituality or just holiday revelers, Kashmir is sure to satisfy everyone.


Ladakh- The Moon Land
Ladakh; called the "land of high passes" is a region of Jammu and Kashmir, the northernmost state of India. It lies between the Kunlun mountain range in the north and the 
main Great Himalayas to the south. The largest town in Ladakh is Leh. It is one of the few remaining abodes of Buddhism in South Asia, including the Chittagong Hill Tracts, Bhutan and Sri Lanka. Once in Ladakh, make sure you visit the Leh Palace, Tso Mori Lake, and Nubra Valley as well the number of monasteries dotting Ladakh. The sheer beauty of this place, combined with its amazing culture and the breathtaking journey. To really experience the true essence of Ladakh, we recommend a road trip by car, bike, jeep or bus.

Rajasthan- The land of the Kings


One of the world's oldest mountain ranges, the Aravalli Range, cradles the only hill station of Rajasthan, Mount Abu, famous for Dilwara Temples, a sacred pilgrimage 
for Jains. Eastern Rajasthan has the world famous Keoladeo National Park near Bharatpur, famous for its bird life and is a World Heritage Site and two famous national tiger reserves, Ranthambore and Sariska Tiger Reserve. Rajasthan was formed on 30 March 1949, when all erstwhile princely states ruled by Rajputs, known as Rajputana, merged into the Dominion of India. Music and culture aficionados will love the highly cultivated classical music and dance unique to Rajasthan.

Kerala- Gods own country
Kerala is a popular tourist destination famous for its backwaters, Ayurvedic treatments and tropical greenery. Backwaters which are a chain of lagoons are an integral pa 
rt of Kerala's Tourism Scenario and provide a really relaxing experience. Must visit places along these backwaters include Kumarakom (bird sanctuary), Astamudi Lake (largest fresh water lake) and Kannur-Valiyaparambu (scenic beauty). Kerala is one of the ten 'Paradises found' declared by the National Geographic Traveler, for its varied geography and devastating greenery.

Goa - The Beach City
Goa India's smallest state by area. However that doesn't stop it from being the best places to visit in India attracting more than 2 million visitors annually. With its pretty beaches, awesome seaf 
ood, vivid nightlife, picturesque churches and water sports, it's not hard to figure out why. If you are looking for your dose of adrenaline, you can indulge in water sports like paragliding, windsurfing, jet skiing and lots more. If food and drink makes your day, try out some of the sumptuous seafood (our pick Goan fish curry!) and the famous Fenny (Goan Liquor) at your disposal.

Courtsy: SiliconIndia

Follow on twitter for latest updates....
Read More

© 2011-2016 Techimpulsion All Rights Reserved.


The content is copyrighted to Tech Impulsion and may not be reproduced on other websites.