Jump to content

XFuse

Member
  • Posts

    5
  • Joined

  • Last visited

About XFuse

XFuse's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Does anyone have any tips or know what I am need to be looking for? Any pointers on this would be helpful.
  2. I am working on an add on but finding that some of the information that I need is missing form the docs. I am learning this process as I go so please forgive me if I have missed something. Example, How? Can anyone please explain this to me a bit more? I understand that using $modulelink will take you back o the module itself but what if you want to use $modulelink&page=settings. How does this work? How can this be done so that it points to another php file?
  3. I have found more then one post about this topic but not 100% answer on how to do this. You can use to pull the admin id from tbladmins. What are the rest of the variables that can used? I don't want the admin id, I would like to pull the admins first and last name. $_SESSION['adminid']
  4. Not to bring a dead topic out but has anyone heard form the OP? I am would like to see what this template looks like but can't as the screenshot links all result in a page that requires me to sign in.
  5. The problem is in the script. If you look at line 37, you will see the call for the port number. It will look like checkPort({$num},80); You need to make the changes to this to work with your page. The one you want to put for your page would be as follows: <td id="uptime{$num}"><img src="images/loadingsml.gif" alt="{$LANG.loading}" /><script> checkPort({$num},80); checkPort({$num},21); checkPort({$num},110); getStats({$num}); </script></td> This would need to go right after the <td id="load{$num} on the serverstatus.tpl for your site template. If you want to add other ports, you will need to change checkPort({$num},110); to match the port number, put a space after the preceding ;. The example for this would be like this checkPort({$num},110); checkPort({$num},143); Hope this helps.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated