Thursday, August 22, 2013

500 – Internal server error from IIS 7.5 on Windows 2008 R2

You are running an ASP or ASP.NET web application on IIS on Windows 2008 R2 from a remote web browser and you constantly see following error message.
SNAGHTML839201
While this is the proper results for a production server (you never want to show remote users the details of an error), it is not helpful while testing a new installation…as a developer you need to see the error messages on the remote browser. There is an obscure setting that controls this for both ASP and ASP.NET. I hope the following will help anyone needing to see error details on a remote connected browser.

For Classic ASP Errors

In IIS Manager, select your ASP site, the double-click the ASP icon in the IIS section. The configuration settings for this ASP applications will appear. Open the section for Debugging and make sure the option Send Errors to Browser is set to True. Review other settings while you are here to ensure they match want you want.
SNAGHTML8bec9e

For Classic ASP and ASP.NET Errors

Just making the change above seems to work find under IIS on Windows 7 but not Windows 2008 R2. You may need to change one other setting. In IIS Manager, select the ASP or ASP.NET site, the double-click the Error Pages icon in the IIS section (do not confuse with the .NET Error Pages in the ASP.NET section) . The list of error codes and related IIS Error Pages will appear. Select the one for 500 errors and right-mouse, then choose Edit Feature Settings from the popup menu.
SNAGHTML94342f
The default settings is the third option which only allows detailed errors to be sent to a browser on the same server. Change this setting to the second option labeled Detail errors and then details of your code or script errors will be sent to the browser even if it is a remote quest. If you are using Internet Explorer, also make sure that Show Friendly Errors is not enabled. This is not a problem for Firefox users.
SNAGHTML962958
Be sure and change this setting back to the default if and when the server is used in a production environment. When that is the case, use the NT Event log for ASP errors (also set in the ASP settings section) and .NET Error Tracing as better ways to view the details of production errors. Hope this helps! Now you can view ASP and ASP.NET errors in the browser remotely. Here is an example of a Classic ASP error.
SNAGHTML9ccb57

Friday, August 9, 2013

PHP: give alert popup then redirect the page

Do something like
header("Location: index.php?Message=" . urlencode($Message));
Then on index.php...
if (isset($_GET['Message'])) {
    print $_GET['Message'];
}
Reference: http://stackoverflow.com/questions/11703854/php-give-alert-popup-then-redirect-the-page

Friday, July 26, 2013

Importance of Election Vote

Since the communism collapsed; the democracy has been brought to Cambodia instead of the communism. Becoming a democratic country, people have to vote to take several advantages of it.

The first thing, people have rights to choose a good leader who they trust and believe in leading our country to be a developed country. Choosing a good leader, the people get advantages to develop their communities, according to the needs of daily lives. The good leader will take responsibilities for the people who are voters. One more thing is that people have rights in their hands to decide on the destiny of our country related to our lives. Moreover, the people will live comfortably in a country with a good leader that helps people when they have problems. The most important thing, our country will have a strong structure to lead and prevent our country.

As we know the important of votes, so people who are over eighteen years old have to go to vote to choose our representative.

Apple Signing Bug Resulted In Downgrades From 6.1.3 To Jailbreak 6.0.X

Today, in a rather peculiar turn of events, Apple began re-signing iOS 6.0, 6.0.1 and 6.0.2 for supported iOS devices, including the iPhone 5iPhone 4SiPhone 4,iPhone 3GS, iPod touch 5, iPad 4, iPad 3, iPad 2, iPad mini and the iPod touch 4thgeneration. This came as incredible news, especially for iDevice owners who mistakenly upgraded to either iOS 6.1.3 or 6.1.4 (in the case of the iPhone 5). Users who were stuck on 6.1.3 without a jailbreak were glad to know that they could downgrade for a brief period of time to a firmware that’s fully supported by the evasi0n Untethered jailbreak.

