Skip to main content

Posts

Showing posts with the label Web Programming

Simple Solution for Facebook APP Error - Given URL is not Allowed.

Facebook documentation and user notes are very useful when you develop a Facebook application. You can simple start here, https://developers.facebook.com/. Of course, you need your domain and/or web server. Many says 'localhost' is fine to test Facebook application, but I met lots of problems with localhost. I think, the first error after launching your app might be Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains. Just confirm that BOTH APP domains AND site url fields are filled and one of your domains should be match with site url. urls such as redirect_url in your codes (php, java, whatever) must be matched to the domain(s) or site url.  That's it.

How To Insert Multiple Rows In A Single Query in MySql

Sometimes, it is needed to insert multiple columns at a time. Next MySQL multiple insert queries performs perfect, of course INSERT INTO   table_name (column-1, column-2, ... , column-n)   VALUES (value-1-1, value-1-2, ... , value-1-n); INSERT INTO   table_name (column-1, column-2, ... , column-n)   VALUES (value-2-1, value-2-2, ... , value-2-n);   ... INSERT INTO   table_name (column-1, column-2, ... , column-n)   VALUES (value-m-1, value-m-2, ... , value-m-n); But next single query is easy to use and save memory ant time INSERT INTO   table_name (column-1, column-2, ... , column-n)   VALUES     (value-1-1, value-1-2, ... , value-1-n),     (value-2-1, value-2-2, ... , value-2-n),     ... ,    (value-m-1, value-m-2, ... , value-m-n); But be careful with large data (value). Your server or machine might be stop the execution due to the security or resource issues such as execu...

How To Make Ordered Sub-list in CSS/HTML

Combination <ol> and <li> tags generate numbered list in HTML document, but it does not support numbered sub-list default. By adding 3 lines of CSS scripts, we can generate the numbered and ordered sub-list. The idea is from li:bofore style. ol { counter-reset: item } li { display: block ;font-weight:bold} li:before { content: counters(item, ".") " "; counter-increment: item } And Nested <ol><li> HTML tags generate the list. <ol>   <li>Item 1</li>   <li>Item 2     <ol><li>Item 2.1</li>            <li>Item 2.2</li>            <li>Item 2.3               <ol><li>Item 2.3.1</li>               </ol>            </li>     </ol>   </li>   <li>Item...

Color Conversion: RGB to HEX , HEX to RGB

Color conversion between RGB and Hex is needed sometimes even though HTML and CSS accepts both RGB and HEX codes for set color scheme of HTML elements. The conversion algorithm is simple. Then numbers in RGB format is decimal number and one in HEX code is hexadecimal number. For example, rgb(50, 100, 250) is same in HEX #3264FA: 50-32 | 100-64 | 250-FA.

Google's Favorite Colors By Hex Codes (With New Google Logo)

Google keeps its color scheme cross their products. Of course, each uses different colors but it keeps the main philosophy. I heard that the test period for new Google logo was more than one year. It may the reason that the colors are comfortable to look. Sometimes, I copy the colors for designing my blogs and web sites. Copyright? oh..

Why Blogger Mobile Template Not Work?

Google Blogger shows blog pages with mobile CSS on mobile devices unless you change it disabled. You can see next figure by clicking mobile setting button on Template page. Since I want to change CSS and I remember there are some CSS elements starting with '.mobile', I open the template editor and edit as I want. And open my blog in my smart phone. Nothing changed.

What's In and What's Out for Google Spell Checker

There is no product named 'Google Spell Checker', but the Google products such as Chrome, Blogger, and Gmail support the spell checking. Yesterday, I got the red underlined 'bing' when writing a post. bing? Bing? BING? Both are red decorated. How about Google? Google is OK. Yahoo is OK too. They exclude bing? They include Company names, but exclude Product Name? No, iPhone is OK. I don't know it's policy.

3 Free Redirect Checker for 3xx HTTP Redirect Status

There are lots of redirect checking tools to know what type of redirection used in a page. They are all SEO companies or websites and some of them requires additional information and show results with many advertisements. Here are some tools we can use free online and less ads relatively.