Zen Cart Logo
Forums / General Questions / ajax question

ajax question

Views: 1,654

Results 1 to 7 of 7
13 Jul 2012, 12:23 AM
#1
jamchg avatar

jamchg

New Zenner

Join Date:
Jul 2012
Posts:
5
Plugin Contributions:
0

ajax question

I'm using AJAX for infinite scrolling with zen cart.

Here is a code snippet:

<script type="text/javascript">
		$(window).scroll(function(){
		    if($(window).scrollTop() == $(document).height() - $(window).height()){
		    	$('div#loadmoreajaxloader').show();
		    	
				$.ajax({
					cache: false,
					url: 'loadmore.php',
					success: function(html){

etc.

I was wondering where I should store the file 'loadmore.php' that basically echo's out my additional pages of data.

thanks!

13 Jul 2012, 2:59 AM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: ajax question

You'll need to store it in your store's root folder. ie: where your main index.php file is located.

13 Jul 2012, 3:56 PM
#3
jamchg avatar

jamchg

New Zenner

Join Date:
Jul 2012
Posts:
5
Plugin Contributions:
0

Re: ajax question

Hi, Thank you for the response.

Is it possible to store the file in the includes folder? When I reference this file in the includes folder, the ajax call doesn't seem to work.

Thanks,

James

16 Jul 2012, 1:33 AM
#4
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: ajax question

Simple answer: no. External calls are prohibited to PHP files in the /includes/ folder, for security reasons.

20 Jul 2012, 8:27 AM
#5
sephiroth avatar

sephiroth

New Zenner

Join Date:
Nov 2008
Posts:
24
Plugin Contributions:
0

Re: ajax question

I'm very interested in implementing this as well :) Have you had any luck?

27 Aug 2012, 7:16 AM
#6
alexjoverton avatar

alexjoverton

New Zenner

Join Date:
Aug 2009
Location:
Bellac, France
Posts:
7
Plugin Contributions:
0

Re: ajax question

sephiroth:

I'm very interested in implementing this as well :) Have you had any luck?

Hi did you manage to get this working?

cheers

Alex

27 Nov 2012, 2:29 PM
#7
swamyg1 avatar

swamyg1

Zen Follower

Join Date:
Dec 2008
Location:
San Fran
Posts:
382
Plugin Contributions:
0

Re: ajax question

Could you please share more information about this? I'm very interested too!