Through somewhat of a fluke miracle, Apple was signing 6.0, 6.0.1 and 6.0.2 earlier this afternoon for devices that attempted to restore to any of the threefirmwares – for those of you who missed your opportunity though, you’reregrettably stuck on iOS 6.1.3 or 6.1.4 until a new jailbreak utility is created, unless this signing error occurs again.
When attempting to downgrade from 6.1.3 to a lower firmware that can be jailbroken evasi0n users simply had to download the corresponding 6.0, 6.0.1 or 6.0.2 IPSW, enter DFU mode, hold down either shift on Windows or option on OS X and left click the restore button inside iTunes. Once the firmware selection window popped up, it was as easy as selecting the firmware that was previouslysaved.
Unfortunately, while it’s not possible to take advantage of this error any longer, and although something like this has never happened before in Apple history, there’s always the chance that history will repeat itself.
Thank you for reading and don’t forget to subscribe to our Jailbreak UnTethered Evasi0n  news feed, like us on Facebook, follow us on Twitter and add us on Google+ to be promptly notified when we publish new articles regarding iOS 7 and future jailbreak solutions.

Wednesday, June 26, 2013

People do many different things to stay healthy. What do you do for good health? Use specific reasons and examples to support your answer.

As the popular adage says, "Health is wealth". Health is important than money and reputation. A healthy person can think and act better. Other things in life can go and come any time. But health is one thing that can not be gained back once lost. Eating right, exercising, sleeping, keeping healthy relationships are the methods I follow to keep myself healthy. I discuss these methods further.

First of all, Nutritious diet plays vital role to maintain good health. I eat right food in right quantity at right time to keep myself healthy. My food always include fat free and oil free items. I depend a lot on fruits which improve digestion system. In addition to it, I drink lots of water and fruit juices. Furthermore eating food at correct time keeps you far from obeysity and controls piling of fat at unwanted places.

Second, exercises like swimming, skipping, walking help a lot in keep one healthy. I walk for half an hour a day. Right exercises keep anybody active the whole day. In addition to it, exercises give lots of energy and keep stress away. Furthormore outdoor activities like playing games with friends or family would give much more energy and refreshes ones mind and body. Apart from this, as the famous maxim says, "early to bed, early to rise, keeps you healthy", is so much true that waking up early gives you fresh feeling and keeps you relaxed for the rest of the day.

Finally, maintaining good relationships with friends and family is one important thing which provides inner happiness. Playing and laughing with the people who are close to the heart are the priceless moments in anybody's life. For example, when you come back home after a stressful day at work, if your family welcomes with pleasent smiles you keep all you stress away and enjoy with family. It is important to have a happy family and friends which adds more health. 

To sum up, not just one but many factors play vital role in maintaining good health. Avoing any of the methods I mentioned might keep one in health hazards.

Wednesday, June 19, 2013

How can I change the language of Google Maps on the run?

A language can be selected when you load the API by appending language=XX to the API URL whereXX is the two-character language code (en for English, ar for Arabic, etc.) to the URL in the API call. See http://code.google.com/apis/maps/documentation/javascript/basics.html#Localization for documentation.
This won't let you change it on the fly, and I don't think you can do that. You can try loading the API a second time after getting the initial info you need in one language. But that seems likely to cause problems.
A cleaner way to do it might be to create a separate page that acts as a sort of web service for you. It accepts two parameters: A language code and an address. It loads the API using the language code requested, and reverse geocodes the address, providing the result. Your page would call this web service-like thing twice, once for each language, and then use the results as desired.

Tuesday, June 18, 2013

Mac OS X – Show / Hide Hidden Files in Finder

As noted in the comments its nice to have the text available for easy copy and paste into your terminal.

Show:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

Hide:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder

Friday, May 3, 2013

MySQL Server Won’t Start on MAMP (RED LIGHT!) Mac OSX


MySQL Server Won’t Start on MAMP (RED LIGHT!) Mac OSX

