PDA

View Full Version : external.php


delds
10-05-2015, 02:46 PM
where is external.php located in vb5

Replicant
10-05-2015, 02:48 PM
./core/vb/api/external.php
./core/vb/library/external.php
./core/includes/functions_external.php
./includes/vb5/frontend/controller/external.php

delds
10-05-2015, 03:15 PM
On vb 3 / 4 I had the following code to list a few threads on another website from the forum site,
_____

<script type="text/javascript" src="http://www.selfhelpwithmore.com/ez-forums/external.php?forumids=17,23&type=js"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 10; x++)
{
document.writeln("*<a href=http://www.selfhelpwithmore.com/ez-forums/showthread.php?t="+threads[x].threadid+">"+threads[x].title+"</a><br />");
}
//-->
</script>
_______

with one on your list of external.php should this script be pointed to and does it also need to be changed to make it work with vb5

Replicant
10-05-2015, 03:50 PM
Your new url would be something like this.

http://www.selfhelpwithmore.com/ez-forums/external?type=js&nodeid=17,23

delds
10-16-2015, 04:06 PM
<script type="text/javascript" src="http://www.selfhelpwithmore.com/ez-forums/external?type=js&nodeid=32,37,22,29,31,38,31,30,42,39,45,41,46,40,3 6,43,"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 10; x++)
{
document.writeln("*<a href=http://www.selfhelpwithmore.com/ez-forums/showthread?t="+threads[x].threadid+">"+threads[x].title+"</a><br />");
}
//-->
</script>

The script is installed on right panel of...

http://www.selfhelpwithmore.com/switchoutlet/

when using this script I do get the 10 threads displayed but for example when clicking on one of the links displayed the link is

http://www.selfhelpwithmore.com/ez-forums/showthread?t=8773

and coming up on a page not found [because I have all 404 errors go to home page that is where it goes]

the real link was at

http://www.selfhelpwithmore.com/ez-forums/forum/appliance/appliance-repair/8773-actuator-excess-detergent-use-timer-clogged-pump

how to fix?

using vb 5.1.9

Zachery
10-17-2015, 02:07 AM
<script type="text/javascript" src="http://www.selfhelpwithmore.com/ez-forums/external?type=js&nodeid=32,37,22,29,31,38,31,30,42,39,45,41,46,40,3 6,43,"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 10; x++)
{
document.writeln("*<a href=http://www.selfhelpwithmore.com/ez-forums/node/"+threads[x].threadid+">"+threads[x].title+"</a><br />");
}
//-->
</script>

That should work, I think

delds
10-17-2015, 03:43 PM
yes that works perfectly, thank you

Brandon Sheley
10-18-2015, 09:14 PM
./core/vb/api/external.php
./core/vb/library/external.php
./core/includes/functions_external.php
./includes/vb5/frontend/controller/external.php

lol.. wow

Replicant
10-19-2015, 02:09 AM
lol.. wow

RIGHT?