You might have the “Windows Search” Turned off.
Click on Control Panel and locate
Turn windows Features on and off
and check off Windows Search
then
"RESTART YOUR PC"
I have been asked several times to identify the technologies that a particular web site is using (from Operating System , Webserver , Javascript Framework and so on… Sometime it it very straighforward other times it is just like searching a needle in a haystack. Note that you cannot just look at the file extension to say that a website is using asp or php, you will need to dig deeper.
Here are the trick that I usually use (from the most intuitive to the least intuitive):
General Info, Web server, CMS, OS…
http://builtwith.com/ http://news.netcraft.com/ http://www.quarkbase.com/ http://w3techs.com/sites
Domain Details
http://dndetails.com/ http://whois.domaintools.com/
Javascript Framework
http://nouincolor.com/wtframework/2.0/
SEO Info
http://www.alexa.com/
1. If you look at the source code , if you are familiar with WordPress, Drupal and other CMS you can easily find them by looking at the source code.
2. The CSS files can reveal a lot of information about the framework being used.
I was always under the impression that varchar maximun length was 255.
Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in 5.0.3 and later versions. The effective maximum length of a VARCHAR in MySQL 5.0.3 and later is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.
As soon as your content exceeds the screen viewing area, a browser will automatically insert scrollbars to allow you to navigate up and down.
However when that happens, the content is shifted to the left, to circumvent this issue make sure that you use the css below.
(the css below will reserve a scrollbar space whether your content exceeds the viewing are or not so no more shitfing of content)
overflow-y: scroll; overflow-x: scroll; overflow: -moz-scrollbars-vertical;
or
body {height:101%}
Here are your options:
1. Check the my.ini file
2. Check you GUI Configuration or preferences
3. Run the following query:
SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = 'ycsoftware'