If you can’t figure out why the MySQL Server won’t turn on if you’re using MAMP to do local development work, it could be because there are conflicting instances of a process called “mysqld” running on your system.

HERE IS THE SOLUTION

  1. Open up the program called Activity Monitor on your Mac. Just search for it, or it’s under Utilities I think.
  2. Search for a process called “mysqld“.
  3. Click on that process and “Quit Process” that bastard.
Now open MAMP back up and start the MySQL Server. Should turn green. Hopefully that helped.


Saturday, April 20, 2013

Folders Becoming Shortcut Ink Virus

But then if you encounter this situation, do not panic! Your files are still there, not deleted. You can just use a simple way to get all your files back:

1. Click start > Run
2. Type: attrib -h -r -s /s /d g:\*.*
(But change g: to the drive letter of your device)
3. press enter
4. Wait for a while, around 2 minutes... and open the drive.
Bingo!

Monday, April 1, 2013

ASP + Ms Access: Add Now() to datetime data type

sql = sql & "values('" & username & "','" & pwd & "','" & firstname & "','" & lastname & "','" & email & "', " & role & ",'" & status_ & "',Now())"

ASP + Ms Access: Adding data into Ms Access, data type: number

sql = sql & "values('" & username & "','" & pwd & "','" & firstname & "','" & lastname & "','" & email & "', " & role & ")"

ASP + Ms Access: Permissions on Content Folders

Problem
When you are deploying a classic ASP application that uses an Access database you may see this error because the lock file for the Access database cannot be created. To further explain this scenario: Access databases are kept in files that use an .MDB file name extension. When you try to add to the database or update the data, the Microsoft JET database engine attempts to create a lock file with that uses an .LDB file name extension. If the Access database is stored within the content area of your Web site, by default the JET database engine will not have sufficient access permissions to update the database and you will see the following error message displayed in a Web browser:

Microsoft JET Database Engine error '80004005'

Operation must use an updateable query.

/example.asp, line 100


Solution
This error clearly lists the lock file as the cause of the failure. To resolve the issue, you can grant the application pool's impersonated identity read/write permission to the folder where the Access database is located, but that poses a security risk for your Web site. A better solution would be to move the Access database out of your Web site's content area to a folder where the application pool's impersonated identity has read/write permission, then create a System Data Source Name (DSN) that points to the database location. Your ASP code would then reference the System DSN in the connection string instead of the physical path of the database, which is also better for security. If you must store the database in the content area, you should always store the database in a folder that is blocked by default by the IIS request-filtering features, such as the App_Data folder.

Right-click on Ms Access > Properties > Security > IIS_IUSRS (Full Control) and Users (Full Control)



ASP + Ms Access: An error occurred on the server when processing the URL. Please contact the system administrator. If you are the system administrator please click here to find out more about this error.

Problem
An error occurred on the server when processing the URL. Please contact the system administrator.  If you are the system administrator please click here to find out more about this error.

Solution:
Classic ASP: Security is Painful

I had to write some good old classic ASP code today and my classic ASP coding skills are so rusty that I put tons of errors in the code. I'm used to having basic ASP error messages on IIS5 and 6 which usually help me to track down problems. On IIS7 I only got the following though:
An error occurred on the server when processing the URL. Please contact the system administrator
After investigating a bit I figured out that we changed the default for the "scriptErrorSentToBrowser" flag in IIS7. It's now false and you always get the error above. Here is how to change it:
1) Start an elevated command prompt. Right-click the command shell item in the Start-Accessories menu and select "Run as Administrator".
2) Run the following command: %windir%\system32\inetsrv\appcmd set config -section:asp -scriptErrorSentToBrowser:true
Once you are done with debugging your ASP app please set it back to false. There are lots of 'evildoers' out there! :)



Thursday, March 7, 2013

ASP + Ms Access: Using Classic ASP with Microsoft Access Databases on IIS


