0
Welcome Guest! Login
0 items Join Now

SOLVED RokMiniEvent nonworking side-scroll

    • Matt's Avatar
    • Matt
    • Preeminent Rocketeer
    • Posts: 21564
    • Thanks: 3090
    • messin' with stuff

    Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • are you sure?

      clear your browser cache...

      It's working fine for me now... I tested in Chrome, Mozilla, and IE11... I'm on Windows 7
    • SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT :woohoo:
  • Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • I'm on Windows 8.1. I've cleared my browser cache and tested with Chrome an Firefox. It doesn't work.
    • Matt's Avatar
    • Matt
    • Preeminent Rocketeer
    • Posts: 21564
    • Thanks: 3090
    • messin' with stuff

    Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • Freshly load the page... then in Chrome can you right click on the page, go to Inspect Element, and navigate to the Console tab... note/copy/screen shot any errors you see there.... THEN click the navigation/scroll button/bottom item bullet a couple times and see if that generates any errors...

      post all errors here...
    • SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT :woohoo:
    • Matt's Avatar
    • Matt
    • Preeminent Rocketeer
    • Posts: 21564
    • Thanks: 3090
    • messin' with stuff

    Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • also, I'm out for the Holiday weekend... I won't be checking back until Sunday at the earliest at this point... maybe take a little solace that it appears to be working just fine in non-Windows 8.... test from your phone too maybe...
    • Last Edit: 9 years 4 months ago by Matt.
    • SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT :woohoo:
  • Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • I've investigated the problem and it's a problem in mootools-core.js.
      My Mootools-Version is 1.4.5.
      The code "xhr.send(data);" in line 5862 makes the problem (here line 68).
      	send: function(options){
      		if (!this.check(options)) return this;
      
      		this.options.isSuccess = this.options.isSuccess || this.isSuccess;
      		this.running = true;
      
      		var type = typeOf(options);
      		if (type == 'string' || type == 'element') options = {data: options};
      
      		var old = this.options;
      		options = Object.append({data: old.data, url: old.url, method: old.method}, options);
      		var data = options.data, url = String(options.url), method = options.method.toLowerCase();
      
      		switch (typeOf(data)){
      			case 'element': data = document.id(data).toQueryString(); break;
      			case 'object': case 'hash': data = Object.toQueryString(data);
      		}
      
      		if (this.options.format){
      			var format = 'format=' + this.options.format;
      			data = (data) ? format + '&' + data : format;
      		}
      
      		if (this.options.emulation && !['get', 'post'].contains(method)){
      			var _method = '_method=' + method;
      			data = (data) ? _method + '&' + data : _method;
      			method = 'post';
      		}
      
      		if (this.options.urlEncoded && ['post', 'put'].contains(method)){
      			var encoding = (this.options.encoding) ? '; charset=' + this.options.encoding : '';
      			this.headers['Content-type'] = 'application/x-www-form-urlencoded' + encoding;
      		}
      
      		if (!url) url = document.location.pathname;
      
      		var trimPosition = url.lastIndexOf('/');
      		if (trimPosition > -1 && (trimPosition = url.indexOf('#')) > -1) url = url.substr(0, trimPosition);
      
      		if (this.options.noCache)
      			url += (url.contains('?') ? '&' : '?') + String.uniqueID();
      
      		if (data && method == 'get'){
      			url += (url.contains('?') ? '&' : '?') + data;
      			data = null;
      		}
      
      		var xhr = this.xhr;
      		if (progressSupport){
      			xhr.onloadstart = this.loadstart.bind(this);
      			xhr.onprogress = this.progress.bind(this);
      		}
      
      		xhr.open(method.toUpperCase(), url, this.options.async, this.options.user, this.options.password);
      		if (this.options.user && 'withCredentials' in xhr) xhr.withCredentials = true;
      
      		xhr.onreadystatechange = this.onStateChange.bind(this);
      
      		Object.each(this.headers, function(value, key){
      			try {
      				xhr.setRequestHeader(key, value);
      			} catch (e){
      				this.fireEvent('exception', [key, value]);
      			}
      		}, this);
      
      		this.fireEvent('request');
      		xhr.send(data);
      		if (!this.options.async) this.onStateChange();
      		else if (this.options.timeout) this.timer = this.timeout.delay(this.options.timeout, this);
      		return this;
      	}
    • Matt's Avatar
    • Matt
    • Preeminent Rocketeer
    • Posts: 21564
    • Thanks: 3090
    • messin' with stuff

    Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • 500 error is a server error, not a software error...

      A "500 internal server error" is a very generic error that means a URL you've requested couldn't be accessed. The error is actually on the server side and NOT in the Joomla/Theme code. One of the more common occurrences that can raise this error are if you've updated your Joomla/Theme installation and are using a newer PHP version but some code references an older version of PHP. Also installing a new plugin, if not well written, could corrupt the .htaccess file. And there are MANY more than can cause this error.

      The best way to get a handle is too work with your hosting provider. Start by reviewing your Apache error logs. You could also do some basic debugging by backing up your current .htaccess file to your HDD. Then on the server copy delete all the code and save. See if this resolves the issue. If so then it's one of the lines of .htaccess code that is causing the issue.
    • SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT :woohoo:
  • Re: SOLVED RokMiniEvent nonworking side-scroll

    Posted 9 years 4 months ago
    • It is solved! My hoster updated PHP version. That's all.

Time to create page: 0.048 seconds