DMXzone Paginator PHP Support Product Page

Problem with redirect page

15 years ago Marzio Gialinà posted:
I have a Paginator in my page (../ita/index.php?mod=news)
where with mod include is opened the page news (../ita/pages/news.php)

When i click on the paginator button the redirect is:
../ita/pages/index.php?pageNum_RsData=1&mod=news

But is incorrect, because the correct is:
../ita/index.php?pageNum_RsData=1&mod=news

Where I can to correct the problem?

Replies

Replied 15 years ago
15 years ago Miroslav Zografski replied:
Hello Marzio,

Can you provide a link to a test page to demonstrate the issue?
Specify on which page your Paginator is placed - on included one or on main one.

Regards,
Replied 15 years ago
15 years ago Marzio Gialinà replied:
The problem is this:

I have the page in directory ../ita/index.php
but inside with include there is another page from directory ../ita/pages/news.php

When open the page -> ../ita/index.php?mod=news
we have inside the page ../ita/pages/news.php

The paginator is in this second page - when click another page of paginator the function go to ../ita/pages/index.php?mod=news&.......
But is not correct, because the correct is -> ..ita/index.php?mod=news&.....

the correct path is the path of principal page and not the path of secondary page.

--------------------------
<?php
// DMXzone Paginator PHP 1.0.0
$pag1 = new dmxPaginator();
$pag1->recordsetName = "RsData";
$pag1->rowsTotal = $totalRows_RsData;
$pag1->showNextPrev = true;
$pag1->showFirstLast = true;
$pag1->outerLinks = 1;
$pag1->adjacentLinks = 2;
$pag1->rowsPerPage = $maxRows_RsData;
$pag1->prevLabel = "‹";
$pag1->nextLabel = "›";
$pag1->firstLabel = "‹‹";
$pag1->lastLabel = "››";
$pag1->addPagination();
?>
Replied 15 years ago
15 years ago Miroslav Zografski replied:
Hello Marzio,

I've tested something simmilar to your case here is the include code for my news page:


<?php
if isset($_GET["news"] == 1){
	include("untitled/index.php");
} else {
	echo "no news";
}
	?>


so to have the include I got :

localhost/paginatorPHP/untitled.php?news=1

and when i use paginator the url is changing as well :

localhost/paginatorPHP/untitled.php?pageNum_Recordset1=13&news=1

So for me it works.
Please, provide your include so i can test it.

Regards,
Replied 15 years ago
15 years ago Marzio Gialinà replied:
Hello

I have not understood where I must insert the code.

when the page is opened (path ../ita)
in this page is included another page (path ../ita/pages)

The include code is made with DW Extension Adobe Developer Toolbox - Include from list.

The problem is that the paginator is inserted in 2° page (with path ../ita/pages), but in order to change the page it is necessary redirect to 1° page (with path ../ita)

The Paginator is in 2° page and the code use the path from this page.
I would want to be able to change the redirect.
Replied 15 years ago
15 years ago Miroslav Zografski replied:
Hello Marzio,

Well, referring to your first post you have placed the Paginator in the included file with path ../ita/pages/ and preview that file in ../ita/index.php when variable "mod" is equal to "news". So I did the same. I placed a file with Paginator in subfolder and included it in a file in my root folder. Must to mention here that the ScriptLibrary, PaginationStyles and styles folders are placed in my site root. And that test was successful for me. Please, provide here the code of both pages - index.php and news.php or pack them in a zip or rar and send them to miro@dynamiczones.com

Regards,
Replied 13 years ago
13 years ago Serhat ALPASLAN replied:
i have same problem too. i put paginator on /plugins/users/users.php

i include users.php to index.php which is the site root

and paginator links are:

plugins/users/index.php?pageNum_users=1
plugins/users/index.php?pageNum_users=2
plugins/users/index.php?pageNum_users=3
.
.
.

but that is incorrect. there is no index.php on this location. indexp.php file is correct but path is wrong. path is must /index.php not /plugins/users/index.php. i want to be:

index.php?pageNum_users=1
index.php?pageNum_users=2
index.php?pageNum_users=3
.
.
.

is there any solution?

Edited by - Serhat ALPASLAN on 21 May 2011  21:47:01


Edited by - Serhat ALPASLAN on 21 May 2011  21:51:56

Reply to this topic