|
|
bluerobe
Junior Member   Posts: 21 Registered: 5/9/2005 Status: Offline
|
posted on 11/11/2005 at 01:43 PM |
i have a question about this mod . i instaled it and it works fine cept for
one thing . the section that in wraping to is a dkp section in my webserver
. now i have it wrapped to the index page. so when i click on the link it
takes me to the dkp index page . the index page is wrapped in the middle of
my website as intended . the thing is that inside that dkp section theres 4
other links also . so when i click on the links inside the wrapped page it
takes me to another page but it doesnt stay wrapped, only the first ( dkp
index page ) stays wrapped . how can i make it so any links i click inside
that wrapped index page takes me through the various links and it all stays
wrapped in the middle of my php site . thanks shawn i know im a pain bud,
but if worse comes to worse let me know and ill pay for your time . i like
having things neat . hm just in case im not making myself clear. i want to
wrap and entire 5 pages within my php site. in other words the page that i
have wraped plus the links in that wrapped page i want to stay wrapped when
i click on them . capiche ? |
| |
| |
robojerk
Newbie   Posts: 2 Registered: 4/20/2006 Status: Offline
|
posted on 4/20/2006 at 11:46 AM |
It has to do with how the links on your wrapped website are used.
Here's a forum where I found a way to fix it (if you can) on the website
you are wrapping.
http://forums.eqdkp.com/index.php?showtopic=1670<br><br><br&
gt;
quote: I wanted to have eqdkp
load in a frame (as an embedded page), however, whenever someone clicked on
a link from eqdkp it would "take over" the entire window.
I searched around the the forums and saw a bunch of people asking how to do
this, however I didn't see a clear cut answer. After tinkering a bit I
figured out how to make this work...
I made this change in eqdkp 1.0.3, not sure if its the same in other
versions.
Here it is:
1. File /eqdkp/includes/eqdkp.php
2. Back it up!
3. Edit it....
Line: 298
${$var} .= '<a href="' . $this->root_path . $menu['link'] . '"
class="copy" target="_top">' . $menu['text'] . '</a> |
';
Change it to....
${$var} .= '<a href="' . $this->root_path . $menu['link'] . '"
class="copy" target="_self">' . $menu['text'] . '</a> |
';
4. Save the file.
Thats it, seems to affect ALL of the links in eqdkp. I have not tested
extensively, but it seems to be working great. Just thought I would post
this up to help anyone else trying to go the same thing.
Velkyn
EQ2 - Befallen
|
| |
|
|