What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » HTML/FTP/PHP

Pages: (5): « First « 1 [ 2 ] 3 4 5 » Last »
HTML/FTP/PHP
Author: Message:
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
O.P. RE: HTML/FTP/PHP
hmm, yeh, i have to embed the video intp the page, but none of this is workin, but it might be becasue i havent got my webbie hosted (i have a hoster, but not uploded it yet cos i cant figure out how to use smartFTP to do so!!!)

This post was edited on 09-02-2005 at 07:28 PM by stoshrocket.
formerly methos
09-02-2005 07:27 PM
Profile PM Web Find Quote Report
hmaster
Senior Member
****

Avatar

Posts: 716
Reputation: 24
33 / Male / Flag
Joined: Nov 2004
RE: HTML/FTP/PHP
put in the correct fields at the top (info you should've got from host)
and then when you are loggef in it gives you the opportunity to upload/move/delete stuff on the server :)
[Image: sig.png]
09-02-2005 07:32 PM
Profile PM Web Find Quote Report
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
O.P. RE: HTML/FTP/PHP
ok, so i just enter the info, and upload all the files onto the server??? sounds easy enough... lets try it...
ok, ive managed to upload all of my files needed for my website, how do i tell it what my hompage is etc??? (on smartFTP)
formerly methos
09-02-2005 08:09 PM
Profile PM Web Find Quote Report
segosa
Community's Choice
*****


Posts: 1407
Reputation: 92
Joined: Feb 2003
RE: HTML/FTP/PHP
index.html (or index.php, depends) is the default file.. so mrename the main page to that.
The previous sentence is false. The following sentence is true.
09-02-2005 09:41 PM
Profile PM Find Quote Report
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
O.P. RE: HTML/FTP/PHP
where is that file??? i cant seem to find it anywhere...
formerly methos
09-02-2005 09:50 PM
Profile PM Web Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: HTML/FTP/PHP
you need to make that page :), that's the page that opens when you browse to the folder with your browser, Say you type www.mydomain.com, --> it goes to www.mydomain.com/index.html.
www.mydomain.com/msnmsgr --> goes to www.mydomain.com/msnmsgr/index.html.
[Image: 1-0.png]
             
09-02-2005 10:25 PM
Profile PM Web Find Quote Report
rav0
Veteran Member
*****

Avatar
i have an avatar

Posts: 1419
Reputation: 29
34 / Male / Flag
Joined: Aug 2003
RE: RE: HTML/FTP/PHP
quote:
Originally posted by Methos2
how do i tell it what my hompage is etc??? (on smartFTP)

In most cases, you don't ;). Just name your homepage file index.html (or index.php, if you ended up using php).

If you really want to have it named as something else, you will need to use .htaccess (intentional dot). You can only use it if your host allows it, and this is unlikely. However, if you are allowed to use it with your host, this is how.

.htaccess works by using a file called (drumroll) .htaccess. This is a text file, which contains special instructions for the server concerning that directory, and its subdirectories. You can create one in Notepad, and type this inside:
code:
DirectoryIndex homepage.html
if homepage.html is your homepage, or you use another filename. In Notepad, save the file as ".htaccess" with quotes (otherwise Notepad will think that you really wanted .htaccess.txt and save it as that).
| [Image: dorsh] |

(\ /)
(O.o)
(> <)

This is Bunny. Copy Bunny into your signature to help him on his way to world domination
09-02-2005 10:45 PM
Profile E-Mail PM Web Find Quote Report
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
O.P. RE: HTML/FTP/PHP
ok, thanks guys, i'll try
BTW:: any1 got any ideas on this embedding the WMV file????

This post was edited on 09-03-2005 at 10:19 AM by stoshrocket.
formerly methos
09-03-2005 10:18 AM
Profile PM Web Find Quote Report
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
RE: HTML/FTP/PHP
try this to embed the video with controls, starts automatically and is looped:

code:
      <!-- begin embedded WindowsMedia file... -->
      <table border='0' cellpadding='0' align="left">
      <tr><td>
      <OBJECT id='mediaPlayer' width="320" height="285"
      classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
      codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
      standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
      <param name='fileName' value="http://servername/path/to/media.file">
      <param name='animationatStart' value='true'>
      <param name='transparentatStart' value='true'>
      <param name='autoStart' value="true">
      <param name='showControls' value="true">
      <param name='loop' value="true">
      <EMBED type='application/x-mplayer2'
        pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
        id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
        bgcolor='darkblue' showcontrols="true" showtracker='-1'
        showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320" height="285"
        src="http://servername/path/to/media.file" autostart="true" designtimesp='5311' loop="true">
      </EMBED>
      </OBJECT>
      </td></tr>
      <!-- ...end embedded WindowsMedia file -->
    <!-- begin link to launch external media player... -->
        <tr><td align='center'>
        <a href="http://servername/path/to/media.file" style='font-size: 85%;' target='_blank'>Launch in external player</a>
        <!-- ...end link to launch external media player... -->
        </td></tr>
      </table>

just change the src etc to the url of your file...

try here:

http://cit.ucsf.edu/embedmedia/step1.php

its probably easier

This post was edited on 09-03-2005 at 10:37 AM by M73A.

[Image: lost7ru.gif]
09-03-2005 10:32 AM
Profile E-Mail PM Find Quote Report
stoshrocket
Senior Member
****

Avatar
formerly methos

Posts: 748
Reputation: 31
33 / Male / Flag
Joined: Aug 2005
O.P. RE: HTML/FTP/PHP
ok, now this is taking the mike, i STILL trying to figure out how to embed media but another problem has arose. Ive uploaded all of my webbie files and now ive got it online, i can get to the hompage via the internet and surf from page to page easily; but there is just one problem; ALL of the graphics arent showin, it just comes up with small 'x's in the corner, any ideas?????
formerly methos
09-03-2005 07:00 PM
Profile PM Web Find Quote Report
Pages: (5): « First « 1 [ 2 ] 3 4 5 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On