HTML - Cant Find Address While Running Apache.
Im hosting my own web page with Apache and im not using a domain but i cant find the ip or anything that i would use to get to the address. Please help and thanks.
Similar TutorialsHello. I am pretty new at this, so any help would be appriciated. I want to put a custom text in an address bar of user's browser, so that any page on my site shows www.mydomain.com instead of www.mydomain.com/mypage.html or www.mydomain.com/asubpage.php. I don't want users to see the titles of subpages of my site. My server supports PHP, so I could write this in either HTML or PHP, but don't know how. Is this possible to achieve and if so, how? im trying to set up a home server, and im hoping any1 can offer some advice, i tried to download app serv network i had some issues im reformatting that pc and gonna try again this afternoon, im just wondering if any1 can offer some advice on how to host my site using app serv or apache i read there forums and the install files that came with it but still am having trouble, i just want to get the basic setup done and host my files please if any1 can help this would be a major assistance to my research here, thank you all very much in advance How can i link index.html to page2.html also how can i reference a file if lets say i put a picture in my website, what folder should i put it in? sorry im not that swift i couldnt find it on google though i found lots of other apache stuff not what i was looking for As I said in my introduction I have been dragged out of to produce 2 websites which is not my usual area of IT business. I have used MS Visual Web Developer 2008/IIS because that is what I have and I am having trouble with a small piece of code: <table> <tr> <td> <img src="Images/RSAshed.jpg" alt="Image not found" /> <img src="images/RSAstore.jpg" alt="Image not found" /> <img src="images/RSAwarehouse.jpg" alt="Image not found" /> </td> </tr> </table> With IIS Firefox displays 3 images horizontally across the page, but when this is uploaded to the Namesco host I get: http://www.mohairmarketing.org.uk/page4.html i.e. one image and two of 'image not found'. We have a Mandriva Linux file server so I have loaded the pages into Apache and get the same problem. Can anyone tell me what is the problem please. It seems that it may be wise to transfer production to Linux. I have tried Amaya but my eyesight is pretty poor and a cannot read the very faint coloured text. It would be preferable if the code was changed so that it works on all platforms. Thank you in advance. Malcolm Hey, I recently logged onto my old Piczo site which I used to store pictures on( The site domain being; http://www.badboypicturessss.piczo.com/?cr=1 ) . After logging in I discoverd no images show. Just a red cross upon the corner (I've tried to view on Firefox and Internet Explorer) When clicking propeties on the picture and entering into the Firefox html I am met with, This XML file does not appear to have any style information associated with it. The document tree is shown below. − <Error> <Code>AccessDenied</Code> <Message>Access Denied</Message> <RequestId>4B0C38630330B989</RequestId> − <HostId> 0hsgiTfM+6zl+X127uhukEZM6SYj0D+HCeYk113cG8ftnK0AM5 knte5VpiqDEKo4 </HostId> </Error> Am running out of ideas of how to get the images to show, I've tried numerous forums seeking the answer to how to display the images! Thanks for reading, be great if you could help! Hello, First off, I'd like you to forgive any and all misconceptions I may have/make in this, as I know as little as possible about html for me to actually post this. Currently I have open the source of a website, (let's call it Site), and in this code I have narrowed down the script (function?) that is called when you click on a button (Button). Is it possible for me to somehow use the source code to call this function/script, simulating the button being pressed? I plan to make a "simple" program to move through Site as a project/practice and this is the point I'm starting at. Gotta start somewhere. Thanks, paradigm Hey guys, I'm new here, and still somewhat of a noob when it comes to html and web design so be easy on me. One of my new projects is creditcardrewardzone.com, which I thought was looking pretty good until someone told me that it was completely screwed up when they looked at it in Internet Explorer on their windows machine. I myself work on a mac and check it with safari, firefox, and IE, and everything looks fine, but for some reason in IE on windows, the tables run really long to the point where the site isn't functional. If you go to the site and click on cash cards, you can see what I mean. Can anybody look at my code and see if there's something I'm doing wrong? Thanks a lot, I look forward to staying at the forum and probably asking a lot more questions! Josh hello, i want to be able to add an address bar on to a html webpage that can send the user to a link that they type in. any help would be great thanks sir nerdalot <?php for ( $counter = 0; $counter <= 10; $counter += 1) { echo "Hello World<br>"; } ?> //Html code <html> <head> <script language="javascript"> function abc() { var fname=document.myform.fno.value; if(fname==""||fname==null) { alert("Name Field is blank"); return false; } output(); } function output() { alert("Output Section"); var name=document.myform.fno.value; document.getElementById('name').innerHTML=name; var vehobj=document.myform.vehicle; var vehchecked=[]; var numberofoptions=vehobj.length; for(k=0;k<numberofoptions;k++) { if(vehobj[k].selected==true) { vehchecked[k]=vehobj[k].value; } } var vehicles=vehchecked.join(" "); document.getElementById('veh').innerHTML=vehicles; var fruity=document.myform.fruit; var fru=[]; var fruit_total=""; for( i=0;i<fruity.length;i++) { if(fruity[i].type=="checkbox") { if(fruity[i].checked) { //fru.push(fruity[i].value); fruit_total+=fruity[i].value+" "; } } } document.getElementById('fruity').innerHTML=fruit_total; alert("Ends"); } </script> </head> <body> <form name="myform" onsubmit=" return abc()"> <br><br><br><br><br><br> Name : <input type="text" name="fno" maxlength=20/><br><br> Phone Number :<input type="text" name="pno" maxlength=10/><br><br> Email : <input type="text" name="email" maxlength=20/> Address : <textarea name="address" maxlength=200></textarea> <br><br> Vehicle: <select name="vehicle" multiple="multiple"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select> <br><br> Fruits you like<br> Mango:<input type="checkbox" name="fruit" value="mango"><br> Grapes:<input type="checkbox" name="fruit" value="grapes"><br> Apple:<input type="checkbox" name="fruit" value="apple"><br><br> <input type="submit" value="submit" /> </form> <br><br><!-- Click to get output<input type="button" value="Click" onclick="output()"/> --> <h2>Output</h2> Name : <b id="name"></b><br> Phone Number :<b>8825247455</b><br> Email :<b>y_j@gmail.com</b><br> Address :<b>Akshay Flat no 22,Linking road,Mumbai</b><br> Vehicle :<b id="veh"></b><br> Fruits :<b id="fruity"></b><br> </body> </html> ************************************************* I am learning javascript this is just a practicing code. What i want is as soon as validation part is over next function must be called up and o/p must be printed at the ends. It works but as final line of output method executes the data disappear from output. Please help me to resolve this issue. Sorry if this is the wrong section to post in but as I have explained I'm new to this & I don't fully understand what everything means. But my question is this: A long time ago somebody told me of a method in which I was able to make a nwe forum topic via the address bar. There were spaces to put the message, topic title, topic icon etc. But being slow I forgot it. I was just wondering if anyone could help me with this as I would like to use it to make multiple topics on my new message board & I don't want to type the whole topic out again everytime I post. Again I'm sorry is this is the wrong place to post a quaestion like this. Thanks, Jonny. How we can put image with web address like this image + http://www.yahoo.com I need to know how to make an html/javascript based script to make a VERY simple address bar that acts exactly like the address bar on all web browsers. When you type in where you want to go.. well.. It takes you to the url you just typed in! No restrictions are needed (anti-porn for example) and I'm hoping it can be in the shape of a regular old form script that is easily editable. Please don't ask why the hell I would need one but I just do. Thanks in advance I've begun to notice that most websites now, up on the address bar, have a logo, to the left of the "http://..." address. Is it a piece of html code, or something else? My guess is the latter.. i have a domain registered with network solutions, do i have to pay for it? Thanks, -Adam adam79@toast.net Hi I've tried to search for this but no luck so far I've been trying to hide the real location of my page I have a domain that's being redirected into a folder of a hosting I have the domain is something like www.*mydomain1*.com where really is being hosted is www.*mydomain2*.com/mydomain1 well, if I go to www.*mydomain1*.com the address bar switches to: www.*mydomain2*.com/mydomain1 I would preffer to hide mydomain2 and show only www.*mydomain1*.com in the address bar I don't mind if that gets fixed and doesn't reflects the page I'm browsing Thanks Regards GQ Hey does anyone know how to put the 16x16 images in there address bar ive heard all kindes of ways i just want the right answer, any help very much appreciated cheers Hey, I'm a bit of a newbie at this, and I have a question for the experts.... I want to set up a textbox within a page that will act as an address bar. Basically, I want to be able to enter a web address into the textbox, and have the page open in another frame. I have a page with 2 frames right now - one containing the textbox, the other that will be the main browsing window. Do I need some CGI script to pull this off? Is there some way that I can restore the text entered in the box into the action= of the form? Thanks in advance for the replies. Hi, How can I make a logo appear in the address field in the browser? Normally a little "E" sign appears next to the URL. Can somebody help? Thanks Hi, In most of the web sites nowadays we can see an icon appearing before the URL in the address bar. What is the technique behind it ? Even in this web site it appears. I have designed a website in pure HTML coding and uploaded it on to my hosting server. When i visit the site the full URL is not displayed e.g. http://google.com instead of http://www.google.com PLEASE HELP this is doing my nut in !!!! |