Off topic but please help.

I got a website http://www.xxxxx.com/johnterry
when I entered this URL in the browser it went to http://www.xxxxx.com/johnterry/index.html
I want to know what files are inside http://www.xxxxx.com/johnterry/
I don't want to go to the index page
so how I can view the files in http://www.xxxxx.com/johnterry/ ?
thanks.

You mean like a directory listing?
That gets set in the configuration of your web server. If you're running the server yourself on your own computer, then check its documentation or look at a forum, FAQ, or newsgroup for that server.
If the web server is something that your ISP or other third party is providing, and you just upload pages, then chances are you're out of luck. It's possible that this would be an option in whatever configuration page(s) they offer you, but my uninformed guess would be no.

Similar Messages

  • WebAssist Cart help? I know it's off topic but... Could really use some help...

    I've got a shopping cart that is working and I'm trying to update the
    quantities in inventory by subtracting the quantity ordered from the total
    inventory in a table called ITEMS.
    I can update a record after a sale in the cart, but right now it is
    updating by completely replacing the value of the items in inventory with
    the quantity in the checkout cart. So, if there are 800 items, after the
    update, there are -1 total in inventory, not 799.
    The problem is that I don't know how to coordinate the item(s) in the stored
    shopping cart with a call to their ID and quantity in the online database.
    Here's what I have so far:

    Ahhhhhhhh Jeff...<br />If I can get this going...<br /><br />I spent days looking for this solution.<br />Thank you very much.<br />Just bought Dreamweaver CS3 and am battling through the bells and whistles.<br /><br />Liz<br /><br />----- Original Message ----- <br />From: "jefferis" <[email protected]><br />To: <[email protected]><br />Sent: Tuesday, June 19, 2007 9:50 AM<br />Subject: Re: WebAssist Cart help? I know it's off topic but... Could really <br />use some help...<br /><br />>A new message was posted by jefferis in<br />><br />> ADDT - PHP Application Development --<br />>  WebAssist Cart help? I know it's off topic but... Could really use some <br />> help...<br />><br />> On 6/16/07 3:06 PM, in article [email protected],<br />> "[email protected]" <[email protected]> wrote:<br />><br />>> Hi jefferis....<br />>><br />>> How did you solve the problem?<br />>> I am having the same problem trying to incorporate an inventory code into <br />>> a<br />>> shopping cart that will deduct the number of items purchased from my <br />>> total<br />>> inventory to let me and my customers know how many items I have remaining <br />>> in<br />>> stock.<br />>><br />>> Ex:<br />>> inventory: 500 plants<br />>> purchased: 20 plants<br />>> remaining inventory: 480 plants<br />><br />> Yes I did.<br />><br />> I've been struggling with this piece of pie for about 5 days and<br />> thought it might benefit others, so here's a way to update your quantities<br />> in INVENTORY after a checkout success.  I read another thread but found it<br />> way too complex and depended on holding inventory in the session:<br />> http://www.webassist.com/professional/support/kbcompletethread.asp?DiscID=33<br />> 046<br />> But you may lose the info when you go offsite to Paypal, e.g., to complete<br />> the transaction.<br />><br />> Here's my approach using the "checkout_success.php" page.  Using this page<br />> works because user arrives here ONLY after a successful purchase.<br />> First of all, I used the BSM php sample store as a starting point.  I <br />> added<br />> an ItemQuantity field to the items DB to track the stock or items in<br />> inventory in the store.<br />><br />> In order for this automatic deduction of sold items to work, it must be<br />> placed within the do while {  area of the  display page for the cart's<br />> items. } The code is commented below:<br />><br />> <?php<br />> //WA eCart Show If Start<br />> if (!$eCart->IsEmpty())     {    // IF CART NOT EMPTY...<br />> ?><br />>    <h2>Order Receipt </h2>  // STANDARD STUFF TILL NEXT COMMENT<br />>    <br /><br />>    <h3 class="eCart_OrderHeaderInfo">Order number: <?php echo <br />> session_id();<br />> ?></h3><br />><br />>    <p class="eCart_OrderHeaderInfo">This is your order receipt. Please <br />> make<br />> a copy for your records. An email will also be sent to you. </p><br />>    <table class="eC_ShoppingCart" border="0" cellspacing="0"<br />> cellpadding="0"><br />>            <tr><br />><br />>                    <th>Name</th><br />><br />><br />>                    <th>Price</th><br />><br />><br />>                    <th  class="eC_FormItem" >Quantity</th><br />><br />><br />>                    <th>Total</th><br />>            </tr><br />>        <?php<br />> while (!$eCart->EOF())      {  // DO WHILE FOR EACH ITEM IN CART<br />> ?><br />>            <tr><br />><br />>                    <td><img src="/images/thumbs/<?php echo<br />> $eCart->DisplayInfo("Thumbnail"); ?>" alt="" width="100" height="100"<br />> class="eC_ProductThumb" /><br />>                        <p class="eC_ItemLabel"><?php echo<br />> $eCart->DisplayInfo("Name"); ?></p><br />>                  <p class="eC_ItemDescription"><?php echo<br />> $eCart->DisplayInfo("Description"); ?></p>  <p<br />> class="eC_ItemDescription"><?php echo $eCart->DisplayInfo("ID");<br />> $idCall = $eCart->DisplayInfo("ID");?>>  // CREATE A VARIABLE FOR<br />> //THE ITEM's ID NUMBER in the DB<br />> //USE DISPLAY ID TO GET ID # and make it = $idCall<br />> </p></td<br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("Price")); ?></td><br />><br />><br />>                    <td  class="eC_FormItem" ><?php echo<br />> $eCart->DisplayInfo("Quantity");<br />> $solditems = $eCart->DisplayInfo("Quantity");?>  //DO THE SAME FOR <br />> QUANTITY<br />> //SOLD, MAKE QUANTITY SOLD  = $solditems<br />> </td><br />><br />> // NOW UPDATE THE DATABASE. SUBTRACT $solditems from ItemQuantity ( YOUR<br />> //INVENTORY OR STOCK)<br />> //FOR EACH ITEM IN CART. SELECT the item's ID  by $idCall:<br />> <?php<br />> mysql_select_db($database_connBSM, $connBSM);<br />> $query_itemQ = "Update items SET  items.ItemQuantity = <br />> items.ItemQuantity -<br />> $solditems WHERE items.ItemID = $idCall";<br />> $itemQ = mysql_query($query_itemQ, $connBSM) or die(mysql_error());<br />><br />> ?><br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("TotalPrice")); ?> </td><br />>            </tr><br />>        <?php<br />>  $eCart->MoveNext();    //// REPEATS BEHAVIOR FOR EACH ITEM IN CART<br />> }<br />> $eCart->MoveFirst();<br />> ?><br />> BTW, once the items in inventory = 0, the items do not appear in the<br />> catalog.  That is set in the catalog page's recordset.<br />> Jeff<br />> ~~~~~~~~~~~~<br />> Jefferis Peterson, Pres.<br />> Web Design and Marketing<br />> http://www.PetersonSales.com<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <<a href="/cgi-bin/webx?13@@.3bc3e9d6/5">jefferis, "WebAssist Cart help? I know it's off topic but... Could really use some help..." #6, 19 Jun 2007 6:50 am</a>><br />> You must visit the conference to reply. Email replies are not allowed and <br />> will be returned.<br />> Use the unsubscribe form at <br />> <a href=http://www.adobeforums.com/cgi-bin/webx?280@@.3bc3e9d6!folder=.3bc3909c> <br />> to cancel your email subscription.

  • I'm trying to update my ipod touch but every time it downloads its fine until it processes it and it says it has a problem with my connection but my firewall is off?? Please help.

    but every time i try to its fine until it processes it and then it says it has a problem with my connection but my firewall is off?? Please help.

    I'm having the same problem trying to update my iphone 4(Just got a replacement), I also have firewall off...Hopefully someone can help. Mine says error -3259

  • I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    You might want to download something called an undelete utility. These can find files and recover them even after they appear to have been lost. There are some undelete utility programs that are free. Look at tucows.com
    Also, it appears that you have POSSIBLY overwritten the actual files, which you moved manually, with I don't know what, which you moved in PSE's folder location view.
    Next, in the future ... NEVER (that's: don't even think about it) move your photos in Windows. NEVER. NEVER. Not ever. Not once. This always (that's ALWAYS, as in 100% of the time) causes problems and usually makes things difficult to fix.
    Lastly ... make regular backups! I must say this in the forums about seventy bazillion times a month. Make regular backups! Regular depends on how often you take photographs and edit them. Since my photographic activity usually happens on the weekends, I make backups every Sunday night. You may need a different schedule, depending on your activity level. MAKE REGULAR BACKUPS!

  • My ipad was stolen 2 weeks ago but can't be located since is off line. Please help.

    my ipad was stolen 2 weeks ago but can't be located since is off line. Please help.

    It's gone.
    The downside of the 'find my' app is that your device needs to be online, and it is an app that can be defeated within minutes by any thief that knows what they're doing.
    Hopefully you've already protected your data, changed passwords etc.
    Chances are your iPad has been wiped and sold and it's gone.
    You can or should have reported the theft to the police. You might get lucky.

  • IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    IF YOU HELP MY NANO upgraded when you install PERFECT BUT DOES NOT APPEAR ON THE SCREEN NOTHING BUT as if you were OFF if turned PLEASE HELP OR MORE AND HAS THE NEW UPDATE

    iPod not recognized in 'My Computer' and in iTunes for Windows

  • Sort of off topic, but same old question looking for a new answer

    Ok I'm ready to start a new site. I'm going cheap as it's all coming out of my pocket including hosting. I want to put a video chat room on my site. Is there anyway to capture a webcam in this fashion in director. I've done tons of searching but I can't really find anything. I'm trying to avoid using the flash communication server for three reasons. 1) I already have the director multiuser server that will host up to 1000 users (the room will never be anything close to that big 50 peeps tops) and my web host will support it and install it for me. 2) I can't find anything at a really cheap price. I'm looking at 25 cam users at once... 3) Actionscript is nothing I've every really worked with before, but I could do the lingo programming.
    I have a few questions First of all I read something about putting a flash element on the stage, and that the flash player is what captures the webcam. But I assume that it still needs flash communication sever to upload the video. Is this correct?
    Is there an xtra that will do what I  want?
    I read something about encoding the video to realvideo, but I have no clue how as I've never done anything like that before. Will this work and do you know of a tutorial for this?
    Do you know of a really really cheap flash comm host?
    Really off topic but, I could write the text chat end of it in cold fusion. Is there a known way to easily add the video in this way?
    Does anyone know of a cheap off the shelf video chat room that I can put up on my site and just pay for the bandwidth overage that it uses?
    Thanks for any help any of you could give me.
    Cane

    There are several 2.4 GHz MacBook pros shipped over several years.
    If this is your Mac (2007 model) scroll down to the memory section and read:
    http://www.everymac.com/systems/apple/macbook_pro/stats/macbook-pro-core-2-duo-2 .4-15-santa-rosa-specs.html
    Standard RAM:
    2 GB
    Maximum RAM:
    6 GB*
    Details:
    2 GB installed as two 1 GB modules. No slots free.
    *Apple officially supports a maximum of 4 GB of RAM but third-parties have been able to upgrade the system to 6 GB of RAM using one 2 GB and one 4 GB memory module.
    Site sponsor Other World Computing sells MacBook Pro memory, as well as hard drives, batteries, carrying cases, and accessories.
    ... and that sponsor is not a bad place to get RAM at all. They are experts, and back it up with a "money back if it does not work in your Mac" guarantee.

  • Slightly off topic but a query on open type fonts

    Hi all
    I went to buy the frutiger fonts (9fonts) from adobe. The format is open type which is what I want. B ut when going to buy them I am asked whether I want mac or windows format. I thought open type fonts were cross platform? We have both MACs and PCs, if I want the font on both do I have to buy both formats ?
    Link to font:
    http://store.adobe.com/type/browser/P/P_1186.jhtml
    Thanks for any help, sorry for this being off topic but I couldn't see where else to post.
    gerryR

    Yes, that's it, pretty much. Also, our download manager needs to know whether you're using Mac or Windows. The *contents* of the purchased file are the same.
    T

  • I can access resize screen bar in the lower right. It extends off screen. Please help?

    I can access resize screen bar in the lower right. It extends off screen. Please help?
    Irene

    Have you tried the resize button in the window corner upper right.  There are 3 buttons one closes the window one minimizes it without closes it and the other one toggles between full screen and a smaller screen.  Click the last one and see what happens.

  • My iphone 4 is locked on one application and will not close or turn off my phone please help!

    my iphone 4 is locked on one application and will not close or turn off my phone please help!

    If you mean that the iphone froze in some random app you have ....the solution is easy .
    Press and hold both Home Button and On/OFF button for about 15 seconds . The device should turn off and on again .
    If not than please wait until the battery goes out and try the above step again whilst device is off .
    Hope it helps

  • I want to be a good SAP user but please help me how and can i do the right step about SAP

    i want to be a good SAP user but please help me how and can i do the right step about SAP

    Hi,
    you can start learning SAP from an end-user/key-user perspective with the online learning portal of SAP Learning Hub, business user edition.
    Further information can be found here:
    SAP Learning Hub
    Regards,
    Arnold

  • Cut-off text. Please help me. Thank you.

    Hello,
    I published my site several weeks ago with no problems at all. Now, suddenly, text (rendered as images) throughout the site is being cut-off, sometimes to the point of invisibility.
    my site can be found at: http://www.milescollyer.com/
    (I can provide screen shots of how it appears in iWeb versus Safari if needed)
    I have tried almost everything that I can think of including:
    -increasing the size of text boxes to a generous size
    -increasing/decreasing the size of the font
    -moving the text boxes up and down slightly in an attempt to fully reveal the text
    -deleting and remaking text boxes
    I have been reviewing this forum for days looking for help with this problem. I am at a loss of what more I can do. PLEASE help.
    Thank you,
    -miles

    I noticed there are also diamond symbols with ? in them which are showing up too. Are you creating your text links within iweb and then using the inspector to link them to other pages? I have seen this type of problem when putting in forms, but never with text links. One way around this might be to link the text box instead of the text to other pages. for example, when you highlight the text and go to the inspector then enable as a link simply do the same but dont highlight the text just select the text box. Try it on a few and republish, its worth a try. You also might want to try this first, do a publish all rather than just publish. To do this go to file and select publish all to .mac. Sometimes this is an easy fix to weird problems. Your site looks nice and I hope you can get it up and running. Good luck.

  • Help i my i touch was stolen from school about a week or more so ago and i dont know how to find it with the wifi turned off, can anyone please help me?

    Well, i lost my iPod at school i dont know if it was stolen, it fell out of my pocket or what but either way it is gone. I have the find my ipod app, and contacted the local police, but i just want it back. I have turned the WIFI off because it runs down my battery and i dont get service at school. Can anyone please give me some advice as to what i should do? Retracing my steps, looking at home, backpack, car, room, clothes have all been looked through. Someone please help! It was a gift from my dad. Its really important to me!

    There is nothng special you can do without wifi being on. 
    Report it to the school and change the passwords for all accounts used on the iPod. Apple will not help with anything.

  • Got Unibody MacBook for $100 off CL but need help!

    Hi there,
    I just got an unibody macbook off cl for only $100. It is 2ghz intel core 2 duo, 2 gig of ram, 160 gig hdd, and was loaded with leopard but I just upgraded it to moutain lion. Anyway, Since I got it for cheap so of course it have one problem. It works great most of time but the screen show fizzy (NOT FLICKING) It is hard to explain because I am deaf, but it does fizzy on the screen if I move the hedge. It will go away by itself in few sec but if not then move the hedge then it will go away. I will try to add photobucket image to show you what it look like. Hopefully it will show you. From my research, I was thinking its bad inventer but most of time I noticed macbook's screen was flicking caused by bad inventer but this is fizzy/fuzzy on the screen. Please help! If no luck then I guess I have to drive two hrs round trip to Apple store. Thank you for your time!
    It works fine most of time.
    http://i801.photobucket.com/albums/yy292/deafej1vtec/selling%20parts/D779F943-AC BF-4671-B302-49FF449A424F-1077-00000081D9B12146.jpg
    Sometime it will go like this
    http://i801.photobucket.com/albums/yy292/deafej1vtec/selling%20parts/CCAA0242-A4 FE-4872-B14C-6BBC7B96ABE9-1077-00000084C2068AE1.jpg
    I know the screen is fine because it is not cracked or anything like that but what do you think? Thanks!

    You should take the Macbook in for a complete diagnosis at the Apple store. From the images you have posted it would appear there is a problem with the graphics card - not the display. This is a serious issue that cannot be solved by the average user at home.
    Good luck!

  • My ipod wont turn off!! please help

    i did nothing to my ipod to make it not turn off. i was listing to it for a while and when i decided i was done using it i wanted to turn it off and it wouldnt work. i can go from one song to the next with no problem and i can pause it and all that good stuff but it just wont turn off. i tried letting it cut off by itself( put ot on pause and wait for a couple of min) but its been almost a half an hour and it still hasnt turn off. please help me!!!

    Have had the same problem for a couple of weeks. Have tried the 5 Rs and other tips found on this site. Nothing seems to work. Only thing that does work is if ipod is connected via USB and itunes is running. It can then be turned off and will remain turned off when you disconnect your ipod. But this isnt much help if you have to connect to your computer each time you want to turn your ipod off! Still waiting for a complete answer I'm afraid ......

Maybe you are looking for