Note: Microsoft Access databases have been popular for many years with developers who use Active Server Pages (ASP) for small-scale applications, but Microsoft Access databases are not designed for scalability, therefore Access databases should only be used where performance is not a factor, and it is best not to host large-scale data-driven applications with Microsoft Access databases.
In IIS 7.0, IIS 7.5, and above, several security changes were made that may affect how classic ASP applications will function. For example, if you were to copy a classic ASP application that uses an Access database that is within the Web site's content area to a server that uses IIS 7.0 or above, you may receive the following error message:
Microsoft JET Database Engine error '80004005'

Unspecified error.

/example.asp, line 100

This is a generic error triggered by the Access driver that may occur for a variety of reasons, but incorrect permissions is a common cause. More specifically, the ability to work with Microsoft Access databases is implemented through the Microsoft JET Database Engine, which creates various temporary and lock files when it connects to an Access database. The following sections will discuss some of the reasons why this may occur and how to resolve those situations.

Working with 64-bit Systems

Unfortunately there are no 64-bit ODBC drivers, so on 64-bit systems you will have to run your applications in 32-bit mode. To do so, use the following steps:
  1. On the taskbar, click Start, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
  2. In the Connections pane, click Application Pools.
  3. Highlight the application pool for your application, then click Advanced Settings... in the Actions pane.
  4. In the Advanced Settings dialog, specify True for Enable 32-Bit Applications.
  5. Click OK to close the Advanced Settings dialog.

Friday, January 4, 2013

Technical iPhone Repair Training

Diagnosing
Identifying What Kind of Phone It Is
Top 5 things to identify on customer calls
Diagnosing Thought Process
Phone Won't Turn On
Broken Screen or LCD?

Hardware
iPhone 3G/3GS
Opening the iPhone
Removing & Replacing LCD
Replacing Cracked Glass
Repairing Home Button
Proximity Sensor and Ear Speaker
Reinserting the Screen Assembly
Removing the Logic Board
Battery
Charging Port - Mic - Loud Speaker - Antenna
Headphone Jack & Power - Volume - Vibrate Buttons
Housing Replacement
Water Damage

Advanced Repairs
Overview of Logic board Components
Introduction to PCB Soldering
Replacing Sim Reader
Greyed Out or No Wi-Fi
Fixing #6 WiFi Connector
No Service on 3G
Fixing Dim LCD Backlight 3GS
3G Backlight Circuit
Advanced Water Damage Repairs
Crazy Repairs
Full iPhone Schematics

iPhone 4
Replacing the Back Panel
Replace Glass Only on Back Panel
Replacing the Front Screen Assembly
iPhone 4 Screw Chart


Software 
Introduction to iOS
Activation and iTunes Screen
Hard Reset
How to Jailbreak
Beginners Guide To Using Cydia
Installing Themes and Customization
Top Cydia Hacks Apps and Tweaks
Unlocking
Restoring
Downgrading
Stuck in a Bootloop
How to Enable & Use SSH
Erasing an iPhone
iPhone Error Codes
Importing SIM Contacts
Overclocking

Tips & Tricks
Multiple Midframes
Sim Cutting
Common Mistakes
Quick Tips
What Parts Are Cross Compatible
Information About Water Sensors
Decoding iPhone Serial Number
Assembling Replica Otterboxes

iPhone Business School


Marketing
Marketing Plan - Setting Yourself Apart
Business Cards
AT&T
Word of Mouth
20 FREE Online Business Listings
Google Places
Craigslist
Combating Craigslist Flaggers
Facebook
Car Decals
Flagging Cars/Apartments
Flyers
Coupons
Mail in Repairs

Business Duties
Customer Service
Taking Payment
Taxes
Liability & Waivers
Incorporating
Managing Inventory
Should You Offer a Guarantee
Receipts
Google Voice

Increasing Revenue
Buying Broken Phones
Apple's Warranty
Selling Accessories
Offering Insurance
Making The Sale
Replacement Parts

Support
Tech Support
Form Database
Knowledge Base