Expert tips, advanced techniques, stuff not in the reference

Hello. I was looking in the reference and searching the forum trying to find out about copying and pasting automation, but I could not find what I needed so I went to the book store and I found one piece of information in the "Logic 6 Power" book, which was the only book on Logic that was in stock. It was listed as an "expert tip." Does anyone know of a book or site or anything that is ALL expert tips. For advanced users only? No fluff?
P.S. This is the expert tip:
The book also gave an "expert tip" on how to copy automation (is it [are they] still called fader events?) between tracks. You hold the command key while switching to another parameter and it asks you what you want to do with the automation.

Hello John Alcock. Thanks for chiming in. I have downloaded all of his Logic personal manuals and I have started reading his automation manual, however I have another post regarding automation going and his assertion that automation data are fader events (or can be) has been countermanded so I'm trying to get to the bottom of that before I place too much stock in him. At this point I believe him. It can get to the point where we are all splitting hairs, but sometimes that is the only way I can really learn something.
P.S. It seems I can only give 2 helpful stars. Rest assured I have given you a gold star in the real world. (Actually you will have to wait until I get to the stationary store.)

Similar Messages

  • AddAnotherRow of Advanced Table, does not make the new row as current row

    Hi OAF Gurus,
    Requirement:
    When user presses 'AddAnotherRow' button on OAAvancedTable, the new row that gets added should become the current row of the underlying VO of the table.
    What’s happening:
    When user presses 'AddAnotherRow' button on OAAvancedTable, the new row is not the current Row(VO’s previous current row retains its current status)
    What I tried by far
    APPROACH #1 - when create row
    In VORowImpl - override create and set this new row as current
    public void create(AttributeList attributeList)
    try
    super.create(attributeList);
    // PSUDO CODE
    am = this.getApplicationModule
    vo = am.findViewObject("OAAdvancedTableVO1");
    vo.setCurrentRow(this) // this should set the new row to current.
    But VO's current row is still the old current row and not this new row.
    APPROACH #2 - when insert Row
    I thought that AddAnotherRow , internally must be doing a create() then an insert() row on the VO, so i overridden the insertRow(row) of the VO
    public void insertRow(Row row)
    super.insertRow(row);
    this.setCurrentRow(row)
    System.out.println("COMMENT insert called .............................................");
    But this method is never called by the framework.
    ***Please help me make the newly created row on the OAAdvancedTable using 'AddAnotherRow' (out of the Box) , as the currentRow of the underlying VO***
    Thanks
    Chaitanya

    Thanks a lot Chris.
    I have used your code and it works perfect.
    Now I am not using the out-of-the-box AddAnotherRow, as it does not make the newly added Row as 'currentRow' of the VO
    I have used the following code by Chris and it solves the issue.
    1. Determine the number of already displayed rows on the table
    OAAdvancedTableBean tableBean = (OAAdvancedTableBean) webBean.findChildRecursive(tableID);
    int rowsDisplayed = tableBean.getNumberOfRowsDisplayed();
    replace tableID with the actual value.
    2. I have the following routine to create the row and set it as the current row.
    OAViewObject viewObject = (OAViewObject) findViewObject(viewObjectName);
    int rowCountInRange = viewObject.getRowCountInRange();
    Row row = viewObject.createRow();
    int insertIndex = rowCountInRange;
    if (rowCountInRange == rowsDisplayed) {
    insertIndex = rowCountInRange - 1;
    viewObject.insertRowAtRangeIndex(insertIndex, row);
    viewObject.setCurrentRow(row);
    Thanks again all of you for help
    Regards
    Chaitanya

  • Advanced Table does not refresh after database level action

    Hi,
    I have a page which has an advanced table. I update the advanced table from the page do some validations, update some DB level columns(also part of advanced table) and see that the changes are saved to the DB but the advanced table does not show the updates done at the DB level.
    I tried clearing the VO Cache and re-executing the VO but still it does not refresh the Advanced table data.
    This is very critical requirement for the client, any inputs will be greatly appreciated.
    Thanks a lot in Advance.
    Here is the code snippet from my CO's processRequest:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAAdvancedTableBean tblbean = (OAAdvancedTableBean)webBean.findChildRecursive("recasttable");
    if(tblbean!=null)
    tblbean.setRendered(true);
    OAApplicationModule tblam = (OAApplicationModule)am.findApplicationModule("RecastLineAM1");
    tblam.invokeMethod("initQuery");
    tblbean.getTableData();
    Here is my AM - initQuery() code:
    public void initQuery()
    //clearVOCaches("RecastLineEO",true);
    clearVOCaches(null,true);
    getRecastLineVO1().init();
    Here is the VO - init() code:
    public void init()
    System.out.println("****************************executing...");
    OADBTransaction tx = (OADBTransaction) getApplicationModule().getTransaction();
    if (tx.getTransientValue("RECAST_ID") !=null)
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("recastId: "+ recastId);
    setWhereClause("RECAST_HDR_ID = :1");
    setWhereClauseParams(null); // Always reset
    setWhereClauseParam(0, recastId);
    executeQuery();
    }

    hi,
    This is how I am calling a DB package. the package does updates on the table. once done I am issueing a commit and requerying the data, however the vo is not getting refreshed.... Can someone point out what am I missing... why is the VO not getting refreshed....
    This is very critical...
    Thanks
    Srini
    public void validateRecast(String respKey)
    OADBTransaction tx = (OADBTransaction)getApplicationModule().getTransaction();
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("*********************validateRecast().RecastId: " + recastId);
    OracleCallableStatement ocs = null;
    Connection conn = tx.getJdbcConnection();
    String strOut="", strErr="";
    Number respId = null;
    try
    respId = new Number(respKey);
    catch(Exception e)
    throw new OAException("Invalid Responsibility");
    String stmt = "BEGIN " +
    "GE_RECAST_UTILS_PKG.validate_recast(:1,:2,:3,:4); " +
    "END;";
    try
    ocs = (OracleCallableStatement)conn.prepareCall(stmt);
    ocs.setNUMBER(1,recastId);
    ocs.setNUMBER(2,respId);
    ocs.registerOutParameter(3,OracleTypes.VARCHAR);
    ocs.registerOutParameter(4,OracleTypes.VARCHAR);
    ocs.execute();
    strOut = ocs.getString(3);
    strErr = ocs.getString(4);
    ocs.close();
    System.out.println("Returned with: " + strOut);
    if(strOut.equalsIgnoreCase("ERROR"))
    //throw new OAException(strErr);
    tx.putTransientValue("ERROR",strErr);
    tx.commit();
    getApplicationModule().clearVOCaches("RecastLineEO",true);
    RecastLineVOImpl lineVo = (RecastLineVOImpl)getApplicationModule().findViewObject("RecastLineVO1");
    lineVo.init();
    System.out.println("===============RecastLnId: " +lineVo.first().getAttribute("RecastLnId"));
    System.out.println("===============Product Line: " +lineVo.first().getAttribute("ProductLine"));
    catch(SQLException e)
    tx.rollback();
    if(ocs!=null)
    try
    ocs.close();
    }catch(SQLException e1)
    throw OAException.wrapperException(e1);
    throw OAException.wrapperException(e);
    }

  • What is the reference for unplanned goods issue?

    Hi,
    Gurus
    I have qurry on material issue .
    normally we issue the material to the production order through Picklist.here it is the planned issue.up to here it is ok.
    But if we want extra material against prod.order which is not in prod. order,we are not getting the reference like sales order.
    also management is interested in the material like this which issued as unplanned.how can we do it?
    Sir its very urgent.
    Regards
    vilas

    hi,
    shrikant,
    no that is not my qurry.
    in our scenario our store person see the hard copy of picklist,and then he ll issue the material to production order.here up to this it is ok.
    but suppose at the last moment if they required some extra material for that particular fert item for that order,but that extra material is not in  std bom.then what ll be the subseqent document ,on that basis store person ll issue the material.becos that material ll not be in std pick list,becos that ll be unplanned issue.
    regards
    vilas

  • The reference and program monitor

    hi..
    i want to know why when i use the reference monitor and the program monitor, cant play the sequence at the same time in the two monitors.. only play in the program monitor, and only play in the two monitor if drag the playhead in the timeline.. i want to know if is it a feature of the Premiere or if is a bug...
    Thanks..
    Sorry by my english.. Im learning by sms..

    This is currently a "feature".   Unfortunatey Premiere Pro seems to be coded to only output to the Program Monitor and not to the reference monitor in real time.  
    PLEASE complete the feature request and ask for this.  Lots of us want this and the more people ask, the more likley we are to get it.....
    https://www.adobe.com/cfusion/mmform/index.cfm?event=processform&name=wishform

  • I do not have the people and media tabs to allow me to import photos from my iPhotos ,i only have the elive, quick,  guided and expert tabs, can anyone help please?

    Hi,
      Im having problems importing from my iPhotos, i just bought photoshop elements 13 and mac book at the same time and am on a bit of a learning curve, i noticed that on all tutorials there were People and Media tabs which i cannot see, all i can see is elive, Quick, Guided and Expert, can anyone please help?
    Many Thanks In advance
    Nicol

    Elements consists of two separate but interrelated programs: the editor, where you work on your photos, and the organizer, which you can use to organize them. You are looking in the editor. To see the organizer, click the organizer button in the welcome screen or at the bottom of the editor.
    Now, do you want to keep your photos in iphoto or in the organizer? That's a choice you must make, sooner or later. The organizer does include a get photos from>iphoto command, but that will copy all the photos in your iphoto library to a new location and make organizer databases for the copies. Is that what you want to do, or do you want to use iphoto to organize your photos, in which case you would not use the PSE organizer?

  • Please help! I do not see the songs on my iphone when it's connected to my computer .  I want to transfer the songs back / forth.  thanks in advance.

    Please help! I do not see the songs on my iphone when it's connected to my computer in Itunes.  I want to transfer the songs back / forth.  thanks in advance.

    iOS 7.1 update requires approximately 350MB's of storage space.
    Tap Settings > General > About > Available to see free storage space.
    Very important to never allow the free storage space to fall below at the very least 500MB's or your iPhone may not boot.
    You need to free up storage space on your iPhone for future updates as well.
    Help here >  6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch

  • Advanced APEX Tips and Techniques (tool tip, VCF), queries...

    Hi everyone,
    First of all, I would like to thank the community for their help.
    I have been working with APEX since a few months (December) ago, since then it has captivated most of my attention, because of what can be done with it…
    This time I would like to ask for your advice about some new topics (tool tip and VCF or saving contacts) in regard to APEX, I created a calendar application –works as it meant to be- but now got some question to which I have not yet found an answer, (I have already looked on some online info).
    1). Regarding to tool tip: as I mentioned before I have created a calendar application, and on it I am linking the events (specifically on calendar region) on it to some other pages, in the link that leads to the page I have put this:
    select '<a title="TGB SCHEDUL" href="f?p=&APP_ID.:5:' || :APP_SESSION || '::::P5_ID: ' || ID || '">' || EVENT_NAME|| '</a>
    ' EVENT_NAME, START_DATE
    from APP_TGB
    This script does what it is meant to do link to a specific page. As I understand tool tip, if I want some message I have to place the comments on the title=''#COMMENTS#'' as I am using mozilla, as you can see I have a phrase and I would like to adjust it to every event in particular, I thought in using bind variables, so I look in google about how to create it, found how to... but no where to apply.
    2). In concern to the VCF, I saw an example and tried to adjust it to my needs, but apparently I have done something inappropriate.
    DECLARE CURSOR member_cur IS
    SELECT id, quarter_fy08, kind_of_campaign, event_name, owner, partner, associationcollaboration, location, presales, marketing, chanel_manager, territory_manager, start_date, end_date, list, emailing, telemk, status, source_code_omo, attendees, leads, opps, budget, pipe_estimado, objetives, comments
    FROM app_tgb
    WHERE id = (
    SELECT ' f?p=&APP_ID.:5: '||:APP_SESSION||'::::P5_id: '||id||' '
    FROM APP_TGB
    BEGIN
    htp.init; -- wipe out the buffer
    owa_util.MIME_HEADER('text/x-vcard; method=request');
    for member_rec in member_cur loop
    --Get the member information
    htp.print('BEGIN:VCARD');
    htp.print('VERSION:3.0');
    htp.print('Event Details:');
    htp.print('Event ID (consecutive number):' || member_rec.id);
    htp.print('Quarter FY:' || member_rec.quarter_fy08 || ';;Event Name:' || member_rec.event_name ||';;Kind of Campaign:' || member_rec.kind_of_campaign);
    htp.print('Start date:' || member_rec.start_date ||';;End date:' || member_rec.end_date ||';;Location:' || member_rec.location);
    htp.print('Partner:' || member_rec.partner ||';;Association/Collaboration:' || member_rec.associationcollaboration);
    htp.print('Owner:' || member_rec.owner ||';;Marketing:' || member_rec.marketing ||';;Presales:' || member_rec.presales);
    htp.print('Chanel Manager:' || member_rec.chanel_manager ||';;Territory Manager:' || member_rec.territory_manager);
    htp.print('Call for Entries:');
    htp.print('List:' || member_rec.list ||';;Emailing:' || member_rec.emailing ||';;Telemk:' || member_rec.telemk);
    htp.print('Event status:');
    htp.print('Status:' || member_rec.status ||';;Emailing:' || member_rec.emailing ||';;Source Code (OMO):' || member_rec.source_code_omo);
    htp.print('Investment & Results:');
    htp.print('Attendees:' || member_rec.attendees ||';;Leads:' || member_rec.leads ||';;Opps:' || member_rec.opps);
    htp.print('Budget:' || member_rec.Budget ||';;Pipe Estimado:' || member_rec.pipe_estimado ||';;Objetives:' || member_rec.objetives);
    htp.print('Comments:');
    htp.print('Comments:' || member_rec.comments);
    htp.print('REV:20050707T234724');
    htp.print('END:VCARD');
    end loop;
    END;
    3). Referring to user groups, I have read on chapter 8, that creating groups I will be able to restrict access to various parts of an application, so I did create them and applied them but once again something happens.
    Re: authorization scheme methods/techniques
    What I am trying to do with the users, is to restrict their access to specific pages, so for example let's say that I do have these pages.
    Start, calendar, insertion, update and report, on the start page I have a link to the insertion page, that I want it to be accessed just by those users who have some privileges (which I understand can be done with groups, to manage who can access to a page and who can not.), and to allow other user to go around to the allowed areas.
    I do appreciate any kind of help or guidance.
    Best regards,
    Jaison José González Chaux

    ABOUT VCF IN APEX
    Hi everyone,
    This time I will like to ask you for some advise in regard to VCF, the picture is this.
    VCF in theory is working and on practice is working more or less… I say more or less because of this…
    This is a small idea of my application.
    I have a test application on APEX that is a calendar to insert data, on the page where I do have the calendar I have some hyperlinks for insertion and for viewing the reports, and on the calendar itself I do have a link for updating the event.
    I have assigned the VCF file to the updating page (page that is linked from the calendar) and bring in the values that are meant to be, in theory it should create the VCF file well but it does not.
    The only way it does create the VCF file is when I insert a new registry, click insert and then on the status bar of the browser (in my case mozilla firefox) hit the back button, then the VCF file is created as it’s meant to be.
    I will appreciate if anyone can give me a hint, a suggestion, anything :)
    I will attach the code I use for the VCF file.
    declare
    cursor user_cur is
    select ID, OWNER
    from APP_TGB
    where ID = :p2_ID;
    l_ID number;
    l_OWNER varchar2(60);
    begin
    htp.init; -- Wipe out the buffer
    owa_util.MIME_HEADER('text/calendar; method=request');
    -- Get the event information
    htp.print('BEGIN:VCALENDAR');
    htp.print('PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN');
    htp.print('VERSION:2.0');
    htp.print('METHOD:PUBLISH');
    htp.print('BEGIN:VEVENT');
    htp.print('ORGANIZER:MAILTO: [email protected]');
    htp.print('LOCATION: Application ' || :APP_ID);
    htp.print('TRANSP:OPAQUE');
    htp.print('SEQUENCE:0');
    htp.print('Today is: ' || to_char(sysdate, 'yyyy-mm-dd') || ' ' || to_char(sysdate, 'hh24:mi:ss'));
    htp.print('OWNER: (' || nvl(v('P2_OWNER'),l_OWNER) || ') ');
    htp.print('PRIORITY:5');
    htp.print('CLASS:PUBLIC');
    htp.print('BEGIN:VALARM');
    htp.print('TRIGGER:PT60M');
    htp.print('ACTION:DISPLAY');
    htp.print('DESCRIPTION:Reminder for account expiring');
    htp.print('END:VALARM');
    htp.print('END:VEVENT');
    htp.print('END:VCALENDAR');
    end;
    The distribution of my pages is the following:
    1. pag_inicio, the form of referring to it is p1_”any-atribute”… on this page there are the hyperlinks (insertion and report viewing) and the calendar itself.
    2. pag_insertion, the form of referring to it is p2_”any-atribute”… on this page there are the insertion fields and a VCF button, create and cancel ones.
    3. pag_update, the form of referring to it is p3_”any-atribute”… on this page there are the fields where the information is brought up, and a VCF, update and cancel buttons.
    4. pag_report, the form of referring to it is p4_”any-atribute”… on this page you can see the fields in a report format.
    5. checking_events, the form of referring to it is p5_”any-atribute”… this page is like the updating one, but with letting the user modify any value, it has a VCF.
    6. pag_VCF, where the VCF code is.
    I do appreciate your help and guidance.
    Best regards,
    Jaison J. González Chaux

  • Who worked with ICS' Model 4896 GPIB? I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    Hello. Most of the engineers in developer exchange are more familiar
    with NI products. Contacting ICS for technical support is a better
    course of action.

  • I do not have the 'Advanced' tab on the menu bar. I am trying to change ringtone on my iphone 4s. Have done the following: Right cick on song, entered the start and stop times, but unable to proceed as need 'Advanced' tab in order to change to option.

    I do not have the 'Advanced' tab on the menu bar. I am trying to change ringtone on my iphone 4s. Have done the following: Right cick on song, entered the start and stop times, but unable to proceed as need 'Advanced' tab in order to change to option.

    You don't need to upgrade your software.  But if you're struggling with Spry, IMO you should cut your losses and switch to something better for the longrun.
    If you have a budget to work with, I highly recommend Project Seven's Pop-Menu Magic 3.  It's easy to use in DW CS4, 5, 6 or CC.  More importantly, it's bullet proof and works in all devices. 
    Pop-Menu  Magic3 by PVII (commercial DW extension)
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    If you don't have a budget to work with, you can roll your own menus with jQuery plugins.  A bit more effort on your part, but they perform better than Spry.
    jQuery Superfish
    http://users.tpg.com.au/j_birch/plugins/superfish/
    jQuery MegaMenu2
    DEMO:
    http://www.geektantra.com/projects/jquery-megamenu-2/
    DOWNLOAD:
    http://code.google.com/p/jquery-megamenu/
    Nancy O.

  • I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (games, Instagram),

    I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (Games, Instagram), would my pics show up on Instagram and would my Games show it was saved and the acccomplisments will remain from the last place I left out.

    Davin12 wrote:
    I know that iCloud backs-up apps and other stuff to your phone incase you want restore from a back-up if you start a New iPhone. My question is if I start a new iPhone (not use the restore from back-up option) and redownload apps like (Games, Instagram), would my pics show up on Instagram and would my Games show it was saved and the acccomplisments will remain from the last place I left out.
    Icloud or itunes backup, only backs up app data, not the app itself.
    so if you restore as new, then there is no app data on your phone, you start out new...

  • HT1751 I have moved my library from an external hard drive into my laptop music file but I am not able to open i-tunes when holding down the shift key as advised in step 4 and thus not seeing the library option box - any tips please??

    I have moved my itunes library from old computer to portable hard drive and then on, into new laptop, in music file. However I am then unable to open I-Tunes when holding down the shift button as directed in step 4 - this means I am not seeing the library choice box and cannot synch the tunes into ITunes library - any tips please?........Alan

    Close iTunes. Click the icon to launch iTunes and immediately press and hold down the left shift key. Keep holding until prompted to choose or create a library. If iTunes opens normally, close it,  and try again.
    tt2

  • HT1414 When I search for stuff on the internet it says safari could not open the page because the server stopped responding and non of my games work either. What do I do to fix this?

    When I search for stuff on the internet it says safari could not open the page because the server stopped responding and non of my games work either. What do I do to fix this?

    Settings → scroll down to Safari → in Safari settings, I selected both Clear History and Clear Cookies and Data.
    IF that does not work -
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Finally - if problem still present -
    Go to Settings>General>Reset
         Reset the network settings - you will need to add the password of your home WiFi in your phone once more
    The device should turn itself off & back on then go into Settings>Wifi and join your network

  • I can not do the update , what should I do to fix this error ? "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    I can not do the update , what should I do to fix this error ?
    "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    Hi,
    Please refer to the help document below:
    Error downloading, installing, or updating Creative Cloud applications
    Regards,
    Sheena

  • The next link of advance table is not working ??

    Hi,
    The next link and also all properties of the advance table is not working as soon as i click on the next link the page gets hanged no other components of the page not working
    i have two regions one is advance table region and one is default double column for showing all buttons in one row plz help..
    regards
    Dips (paddy)
    Edited by: 918001 on Feb 29, 2012 10:24 PM

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

Maybe you are looking for

  • Changing database connection in bpel process

    Hi i have a problem and three different choices. Problem: i have an application made in oracle forms that calls an oracle bpel process and interacts with the database. the problem is that i have 3 differents databases with differents users to impact

  • Three questions about X-FI XTREME MUSIC.

    Hey guys, So I've bought X-FI XtremeMusic PCI from a second hand yesterday and installed with newest drivers on my windows xp 32bit SP3. Everything seems to be fine. The sound is just brilliant ( for me - audigy user for last uhm... 7 years ). But th

  • How to Delete Tax Codes

    Hi, i need to delete un wanted tax codes from the system.Kindly help me in which trarnsaction do i need to do this to Delete un-wanted tax codes from the system Thanks Supriya

  • Raw Photo Download

    I cannot download raw photos from a Nikon D800 camera into the newly downloaded trial Photoshop CS6?

  • Help with testing server

    Ok I may have been a little dramatic about getting fired. But I have a problem. I am trying to create a register page. I need to set up a test server right? I use a hosting site online. Now here is the problem: I don't know how to set it up! I need t