Advertisement:

Author Topic: Admin Panel Does Not Work  (Read 1105 times)

nomad695

  • Newbie
  • *
  • Posts: 15
Admin Panel Does Not Work
« on: June 28, 2012, 04:30:00 pm »
This is the contents of my "jquery_cookie.js"  file. Does anybody see anything that is incorrect in it. Or anything that needs to be added to it? The links just do not work in the Dashboard.

jQuery.cookie = {
   
      set : function(name,value,options){
         
         options = $.extend({}, options);
         
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString();
        }
       
        value = options.json ? encodeURIComponent($.JSON.encode(value)):encodeURIComponent(value);
 
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
       
        document.cookie = [name, '=', value, expires, path, domain, secure].join('');
   },
   get : function(name,json){
      
      var cookieValue = null;
      
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = $.trim(cookies);
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = json ? $.JSON.decode(decodeURIComponent(cookie.substring(name.length + 1))):decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
       
        return cookieValue;
       
   },
   unset: function(name){
      this.set(name,'',-1);
   }
};

_CONEJO

  • Administrator
  • Hero Member
  • *****
  • Posts: 4689
Re: Admin Panel Does Not Work
« Reply #1 on: July 01, 2012, 08:04:43 pm »
Hi nomad695

Rename jquery_cookie.js to anything else "galletas.js" for example. Find and replace any line that contains a link to it.

If you're unable to find every place where that file is called, tell me. I can't tell you right now, since the development version (next 3.0) don't have that file, so I will need to download a previous version to tell you.