How to go about this?

I have been designing/building websites for over 12 years until 4 years ago when I just stopped doing it. Now, I’m in a situation that I need to do a bit work again. And I need your advice since dreamweavers capabilities has changed so much since “those’ years. I have a network of distributors and need to create for each one of them their own website that shares the same look, layout, content, menus, etc. The only different, “personalized” part is going to be their personal info with photo in the right side column. I thought about placing each distributor in separate folder – like in domainname.com/john,  domainname.com/terry , etc. What’s the best approach without duplicating the same pages/files for each folder? I’ll do frequent updates to articles/content so I want to do it once for all. In older times we used java script to emulate similar functions, but it was a lot of manual work. Has the latest Dreamveaver some of those functions automated so it’s easier to apply it, either html5 or java?  I any case, I’ll greatly appreciate any of your suggestion.

Dreamweaver has got a fantastic template system that allows you to
create and make changes to your various sites.  If you haven't done
anything for nearly 4 years then you will need to start pretty quickly
to get back into habit of doing some gainful work.
I suggest read this article to get a feel of of what is currently involved:
<http://www.thesitewizard.com/dreamweaver/dreamweaver-cs5-tutorial-7.shtml>
Good luck.

Similar Messages

  • My ipod touch 4th generation no longer holds it's charge for more than 40mins,needs new internal battery but I have no idea how to go about this. i love my ipod and don't want it to loose power completely, can anyone help?

    My ipod touch 4th generation no longer holds it's charge for more than 40mins from full power, think it needs a new internal battery but have no idea how to go about this and am no longer covered by my guarantee. Can anyone advise me on what's best? Thanks in advance

    Using the battery level meter in this manner is comparable to using your car's fuel gauge to calculate miles per gallon. The only thing that matters is the total amount of operating time from full charge to auto-shutdown.
    Use an Apple wall-mount charger.  Do NOT use a computer's USB port.  Then, operate it normally until auto shut-down (ignore any low level alerts that may appear).  An irony is that doing that test to determine the total operating time is also the exact procedure necessary to calibrate the battery level meter.
    I'm not claiming that you do not have a problem.  I am stating, however, that we don't yet know whether or not a battery problem exists.
    According to Apple:
    Use Your iPod Regularly
    For proper reporting of the battery’s state of charge, be sure to go through at least one charge cycle per month (charging the battery to 100% and then completely running it down).
    Elsewhere, Apple elaborates and explains that two half-discharges (or four quarter-discharges, etc.) equals one full discharge.

  • HT4436 I wish to cancel my Icloud subscription, anyone tell me how to go about this?

    I wish to cancel my I Cloud subscription, can anyone tell me how to go about this?

    Open iTunes, go to your account and turn auto-renew off.

  • I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    I am not able to see the airplay icon with Maverick. Can anyone help on how to go about this?

    Does restarting the router help?
    Best.

  • How to remove "About this Page" and "Privacy Statement" on a OA page

    Hi,
    How do i remove "About this Page" and "Privacy Statement" links at the bottom of an OA page and add "Close Window" link on the top right corner of OA page.
    Please help.
    Advance thank
    Pavan

    Hi,
    1. Select Personalize Page link at top right of page.
    2. Select Choose context button.
    3. In the scope drop down box select OA Footer.
    4. Click on apply.
    5. Expand privacy.
    6. Click on personalize pencil icon.
    7. Set Rendered property to false at required level.
    8. Click on apply.
    9. Click on Return to Application link.
    thanx
    Pratap

  • Suggest me, how to go about this?

    It's a long time since I visit last. Anyways, I have a question to ask. In my new Organization, I am responsible for database performance. So,I like to have your
    view on this that How should I go about this? I feel, there is shivere performance
    in our database.
    few of those are...
    1. user connection takes around 15 seconds.
    2. Sql's are taking long time to execute and few of them dosen't execute at all, also the session goes into in-active mode, most of the sessions behaves the
    same.
    hare krishna
    Alok

    Hi Alok,
    One idea regarding your first question: the db runs in 'dedicated server' mode and you don't have allowed enough processes to start to satisfy all connection attempts.
    Above written, you don't give enough details to suggest anything, I would say.
    How did you get this job when you don't even seem to have enough knowledge to determine the problem properly?
    Rgds,
    Guido

  • Not sure how to go about this program....

    i have an assignment for my java class that requires me to create a program to simulate a gunfight between 3 people bob, aaron, and charlie. bob's shooting accuracy is 50% (the probablility of making a kill is 1 out of 2), aaron's accuracy is 30%, and charlie's accuracy is 90%. bob shoots first, then charlie, then aaron. the person shooting shoots at the person with the highest accuracy; so bob would shoot first at charlie, etc. they continue in this fashion until there is only one person left standing and they win that duel. there are to be 10,000 simulated duels to see who would win the most often.. im having a very hard time figuring out what to do with this program.. like how to write the code to make the program figure out who to shoot at based on accuracy. if you have any suggestions, i would greatly appreciate it!! thanks ahead of time. heres wht i have so far:
    public class Duelist
         boolean charlie;
         boolean aaron;
         boolean bob;
         double charlieAccuracy = (90/100);
         double aaronAccuracy = (33/99);
         double bobAccuracy = (50/100);
         int duelCount;
         int numKillsBob;
         int numKillsCharlie;
         int numKillsAaron;
         boolean alive;
         public void ShootAtTarget(Duelist target)
              do
              public void bobShoots()
                   int accuracy = (int)(Math.random()*100;
                   if (accuracy >= .5)
                        charlie == false;
                        numKillsBob++;
                   else
                        return;
              } //end bobShoots
              public void charlieShoots()
                   if (aaron == false)
                        return
                   else
                        int accuracy = (int)(Math.random()*100;
                        if ( (accuracy > 0) && (accuracy <= 90) )
                                  bob == false;
                                  numKillsCharlie++;
                             else
                                  return;
              } //end charlieShoots
              public void aaronShoots()
                   int accuracy = (int)(Math.random()*100;
                   if ( (accuracy > 0) && (accuracy <= 30) )
              }while (duelCount < 10000);
         } //end ShootAtTartget
              int accuracy = (int)(Math.random();

    im having a very
    hard time figuring out what to do with this program..Honestly, in that case you should talk to your teacher.
    like how to write the code to make the program figure
    out who to shoot at based on accuracy. if you have
    any suggestions, i would greatly appreciate it!!
    thanks ahead of time. heres wht i have so far:Again, you should talk to your teacher, and ask him to tell you folks about OO. Charlie et al are all shooters. So a class Shooter with name, health status and accuracy might be appropriate. Shooters shoot at possible targets.
    void shoot(List possibleTargets) {
    - determine target: is alive, has highest accuracy, not self
    - shoot, determine hit
    Store three instances (Charlie, Aaron and the other guy) in an a List, sort it by accuracy (see Comparable), and let each element shoot once, providing the list as an argument (since it's sorted by accuracy already, the check for highest accuracy would be needless), until there's only one person alive left.
    Then create a big loop to run this 10000 times.
    Alternatively to the "isAlive" state, you could simply remove the dead person from the list.

  • How to go about this situation....

    Long story short I made a mistake and opened a title loan on one of my vehicles a few years back. I defaulted on the loan and never paid it back. Just Recently I got a letter asking pay them back in payments. I have the money in full to pay but would like to work on a PFD or even go to the Original Creditor and going around the collection agency.   Fast forward to today I would like to sell this vehicle but do not have the title and I would like to PFD Ad Astra Recovery for the title and possibly removal off transunion and Experian. How would you go about doing a PFD and getting the title back?I would like to do this as quickly as possible as it is easier to sell a car with a title in hand..  Here is what Experian and TU are Reporting. I would also like to avoid them reporting anything to Equifax as they are the onlt CRA that loves me.    **********Experian Shows *********** AD ASTRA RECOVERY SERVIC
    Address: 3611 N RIDGE RD # 104 WICHITA, KS 67205
    No phone number available
    Account Number:XXXXX
    Original CreditorPEEDY CASH 32
    Status: Collection account. $1,165 past due as of Apr 2009. Status Details: This account is scheduled to continue on record until Apr 2013.This item was verified on Apr 2009 and remained unchanged.
    Date Opened:02/2008
    Reported Since: 05/2008
    Date of Status: 05/2008
    Last Reported: 04/2009
    Type: Collection
    Terms: 1 Months
    Monthly Payment: $0
    Responsibility: Individual
    Credit Limit/Original Amount: $1,165
    High Balance: NA
    Recent Balance:
    $1,165 as of 04/2009
    Recent Payment: $0
    Your Statement: Account information disputed by consumer (Meets requirement of
    the Fair Credit Reporting Act).
    Account History: Collection as of May 2008 to Apr 2009 ***************Transunion Shows********************Collection on debt to: 12 Speedy Cash 32
    The collection agency "Ad Astra Rec" was hired to collect a debt of $1,165 originally owed to "12 Speedy Cash 32" on account
    number "XXXXXX".
    Collection agency Ad Astra Rec
    Original balance $1,165
    Current balance $1,165
    Status Not Reported
    Date assigned Feb 28, 2008
    Date reported Feb 09, 2009
    Date last active Not Reported
    Date paid Not Reported
    Date closed Not Reported
    Original lender 12 Speedy Cash 32
    Account number XXXXXX
    Type of account Not Reported
    Account holder Individual
    Type of credit Not Reported
    Payment status Not Reported
    Largest past balance Not Reported
    Amount past due Not Reported
    Account descriptions Not ReportedMessage Edited by GLIGUY23 on 05-12-2009 07:12 PM

    RobertEG wrote:
    The first thing you have to determine is who now legally owns the debt.An OC can do one of two things to affect collection of a debt.  They can sell it to a CA, in which case they have NO more interest in the debt, or they can contract with a CA to collect on their behalf, and retain title to the debt.Who you can contact and negotiate with depends on who owns the debt.Contact the OC and see if they will negotiate with you.  If they will, and you reach an aqgreement with them, they must delete the CA account.  Otherwise, you will have to negotitate with the CA only.  And it is harder to get a CA to agree to a PFD than it is to get a PFD from an OC.I called Speedycash to getsome info from them. I didnt give them any personal info just told them... I received a letter from Ad Astra and was wondering if they are authorized to collect on your behaf. She said they are definetely authorized to collect on their behalf.  I then asked her... Can I just pay you guys the amount and not go through ad astra. She said I would have to call Ad Astra to make Payment Arrangements then come into their facility to pay the amount. I asked if she knew if I paid the amount in full would they remove any derrogetory information from my credit reports. She said that would be completely to Ad Astra.  I am going to call Ad Astra tomorrow and see if i can negotiate a pay for delete if i pay the amount in full.
    I would go through the proper channels of sending a PFD letter instead of calling but I have a potential buyer for the car and I don't want to lose the sale on the car. I guess if all else fails I will pay in full then try goodwilling them. Does anyone have any other suggestions.   

  • Being brand new to FCX I want to purchase Motion5 so as I am able to add a motion template to the start of a video. Can someone please explain in simple terms how I go about this. Looked at tutorials

    Being brand new to FCPX and Motion 5 I want to use a motions template I have bought for a wedding DVD I have shot, so as to place the introductory template at the start of my film. I have looked at tutorials and cant seem to see anything that tells me simply how to achieve this. Do I edit my film as normal in FCPX and then transfer to Motion to add the motion template or visa versa ?? I need a simple answer as I am far from an expert. Can anyone help please.

    what do you mean by 'motion template'?
    as you notice on launch of M5, it offers you different project types.
    when you select 'title', the minute you save it, it's avail on next launch of FCPX in the title-browser.
    same with effects.
    if you like to use M5 for producing a short segment (eg, I created my 'openers' with it, some animation of our soccer-team's logo, the first 4sec in this video), you simply export the final project as a Quicktime-file and add it to some Event in FCPX for future use ...

  • Not sure how to go about this...

    I've been lurking around these forums for awhile now, I also read the installation Wiki. I am on Windows XP, and I have all my data backed up and ready to go. The only Linux distros I've used were Ubuntu and Fedora Core series. They were bloated in my opinion, and I want something minimal that you install from the ground up, so that is why I am here. I have Dell Inspiron 6000, and it has an Intel 2915ABG wireless card in it. I really can't plug this into an ethernet cable, so I'm guessing the network install wouldn't work?
    I really just don't know what to do first, I'm afraid to try and fail miserably. I don't really know what modules are or how to find them, or which ones I'll need to put in where prompted. I really do want to learn so I'm not giving up, but if I could get pointed in the right direction it would be much appreciated.

    Yorak, after running Arch for well over a year on another machine, I have just installed Arch 2007-05 onto a brand new machine, and I can confirm what Fubar said...the install CD does a pretty good job of figuring out what you need and loading it. Inexplicably, the only module it seems to have missed in my system is module "floppy", the floppy disk driver!! I had to manually load that myself - afterwards, I added it to the all important /etc/rc.conf modules list and now it auto loads each time. Another key item you should add there is module "fuse" as well. This enables a number of key new file systems written in user space, like sshfs and ntfs-3g (yes, full read write support for NTFS partitions! Long overdue).
    Arch is likely just what you are looking for. When the installer is done, you have a command line linux install that is up on the net and supporting most of your hardware. From there on, you are on your own. Almost nothing else has been loaded. Do take the installer's advice, and at time of installation, ONLY select the BASE package. That way, you get the smallest, lightest initial install, and YOU are in control of what gets added after that.
    Some quick advice. The Wiki is your friend. You can find "recipes" for almost everything you want to do there. Consult the wiki before posting here for help - it is a FASTER path to solution! Folks here are very helpful, so if you do post here, you will get good answers, but hey, if you can get them immediately by reading the wiki entry, so much the better.
    After your baseline install is up and running, you will likely want to add package xorg, which is the X11 stuff, package mesa, which includes lots of X related extras like glxgears, and a good window manager. If you are looking for "light and fast", I would strongly recommend using XFCE4. This is an excellent window manager, and much lighter than KDE or Gnome. For the ultimate in speed, go to IceWM, but be prepared to configure it via config files - there are few GUI tools. However, the combo of IceWM plus Rox Desktop is unbeatable for raw speed. You type "startx" and it just snaps into existance. It is amazing. I have foregone heavier alternatives like KDE and Gnome and used XFCE4+Rox for well over a year now. It is great - fast, full functional, enough bells and whistles to meet your needs, but not a lot of bloat. A perfect combo.
    Good luck!!

  • TS3694 error 3194, how to go about this?

    i am trying to update my iphone 4s to the newest OS, but I keep getting an error that says error 3194, i have updated my itunes already, what should i do to update my iphone?

    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • I have a MAC 10 and  am trying to import photos from my Kodak Workforce 6 into Photoshop.  Any ideas on how to go about this?

    I have a MAC OS  X and a Kodak Workforce Scanner 6.  I am trying to import photos from the scanner to my Photoshop Elements 11.  Any ideas?

    Perhaps you need to install the optional twain plugin:
    (disregard what it says about using Rosetta (PPC))
    TWAIN not installed | Photoshop Elements 11 and later

  • Is it legal to use other peoples music in a Podcast that is for fee?? Im not sure how to go about this? I have DJ who will mix the music for me, but im not sure that it is legal?? Thanks any guidance would help

    Hi everyone
    I am wanting to create music playlists for free via itunes in the form of a podcast of gym sort of music that can be used by people to listen to whilst working out. Can someone tell me if this is legal to use other peoples music, or songs and change them slightly so they blend into a continuous podcast?? thanks

    To The Fit Guy,
    Absolutely - 100% - NO!!!!!
    You can not take any RIAA / big label music and use it in a podcast.
    A Podcast is a download and downloads are looked at legally as a mechanical copy.
    Just because you purchased a song - it does not give you any rights what so ever to use that in a podcast.
    On top of that - you can not even get licenses for Podcasts to use the music.  As the Soundexchange license used for streaming music does NOT cover downloads. 
    And even if you could get licenses - one of them is working with the Harry Fox agency - they cover mechanical copies - and it is $0.091 per download (copy) for each song.  So if you have a mix of 10 songs in an episode - you would need to pay Harry Fox agency $0.91 per download.
    The only music you can use in a podcast is music considered "Podsafe"
    http://en.wikipedia.org/wiki/Podsafe
    Regards,
    Rob W
    podCast411

  • I just installed a new router and cannot get my ipad to connect now and I have no idea what settings should be or how to go about this

    I just installed a new router and cannot connect with my ipad now.  I have no idea what settings I shold be looking at or how to do this

    you likely need to setup your router using an eathernet cable and a computer to turn on the wifi part and set an encryption level and password or the likes
    if you havent do such things before you may require help from somebody who have
    the router likely comes with an instruction manual how you set it up the first time

  • Help please how to go about this

    Hi,
    I have 2 java programs(one is a servlet and the other is a class file).The class file runs as an application when the main method is used.
    Now I want to call the methods in this class file from the servlet.The servlet is in a folder by name "controller" and the other class file is in a folder called "model".
    I want to call the initDatabase() method from the init() method in the servlet and the validateUser() method in the doPost() method.
    Kindly let me know what can be done.Any help would be gr8tly appreciated.
    Let me know if the codes for the respective program is required.
    Thanks
    as

    You just all the appropriate methods.
    Additional complications can occur, for example perhaps the access permissions are such that you can't call the methods, or the design of the called class is such that its methods can't be independantly invoked like that (i.e., it wasn't designed very well). But there's no way for us to tell whether that's the case here.

Maybe you are looking for

  • Can I get UHD (3840x2160p) @60Hz with full 8bit color (RGB/4:4:4) on HDMI2.0?

    With the latest release of UHD (3840x2160p) TVs, we get some questions about the support on HDMI2.0. And especially about the support for full color in UHD (3840x2160p) at 60Hz. The first gfx cards supporting HDMI2.0 are the Nvidia GTX 970 and GTX 98

  • Help Needed in OM API...

    Hi All, I am trying to cancel a Order using "Process Order" API. When I tried the API to cancel the line the line is getting cancelled but when I passing paramets to "Cancel" the Order it is not happening and the API returns Status "Success" without

  • Safari cannot find the server and question mark in blue square

    Hi I consistently have problems with safari displaying the message safari cannot find the server. The version I have is 5.1.8 and I installed a security update today (23.3.13) hoping it would solve the problem. After refreshing the page a couple of t

  • Mouse losing connection

    My mouse is losing connection with my computer on a regular basis, and regaining it after around 1-2 minutes. The problem is happening every day, sometimes up to 5 times, during which time the mouse is completely unresponsive. I've tried rebooting, t

  • Work with no batery...

    Can I work on my Macbook Pro with no batery? only conect to AC adapter? It's bad to the hardware?