PDA

View Full Version : php121 Integration of Standalone Version


josiespencer
04-28-2007, 03:39 PM
php121 has been able to integrate into vBulletin as far as the user and password are concerned. That part looks fine.

My problem is that I don't like changing style code which is why I use the Custom Navigation modification to put everything into my Extras drop down or add it to my menu bars. So I did all the installation activiations in the php121 installation guide, and then a created a link/index php to get into php121. The code looks like this:

<HTML>

<script type="text/javascript">
<!--
var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=500,
width=240, left=20, top=20, toolbar=no,
menubar=no, directories=no, location=no,
scrollbars=yes, status=no, resizable=yes,
fullscreen=no');
newwindow.focus();
}
poptastic('php121im.php');
//-->
</script>

</HTML>


I add an entry to CustomLinks that is like this: http://sapsuperusers.com/forums/php121/php121index.php, and I say "no" to the open a new window. Then I go to my forum home page and click on the Instant Messaging link in my menu bar and this is what is happening:

http://sapsuperusers.com/myPictures/PHP121.png

I don't want that blank screen, I just want the little popup screen to appear. Anyone have any ideas? I mean, users can click on the go back arrow and get to the screen again but I don't want them to need to do that!

iogames
04-29-2007, 03:32 PM
Did you solved the problem?

josiespencer
04-29-2007, 06:32 PM
No, I used a work around which I really didn't want to do - I added the function to the header of the style, and added the Instant Messaging call to the navbar. I really wanted to use CustomLinks because changing Style templetes really makes it hard to upgrade to new 3.6 releases.