Help - Search - Members - Calendar
Full Version: Site..
MSFN Forums > Coding, Scripting and Servers > Web Development (HTML, Java, PHP, ASP, XML, etc.)

   
Google Internet Forums Unattended CD/DVD Guide
kidd0
I got my site guides @ Uploader workin newwink.gif thanks

I need to know what file and where do I edit the board navigational menu on board. (The menu on top left corner)
FthrJACK
its a template, go to edit templates. Then find Skin_Global.html, ive higlighted the relevant bit

QUOTE
<!--|IBF|Member_bar|START|-->


&nbsp;{ibf.lang.logged_in_as} <b>{ibf.member.name}</b> ( <a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=UserCP&CODE=00'>{ibf.lang.your_cp}</a> | <a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Login&CODE=03'>{ibf.lang.log_out}</a> | <a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Msg&CODE=01'>{$msg[TEXT]}</a> )


<!--|IBF|Member_bar|END|-->

<!--|IBF|BoardHeader|START|-->


<script language="JavaScript" type="text/javascript">
   <!--
   function jumpPage(newLoc) {
       newPage = newLoc.options[newLoc.selectedIndex].value
       if (newPage != "") { window.location.href = newPage }
   }
   // -->
   </script>

<table width='{ibf.skin.tbl_width}' border='0' align='center' cellpadding='0' cellspacing='1' bgcolor='{ibf.skin.tbl_border}'>
 <tr>
   <td background='{ibf.vars.img_url}/logobg.jpg'>
<a href='{ibf.vars.board_url}'>
<img src='{ibf.vars.img_url}/logo.jpg' alt='Powered by MSFN' border='0'></a></td>
 </tr>
 <tr>
   <td id='alt1'>
     <table width='100%' border='0' cellspacing='0' cellpadding='2'>
       <tr>
         <td width='100%'>
        <% MEMBER BAR %>
         </td>
         <td nowrap valign='middle'>
<a href='http://www.msfn.org/index.php?act=portal' style='text-decoration:none'>
<img src='{ibf.vars.img_url}/icon_home.gif' title='Portal' name='Portal' border='0' align='absmiddle'> Main Page</a> |

<a href='http://www.msfn.org/index.php?act=idx' style='text-decoration:none'>
<img src='{ibf.vars.img_url}/icon_portal.gif' title='Forums' name='Forums' border='0' align='absmiddle'> Forums</a> |

<a href='http://www.msfn.org/guides.shtml' style='text-decoration:none'>
<img src='{ibf.vars.img_url}/guides.gif' title='Guides' name='Guides' border='0' align='absmiddle'> Guides</a> |

<a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Search&f={$ibforums->input['f']}' style='text-decoration:none'><img src='{ibf.vars.img_url}/icon_search.gif' title='Search' name='search' border='0' align='absmiddle'> Search</a> | <a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Members' style='text-decoration:none'><img src='{ibf.vars.img_url}/icon_members.gif' title='Members List' name='members' align='absmiddle' border='0'> Member List</a> | <a href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Help' style='text-decoration:none'><img src='{ibf.vars.img_url}/icon_help.gif' title='Help Files' name='help' border='0' align='absmiddle'> Help</a></td>
       </tr>
     </table>

   </td>
 </tr>
</td>
</table>
<br>


<!--|IBF|BoardHeader|END|-->
kidd0
Not that bar> The thing below it.
It sticks to the left side of the portal.

"The Navigator's Panel"
aKaFrEE
edit skin_portal.php

CODE
function navigation() {
global $ibforums;
return <<<EOF
   <table cellpadding='0' cellspacing='0' border='0' width='100%' bgcolor='<{tbl_border}>' align='center'>
     <tr>
       <td>
         <table cellpadding='4' cellspacing='1' border='0' width='100%'>
          <tr>
            <td colspan='2' class='titlemedium' background='{$ibforums->vars['img_url']}/tile_back.gif'><b>{$ibforums->lang['navigation']}</b></td>
          </tr>
          <tr>
         <td class='forum2' colspan='2'>
     <a href="{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=portal">{$ibforums->lang['nav_home']}</a><br>
     <a href="{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=idx">{$ibforums->lang['nav_forums']}</a><br>
     <a href="{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=Search&f=1">{$ibforums->lang['nav_search']}</a><br>
     <a href="{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=Members">{$ibforums->lang['nav_mlist']}</a><br>
     <a href="{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=Help">{$ibforums->lang['nav_help']}</a>
      </td>
       </tr>          
      </table>

     </td>
   </tr>
  </table>
<br>
EOF;
}


that?
kidd0
Yep, thanks.

I know how to edit the url in that file now, but how do I edit for example the help text to say HelpMe?
XPerties
href='{ibf.vars.board_url}/index.{ibf.vars.php_ext}?s={ibf.session_id}&act=Help' style='text-decoration:none'><img src='{ibf.vars.img_url}/icon_help.gif' title='Help Files' name='help' border='0' align='absmiddle'> Help</a></td>


change the red to what ever you want it to say
kidd0
I got a PHP Script, uploader thingy, and it works, and I got a blank page that matches my site. Can someone put the script in the page? My script is just on a blank white page now.
XPerties
you dont want a script, you want the uploader to match your website right? Well you will have to do it yourself.

http://hotwired.lycos.com/webmonkey/refere...tml_cheatsheet/

design it...very easy just read about it.
XPerties
btw this is a great tool and easy to use to edit the php files and add custime items in scripts.

http://www.phpedit.com./

use that to edit the uploader file and add color and text and links. What ever you want
kidd0
Nobody can import it in 4 me?
XPerties
ok...for the last few days ive been reading your threads about your site. Now dont get me wrong were here to help but you cant have everything handed to you on a tray. Your question were answered but i think its time for you to learn a little on your own. We do not build sites for people and thats what your asking us to do. Its very simple and takes a few min to do. Spend some time playing with it.
kidd0
I dun want you guys to think that crap. I just started PHP a few weeks ago. I can edit PHP, and just getting into development.

I do not know how to create my own tags, like the sites you gave me.

I created my portals skin with friends, and I do that crap. I am not into the whole PHP seen yet

What I am asking for you guys know> I am can basically learn from what you guys gimme.
Drewdatrip
QUOTE (Windows .NET @ Nov 11 2002, 11:18 AM)
Nobody can import it in 4 me?

Thats not learning..thats just having people do the work 4 you......
You can always ask us 4 help but asking us to do the work 4 you isnet going to help you in anyway
"Give a man a fish you feed him for a day, teach the man to fish and you feed him for a life time" somthin like that anyway....

=Drew
XPerties
im out of the topic, but one thing...your main frontpage top left says "MAIN PAGE"....uhh thats linking to us, might want to change that..rofl
FthrJACK
i think what you want is pretty much a case of cut and paste. you might not need all of the code from the uploader... or you might. look at it an see what you think then cut and paste it into the table on the page your wanting to put it on.
experiment, you arent going to kill someone or something doing it, you might just suprise yourself, and its much more satisfying in the end.
FthrJACK
you mean something like this right??
if so then you could have done it yourself it took 60seconds. i wont do this again, it was very simple, liek people suggest, you wont learn dude unless you try yourself, im not having a go at you dont think that, it would be cool if you became some PHP whizz, id be asking you the questions then. newwink.gif
Just try a bit more before asking for things that are very simple, not for our sake.. but yours. (and to save xperties kicking your a** across 12 states lol)

hope this is what you meant:
kidd0
but that has coding on it, I did that, but the code shows, and it doesn't work.
xper
QUOTE
but that has coding on it, I did that, but the code shows, and it doesn't work.



blink.gif blink.gif blink.gif

You know what, try www.phpbuilder.net.


Closed
FthrJACK
only advice i can give you is try another uploader.

rename your guide files extension to .shtml

and include the upload file by server side include.
eg:

CODE
<!--#include file="scripts/upload.php" -->


but you will need to use another uploader to do that as the one you have doesent work.

failing that edit the uploaders html in dreamweaver rather than the guides page, trying to fit the uploader into the guide.. just edit the uploaders html and put your sites header in the page.

last option.. just have the uploader on its own page and not be fussy. other than that man i cant help you.. too busy with our own site at the moment.
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.