Jquery UI Date picker – syntax error dateFormat: ‘dd-mm-yy’

Recently we have used Jquery UI Date picker for a car booking site. but it was showing error in internet explorer in Win XP, it was working perfectly in all other browser.

Code we used:

<script type=”text/javascript”>
$(function() {
$(“#datepicker1″).datepicker({
showOn: ‘both’,
buttonImage: ‘<?php bloginfo(‘template_directory’); ?>/datepicker/css/images/cal.jpg’,
buttonImageOnly: true,
dateFormat: ‘dd-mm-yy’,
});
});

$(function() {
$(“#datepicker2″).datepicker({
showOn: ‘both’,
buttonImage: ‘<?php bloginfo(‘template_directory’); ?>/datepicker/css/images/cal.jpg’,
buttonImageOnly: true,
dateFormat: ‘dd-mm-yy’,
});
});
</script>

 

and after searching and budding we have found that we have used comma(,) in last config line. which was dateFormat: ‘dd-mm-yy’,

and removing comma(,) solved the problem.. and it works greatly in all versions of IE.

the final code was:

<script type=”text/javascript”>
$(function() {
$(“#datepicker1″).datepicker({
showOn: ‘both’,
buttonImage: ‘<?php bloginfo(‘template_directory’); ?>/datepicker/css/images/cal.jpg’,
buttonImageOnly: true,
dateFormat: ‘dd-mm-yy’
});
});

$(function() {
$(“#datepicker2″).datepicker({
showOn: ‘both’,
buttonImage: ‘<?php bloginfo(‘template_directory’); ?>/datepicker/css/images/cal.jpg’,
buttonImageOnly: true,
dateFormat: ‘dd-mm-yy’
});
});
</script>

 

Posted in Jquery | Leave a comment

Proceed to checkout button goes back to home page, empty cart – magento cart issue

when you click Proceed to checkout button in magento , it takes you to home page? or empty cart items?

did you ever face this problem? yes..

here is the solution.. follow these steps and i believe it will solve the issue.

step1#. go to magento admin->system->configuration

in left side – select web. there you will look at secure and unsecure section..make sure bot base url same.. look at the image bellow.

step2#. make sure to make no to everything except validate http user agent . look at the image bellow.

Finally step3.  refresh cache – from system->cache management.

select all and from action -click to refresh

 

these steps should resolve the issue. if you still face the problem..why not contact us. Magento expert Bangladesh

Posted in Magento | Tagged , , , | Leave a comment

WordPress – Godaddy server – Warning: session_start()… failed: No such file or directory

in Godaddy hosting if you use session in wordpress  you may see .. the warning message..

Warning: session_start()… failed: No such file or directory.

in that case.. all you need to do is declare session path and show a folder name where session will be saved before start session .

ie.

session_save_path(‘document root path /html/tmp’);

- in this case.. tmp is the folder where session will be saved.
session_start();

Posted in wordpress | Tagged , , , | Leave a comment

0 picture(s) successfully added – wordpress – http 500 error with nextgen gallery

are you facing problem with uploaidng images in nextgen gallery in your wordpress site?

this problem is not common. but sometimes you may get it.

 

solutions.

 

 

On my website I had to add the following to .htaccess

#BEGIN NextGen Gallery Image Upload HTTP Error Fix
<IfModule mod_security.c>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security_module>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security2_module>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
#END NextGen Gallery Image Upload HTTP Error Fix

 

 

Posted in Uncategorized | Leave a comment

opencart admin problem – netfirms hosting

opencart admin problem – netfirms hosting -  this is common problem in netfirms hosting — when you login opencart admin with correct user name and password. but you cant see the admin panel dashboard – its bcoz of the session problem.

Try changing the session path to a folder on your server instead using a php.ini file.

 

go to system – library – session.php

 

and use this code

 

$garbage_timeout = 3600;
ini_set(‘session.gc_maxlifetime’, $garbage_timeout);
ini_set(‘session.save_path’,'ur server path/sessions’);
session_set_cookie_params(0, ‘/’);
session_start();

use your server path

need more help?

 

contact us :

 

 

 

 

Posted in Uncategorized | Leave a comment

bundle products opencart

we can build your ecommerce webshop in opecart with bundle products features, bundle products discounts.

 

Contact us for this service

 

Posted in Uncategorized | Leave a comment

firstdata api opencart

if you face problem integrating firstdata api in opencart.. contact LoooGo , we can help you on this.

Posted in Uncategorized | Leave a comment

wordpress error – 406 Not Acceptable This request is not acceptable Powered By LiteSpeed Web Server LiteSpeed Technologies

if your server run on LiteSpeed Web Server . and if you running wordpress .. you may see this error message while inserting images into port/pages. and in that case

If you have ftp access, edit your .htaccess file to turn Mod Sec off:

<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

If you don’t, contact your webhost and ask them to do it for the folder containing your blog.

 

Posted in Uncategorized | Leave a comment

NUB website redesign

Northern University Bangladesh (NUB) has contacted LoooGo to redesign their university website, and Looogo team has designed as their new look and feel.

NUB New look and feel

NUB - Before

Posted in New project launch | Tagged , , | Leave a comment

New website – E-commerce webshop for Diamond Jewelry

New website – E-commerce webshop for Diamond Jewelry called Daras Diaamond has been uploaded.

there is a special funtionality  of this is dynamic ajax based filtering. have a look at http://www.darasdiamonds.com/rings/soiltaire-rings

Posted in New project launch | Tagged , , | Leave a comment