Refer http://www.pacificwebtechnology.com/blog/magento-rules-to-fix-catalog-price-rule-issue/ 1. Make pricerule.php in root folder <?php require_once 'app/Mage.php'; // if your are not root folder then write the proper path like publichtml/magento/app/Mage.php...
When use input[type=image] for form submission, the image is stretched when use Retina Display mobile. Since you cannot change 'src' attribute using CSS, I had...
.htaccess to force browsers to display a download dialog for non-image files Reference: jQuery File Upload # The following directives force the content-type application/octet-stream #...
Wordpress JSON API (http://wordpress.org/plugins/json-api/) is a powerful plugin that allows RESTful API for Wordpress. However, I needed specific post query such as "Get posts since...
To watch PPS outside of China, add below lines to /private/etc/hosts 127.0.0.1 update.111222.cn 127.0.0.1 msg.ppstream.com Reference: http://www.weste.net/2006/10-24/09394857669.html Alternatively, can use Chrome with extension called...
Mac Application -> Aptana Studio 3 -> Click "AptanaStudio3.app" -> Right Click "Show Package Contents" -> Contents -> MacOS -> Open "AptanaStudio3.ini" with any...
To re-size images with keeping aspect ratio and fitting to certain dimensions function _create_thumbnail($actual_filepath, $folder_path, $target_filename, $width, $height) { // $this->load->library('image_lib'); // $image_lib_config = array(...
In latest XCode (v4.6.2), I couldn't find "UIViewController", which tutorial book wants me to choose. According to this article, choose "Object-C Class" instead of.
During development for SQLite, I have got this error could not prepare statement (1 too many SQL variables) Accroding to this article, this error is...
When I use UILineBreakModeCharacterWrap, I get this message 'UILineBreakModeCharacterWrap' is deprecated use NSLineBreakByCharWrapping instead of it. //[label setLineBreakMode:UILineBreakModeCharacterWrap]; [label setLineBreakMode:NSLineBreakByCharWrapping]; If I use UITextAlignmentCenter, then I...
When I follow the tutorial – App Engine Series #4 - I got this error for Ajax.py: ImportError: No module named django.utils According to this article, Python...
Google App Engine의 Datastore 튜토리얼 소스를 실행시 한글을 방명록 이름(Guestbook name)필드에 입력하면 다음과 같은 에러가 발생한다. Traceback (most recent call last): File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1535,...
한글로 코멘트를 남겼는데 다음과 같은 서버 에러가 발생했다. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to...
In the video, it provides the code as below #!/usr/bin/env python import os import wsgiref.handlers from google.appengine.ext import webapp from google.appengine.ext.webapp import template class MyHandler(webapp.RequestHandler):...