Please comments on this site...

We will appreciate your suggestions on this site :
http://www.qphotels.com
Thanks in advance,

Hi
Very nice, like the look and feel of the navigation. I
Especially like, that the site doesn't reload on Language changes,
very often sites reload to the homepage to refresh language/option
changes.
I agree with the use of RED, its quite 'in your face' maybe a
softer tone would be better.
Cool, Very Cool - Keep up the good work.

Similar Messages

  • Please comment if this is a BUG in MII 12.2 or Normal?

    Hi,
    MII Version in Use:- 12.2.2 Build(235)
    I am trying to use "TransactionPath" function from Link editor to obtain the path for current transaction. Now when I execute this transaction from workbench, everything works fine as expected and desired.
    The problem comes when I run this transaction using Runner service.
    I mapped the result of TransactionPath function to an output variable and then checked its value using runner service, and the output was a blank tag(for my output variable). The bigger problem comes when I try to implement some string functionality on the output of TransactionPath function. At this the transaction fails becaue the links that hold string operation fails(and thats because TransactionPath is returning null value).
    Also, Just to proof check that my transaction, runner service URL and mappings etc are correct, I changed the TransactionPath function to TransactionId function and then I started getting result in my output variable tag in output xml. Thus with every refresh that I did , the transaction ID increased by 1 value.
    Please comment if this a known issue or bug or there is something that I am missing or this is a expected result for some reason !!
    Best Regards
    Piyush Govil

    Hi Piyush,
    I also checked that the transaction path is not coming in the output xml but from the workbench with a tracer it is working fine.
    I also verified that all other things are coming as they should but not the transaction path.
    Regards,
    Anuvrat

  • RFEBLB03 please comment on this file as it has no documetation.

    RFEBLB03 please comment on this file as it has no documetation.

    Hi Anji,
             Could you please tell why this program is used at all and how do I expect the data to arrive?? Is conversion required after this and where am I supposed to update the converted data??

  • Please comment on this laptop

    http://www.laptopmag.com/review/laptops/lenovo-ideapad-y580.aspx
    Please comment on the pluses and minuses of the above laptop for use with CS5 or CS6
    Am thinking of buying it to use when travelling.
    Thanks,
    Michael

    I have an Asus N56 running Windows 8, it has a quad core i7 3630QM 2.4GHz CPU with 8Gb RAM and a 2Tb hard drive partitioned into two.  Graphics are nVidia 650 with full 1920x1080 native resolution
    It now has m/soft Office plus Edius and CS5.5 Production Premium installed on it and it runs all programmes just fine.
    No it does not have a 7200rpm drive as standard but it does have 4 USB3 ports, HDMI output and I know that on the Asus forums guys have swapped over the optical drive for a second hard drive.
    But, it works, it is far better made than Lenovo, the sound quality is also great (it has its own plug in subwoofer).
    In the UK this cost me £830 three months ago.
    Just to re-iterate, it works for editing straight out of the box, yes for very complex edits it may struggle but for day to day straightforward tasks it works just fine.
    After Effects does not seem to struggle with what I have been doing with it so far.
    The laptop spec that Harm has given you is very good, but in a laptop you do get what you pay for.
    If you have a look at Asus G75 gaming laptops you will find a spec more like Harm has described, the downside, in the UK that these are about £1500
    Good luck and please let us know how you get on.

  • Hi Gurus, please comment on this rant

    Hi gurus,
    I got into a heated argument with a guy on the yahoo PowerBuilder group about which whether we should use existing database functionalities or PB functions. Of course each will do its own job in a better way. I gave an example in Oracle in which I said I can simply use select thisDate - thatDate from t to get the exact days to the fraction that I always need, whereas in PB I have to use daysAfter(date1, date2), plus secondsAfter(time1, time2) plus * this and / that. This guy is getting rediculous and mad and sent me the following comment:
    "With Oracle being an expensive "per seat" database, I've had clients develop on another platform that's free or considerably less expensive..."
    "All the database is is a repository for data, basically to logically relate data to other data. IT IS NOT and never was intended to be a processing platform but due to old machine limitations 20 years ago while mainframes (Unix based) were powerful, vendors saw that as a way to capture clients. Over the years, things change and DBMS vendors still hype stored procedures while in reality, they have little place any longer. PC's are fast and often faster than the servers the DBMS runs on, memory is dirt cheap and hard drives are huge. Not the case even 10 years ago let alone 20. The only DBMS vendor that has kept up with the industry IS Oracle. Sybase used to be bigger than Oracle but not the case even if one just considers only Oralce's database presence.
    Most DBA's will tell you that stored procedures are not really viable anymore..."
    Maybe Tom Kyte can teach him a good lesson!
    Thanks.
    Ben

    Hi Rajan,
    In your program you have to tune the program so that it takes litlle bit time.
    In you all quaeries you used select *, if you requied all fileds of table , then it is OK.
    otherwise create structure for each table whcih contanining the fields that u want in your quarries.
    For example,
    Types:begin of ty_makt,
              spras type makt-spras,
               matnr type makt-matnr,
              maktx type makt-maktx,
              end of ty_makt.
    data:it_makt type ty_makt,
           wa_matk type ty_makt.
    Like this u create internal table & work areas.
    So this will reduce datbase fetching.
    Also whereever requied use range
    For exapmle:instead of  parvw in ('AG', 'WE') , use parvw in rg_parvw like this.
    use sorted table with indexing for loop, It takes little time to run loop.
    for example.
    it_vbrp type sorted table of ty_vbrp with non-unique key vbeln posnr matnr,
      CLEAR w_tabix.
      READ TABLE it_vbrp INTO wa_vbrp INDEX w_index.
      IF sy-subrc EQ 0.
        w_tabix = sy-tabix + w_tabix.
    Vbrp loop start *******************
        LOOP AT it_vbrp INTO wa_vbrp FROM w_tabix.
       ur coding
      endloop.
    endif.
    Or u can used hased tabel also.
    Check  ur program with se30 tcode, check whether coding takes time or datbase fetching.
    Then do tune the program accordingly.
    Thanks & Regards,
    Anagha Deshmukh

  • Please comment on this geneology DTD

    im trying to build a little sample XML application which i hope i can use to store my family history. here is the DTD
    comments ?
    <!ELEMENT family_tree (family_member)*>
    <!ELEMENT family_member (comments,(spouse)*,children)>
    <!ATTLIST family_member firstName CDATA "">
    <!ATTLIST family_member middleName CDATA "">
    <!ATTLIST family_member lastName CDATA "">
    <!ATTLIST family_member birthDate CDATA "">
    <!ELEMENT comments (#PCDATA)>
    <!ELEMENT spouse (comments)>
    <!ATTLIST spouse firstName CDATA "">
    <!ATTLIST spouse middleName CDATA "">
    <!ATTLIST spouse lastName CDATA "">
    <!ATTLIST spouse birthDate CDATA "">
    <!ELEMENT children (child*)>
    <!ELEMENT child (spouse*,children)>
    <!ATTLIST child firstName CDATA "">
    <!ATTLIST child middleName CDATA "">
    <!ATTLIST child lastName CDATA "">
    <!ATTLIST child birthDate CDATA "">

    Why not use the GEDCOM DTD?
    http://xml.coverpages.org/ni2002-12-28-a.html

  • Please comment on this !

    Dear All ,
    I asked a question in my last post , that remains unanswered to me . i would like to ask it again that 'What is memory dump' , actually i joined a new orginsation and my senior asked this to me , but I had no clue , because I never come across about memory dump.
    Hare Krishna
    Alok

    You could choose to manually dump the content of memory using the command. Better do that under instruction of Oracle support as the memory dump is not that useful for general public.
    Memory dump will also happen automatically after Oracle run into some exceptions usually a bug.
    There's really nothing you can do to avoid this because it's not really a configuration problem. It's Oracle internal problem. You could choose to turn off the auto memory dump but that not recommended because the dump file has useful information for Oracle support to troubleshooting the problem.

  • Send SOAP DIME Attachment (please comment on my sample code)

    Hi All,
    I had hard time trying to find a send SOAP DIME attachment
    code for the web service. And here it is, I wrote one,
    but I use to easy way to deploy the service.
    I just simply change the extension .java to .jws,
    so, can you all tell me whether it will be a problem or not ?
    And please review my code below, I debugged and no error,
    but I am not sure if it is working right.
    Basiclly 2 operations:
    public String generateID(int artID)
    public File detachFile(String filename)
    Please comment on this code, I am trying to make it
    more robust, so, that I can redo it and post it to share with
    everybody.
    thanks,
    Derek
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.io.*;
    import java.security.*;
    import java.security.NoSuchAlgorithmException;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.xml.soap.AttachmentPart;
    import org.apache.axis.AxisFault;
    import org.apache.axis.Message;
    import org.apache.axis.MessageContext;
    import org.apache.axis.attachments.Attachments;
    import org.apache.axis.attachments.AttachmentsImpl;
    import org.apache.log4j.Logger;
    public class AttachmentYPMG
         private static final Logger _logger = Logger.getLogger(AttachmentYPMG.class);
         public AttachmentYPMG()
         public String generateID(int artID)
              String artid = Integer.toString(artID);
              String md5_hash_string = plainStringToMD5(artid);
              return md5_hash_string;
         private String plainStringToMD5(String input) {
                // Some stuff we will use later
                MessageDigest md = null;
                byte[] byteHash = null;
                StringBuffer resultString = new StringBuffer();
                // Bad things can happen here
                try {
                  // Choose between MD5 and SHA1
                       md = MessageDigest.getInstance("MD5");
                } catch(NoSuchAlgorithmException e) {
                    System.out.println("NoSuchAlgorithmException caught!");
                    System.exit( -1);
                // Reset is always good
                md.reset();
                // We really need some conversion here
               md.update(input.getBytes());
                // There goes the hash
                byteHash = md.digest();
               //  Now here comes the best part
                for(int i = 0; i < byteHash.length; i++) {
                  resultString.append(Integer.toHexString(0xFF & byteHash));
              // That's it!
              return(resultString.toString());
         public File detachFile(String filename)
              InputStream is = null;
              FileOutputStream os = null;
              File file = null;
              int totalAttachments ;
              try
                   //Get all the attachments
                   AttachmentPart[] attachments = getMessageAttachments();
                   * getMessageAttachments() as provided by Steve Loughran in his mail
                   * to axis-user group
                   * http://www.mail-archive.com/[email protected]/msg08732.html
                   //Put the logic in a loop for totalAttachments for multiple
                   // attachments.
                   totalAttachments = attachments.length;
                   _logger.debug("saveFile(String filename = " + filename + ") - " +
                                  "Total Attachments Received Are: "+ totalAttachments);
                   //Extract the first attachment. (Since in this case we have only one attachment sent)
                   DataHandler dh = attachments[0].getDataHandler();
                   //Extract the file name of the first attachment.
                   String name = filename;
                   _logger.debug("saveFile(String filename = " + filename + ") - File received on server is: " + name);
                   //Get the streams to file and from attachment, then stream to disk
                   is = dh.getInputStream();
                   file = new File(name);
                   os = new FileOutputStream(file);
                   this.writeBuffersAndClose(is, os);
              } catch (Exception e)
                   _logger.error("detachFile(String filename = " + filename + ")", e);
                   //throw new AttachmentException(e);
              //if(file!= null)
                        return file;
              //else
                   //throw new AttachmentException("The attachment was not saved");
         * extract attachments from the current request
         * @return a list of attachmentparts or an empty array for no attachments
         * support in this axis buid/runtime
         private AttachmentPart[] getMessageAttachments() throws AxisFault
              * Reusing the method implementation for AttachmentPart[]
              * getMessageAttachments() as provided by Steve Loughran in his mail to
              * axis-user group
              * http://www.mail-archive.com/[email protected]/msg08732.html
              MessageContext msgContext = MessageContext.getCurrentContext();
              Message reqMsg = msgContext.getRequestMessage();
              Attachments messageAttachments = reqMsg.getAttachmentsImpl();
              if (null == messageAttachments)
                   System.out.println("no attachment support");
                   return new AttachmentPart[0];
              int attachmentCount = messageAttachments.getAttachmentCount();
              AttachmentPart attachments[] = new AttachmentPart[attachmentCount];
              Iterator it = messageAttachments.getAttachments().iterator();
              int count = 0;
              while (it.hasNext())
                   AttachmentPart part = (AttachmentPart) it.next();
                   attachments[count++] = part;
              return attachments;
         * Simple method for writing one stream from another.
         * @param is
         * @param os
         * @throws IOException
         private void writeBuffersAndClose(InputStream is, OutputStream os)
              throws IOException
              int i = 0;
              byte [] buffer = new byte[1024];
              while (i != -1)
                   i = is.read(buffer, 0, buffer.length);
                   if(i > 0)
                        os.write(buffer, 0, buffer.length);
              is.close();
              os.close();

    Hi All,
    I had hard time trying to find a send SOAP DIME attachment
    code for the web service. And here it is, I wrote one,
    but I use to easy way to deploy the service.
    I just simply change the extension .java to .jws,
    so, can you all tell me whether it will be a problem or not ?
    And please review my code below, I debugged and no error,
    but I am not sure if it is working right.
    Basiclly 2 operations:
    public String generateID(int artID)
    public File detachFile(String filename)
    Please comment on this code, I am trying to make it
    more robust, so, that I can redo it and post it to share with
    everybody.
    thanks,
    Derek
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.io.*;
    import java.security.*;
    import java.security.NoSuchAlgorithmException;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.xml.soap.AttachmentPart;
    import org.apache.axis.AxisFault;
    import org.apache.axis.Message;
    import org.apache.axis.MessageContext;
    import org.apache.axis.attachments.Attachments;
    import org.apache.axis.attachments.AttachmentsImpl;
    import org.apache.log4j.Logger;
    public class AttachmentYPMG
         private static final Logger _logger = Logger.getLogger(AttachmentYPMG.class);
         public AttachmentYPMG()
         public String generateID(int artID)
              String artid = Integer.toString(artID);
              String md5_hash_string = plainStringToMD5(artid);
              return md5_hash_string;
         private String plainStringToMD5(String input) {
                // Some stuff we will use later
                MessageDigest md = null;
                byte[] byteHash = null;
                StringBuffer resultString = new StringBuffer();
                // Bad things can happen here
                try {
                  // Choose between MD5 and SHA1
                       md = MessageDigest.getInstance("MD5");
                } catch(NoSuchAlgorithmException e) {
                    System.out.println("NoSuchAlgorithmException caught!");
                    System.exit( -1);
                // Reset is always good
                md.reset();
                // We really need some conversion here
               md.update(input.getBytes());
                // There goes the hash
                byteHash = md.digest();
               //  Now here comes the best part
                for(int i = 0; i < byteHash.length; i++) {
                  resultString.append(Integer.toHexString(0xFF & byteHash));
              // That's it!
              return(resultString.toString());
         public File detachFile(String filename)
              InputStream is = null;
              FileOutputStream os = null;
              File file = null;
              int totalAttachments ;
              try
                   //Get all the attachments
                   AttachmentPart[] attachments = getMessageAttachments();
                   * getMessageAttachments() as provided by Steve Loughran in his mail
                   * to axis-user group
                   * http://www.mail-archive.com/[email protected]/msg08732.html
                   //Put the logic in a loop for totalAttachments for multiple
                   // attachments.
                   totalAttachments = attachments.length;
                   _logger.debug("saveFile(String filename = " + filename + ") - " +
                                  "Total Attachments Received Are: "+ totalAttachments);
                   //Extract the first attachment. (Since in this case we have only one attachment sent)
                   DataHandler dh = attachments[0].getDataHandler();
                   //Extract the file name of the first attachment.
                   String name = filename;
                   _logger.debug("saveFile(String filename = " + filename + ") - File received on server is: " + name);
                   //Get the streams to file and from attachment, then stream to disk
                   is = dh.getInputStream();
                   file = new File(name);
                   os = new FileOutputStream(file);
                   this.writeBuffersAndClose(is, os);
              } catch (Exception e)
                   _logger.error("detachFile(String filename = " + filename + ")", e);
                   //throw new AttachmentException(e);
              //if(file!= null)
                        return file;
              //else
                   //throw new AttachmentException("The attachment was not saved");
         * extract attachments from the current request
         * @return a list of attachmentparts or an empty array for no attachments
         * support in this axis buid/runtime
         private AttachmentPart[] getMessageAttachments() throws AxisFault
              * Reusing the method implementation for AttachmentPart[]
              * getMessageAttachments() as provided by Steve Loughran in his mail to
              * axis-user group
              * http://www.mail-archive.com/[email protected]/msg08732.html
              MessageContext msgContext = MessageContext.getCurrentContext();
              Message reqMsg = msgContext.getRequestMessage();
              Attachments messageAttachments = reqMsg.getAttachmentsImpl();
              if (null == messageAttachments)
                   System.out.println("no attachment support");
                   return new AttachmentPart[0];
              int attachmentCount = messageAttachments.getAttachmentCount();
              AttachmentPart attachments[] = new AttachmentPart[attachmentCount];
              Iterator it = messageAttachments.getAttachments().iterator();
              int count = 0;
              while (it.hasNext())
                   AttachmentPart part = (AttachmentPart) it.next();
                   attachments[count++] = part;
              return attachments;
         * Simple method for writing one stream from another.
         * @param is
         * @param os
         * @throws IOException
         private void writeBuffersAndClose(InputStream is, OutputStream os)
              throws IOException
              int i = 0;
              byte [] buffer = new byte[1024];
              while (i != -1)
                   i = is.read(buffer, 0, buffer.length);
                   if(i > 0)
                        os.write(buffer, 0, buffer.length);
              is.close();
              os.close();

  • We are sorry, but we are unable to complete your request.•The Office 2007 Product Key provided is already associated with another user on this site. Please log in with the user information originally used with this Office 2007 Product Key.

    Over the years I have had many ISP and email addresses - but now we have  finally gone almost fully virtual...
    I have a live login and MS ID 4 my SkyDrive account but I only use my MS  touch with 8.1, SkyDrive and office 365 for mobility.
    And I still like to backup to my own server!!!
    What would be good is if I can put all the software licenses and product  keys of the software and keep a record of my mac addresses for  hardware  and even static IP's in a file or a secure location within the MS online  store.
    That's where MS wants me to get my computing needs from in future and I  will always be able to retrieve it in future but what about the $$$$$ I have  spent on software, hardware and applications prior to now???
    I know u guys love 2 collect data 4 marketing analysis,
    4 example I have an old PC that is still running a server from last century  - if you knew about it a simple script would allow you to offer upgrades or at  least relevant MS products - UNLIKE the rubbish adds I just turn off or tune out 
    now...
    Why cant I add products previous online email purchases into the 1 MS live  ID account where I can keep it together? If you make that available I don't have  to have separate steam accounts, EA game accounts, ASUS and adobe accounts etc 
    etc.
    What has brought me 2 this is I was looking for my office pro 2007 disks to  rebuild a HOME USE ONLY windows 7 laptop (NO touch screen so 8.1 is no benefit  at all)
    I HAVE 4 Genuine PRODUCT KEYs for Office 2007 BUT EVERY TIME I WENT TO  DOWNLOAD the software - regardless of the key I used - I got the error message:  We are sorry, but we are unable to complete your request.•The Office 2007  Product Key
    provided is already associated with another user on this site.  Please log in with the user information originally used with this Office 2007  Product Key.
    That's crap - This is a clean brand spanker install of Win7 and there was  nothing b4 I put the oem drivers from Toshiba back on.
    I looked at dozens of support pages and forum blogs and tried for hours to  get a copy to download - including incognito and other logins but because my  default PC name is also my MS Windows live ID the same error was repeated.
    I keep away from the non MS sites for these things and with good reason -  there were heaps of similar users with the same issue or very close to it that  had downloaded from a supposed MS copy from eValue or digital river etc and the  next
    thing was total corruption of the OS.
    EVENTUALLY I found a LIVE MS chat on a support site in the US and she gave  me a link to a slightly older version which will need updating and some reg edit  changes but so far, so good.
    The point is - what a crock !
    I should be able to just keep all my software, drivers, updates, service  packs, and versions that I have upgraded in the MS store.
    If Microsoft aren't going to support XP or Office 2003 and eventually 2007,  vista & Windows7 not far behind??? then that's still no excuse for them to  put these restrictions and limits when I OWN my copy of the software!!
    Unlike office 365 and SkyDrive space which is described in the T&C  (that we all read before ticking that radial button to agree of course) as ONLY  under a leased licence.
    IF Microsoft can support AND develop software that supports SQL2000  Servers, why is it so hard to archive and keep the same info for  everyone???

    Over the years I have had many ISP and email addresses - but now we have  finally gone almost fully virtual...
    I have a live login and MS ID 4 my SkyDrive account but I only use my MS  touch with 8.1, SkyDrive and office 365 for mobility.
    And I still like to backup to my own server!!!
    What would be good is if I can put all the software licenses and product  keys of the software and keep a record of my mac addresses for  hardware  and even static IP's in a file or a secure location within the MS online  store.
    That's where MS wants me to get my computing needs from in future and I  will always be able to retrieve it in future but what about the $$$$$ I have  spent on software, hardware and applications prior to now???
    I know u guys love 2 collect data 4 marketing analysis,
    4 example I have an old PC that is still running a server from last century  - if you knew about it a simple script would allow you to offer upgrades or at  least relevant MS products - UNLIKE the rubbish adds I just turn off or tune out 
    now...
    Why cant I add products previous online email purchases into the 1 MS live  ID account where I can keep it together? If you make that available I don't have  to have separate steam accounts, EA game accounts, ASUS and adobe accounts etc 
    etc.
    What has brought me 2 this is I was looking for my office pro 2007 disks to  rebuild a HOME USE ONLY windows 7 laptop (NO touch screen so 8.1 is no benefit  at all)
    I HAVE 4 Genuine PRODUCT KEYs for Office 2007 BUT EVERY TIME I WENT TO  DOWNLOAD the software - regardless of the key I used - I got the error message:  We are sorry, but we are unable to complete your request.•The Office 2007  Product Key
    provided is already associated with another user on this site.  Please log in with the user information originally used with this Office 2007  Product Key.
    That's crap - This is a clean brand spanker install of Win7 and there was  nothing b4 I put the oem drivers from Toshiba back on.
    I looked at dozens of support pages and forum blogs and tried for hours to  get a copy to download - including incognito and other logins but because my  default PC name is also my MS Windows live ID the same error was repeated.
    I keep away from the non MS sites for these things and with good reason -  there were heaps of similar users with the same issue or very close to it that  had downloaded from a supposed MS copy from eValue or digital river etc and the  next
    thing was total corruption of the OS.
    EVENTUALLY I found a LIVE MS chat on a support site in the US and she gave  me a link to a slightly older version which will need updating and some reg edit  changes but so far, so good.
    The point is - what a crock !
    I should be able to just keep all my software, drivers, updates, service  packs, and versions that I have upgraded in the MS store.
    If Microsoft aren't going to support XP or Office 2003 and eventually 2007,  vista & Windows7 not far behind??? then that's still no excuse for them to  put these restrictions and limits when I OWN my copy of the software!!
    Unlike office 365 and SkyDrive space which is described in the T&C  (that we all read before ticking that radial button to agree of course) as ONLY  under a leased licence.
    IF Microsoft can support AND develop software that supports SQL2000  Servers, why is it so hard to archive and keep the same info for  everyone???

  • I keep getting an error message that says "You need cookies to login to this site. Please enable cookies." I checked cookies and they're enabled. I went through and did what it said to fix errors like this and it still says that. How can I fix this?

    I am trying to login to a website and every time I go to login I get a message that says "You need cookies for this site. Please enable cookies." I've checked cookies and they're enabled, I even put that specific website on allow. I searched for information on how to correct this error and did all that it said, yet I still get this message.

    I have the exact same problem! With just one website. It's when I have a second account on it. I can sign in with my original (old) account, but not with my new account that I wish to sign in on. I've talked to a lot of people members of the website who have second accounts and this doesn't happen with them, it's only with my firefox. I've done everything I can to enable cookies, 3rd party cookies, no exceptions, etc.
    But it must be something to do with my computer because I did the same thing on Internet Explorer and Google Chrome and it's exactly the same. :/

  • This site is currently not available... Please try again later

    Hi,
         I had created a site http://budgie.azurewebsites.net/. I was able to successfully access this site. After a couple of days, I had deleted this site. Now, in my azure portal, I no longer see the web site budgie, but accessing the url gives
    me the error "This site is currently not available...  Please try again later".
         What must I do to completely remove this? I need to recreate this site again with the same url.
          I am able to create other azure web sites, and access them.
    Thanks & regards,
    Samuel Philip
    [email protected]
    SamuelPhilip

    Just as the message says, please try again later. This has to do with the fact the Azure hasn't completed purged your website name from their system yet. Besides, the external DNS servers may still holds the name/address reference.
    "Nameserver changes can typically take 0 to 24 hours to take effect, but they are known to take as long as
    48 hours to go into full effect. DNS zone record changes such as A, MX and CNAME records can typically take
    0 to 4 hours to resolve but are known to take as long as
    8 hours to fully propagate."
    Frank

  • When trying to launch iTunes it freezes and I get the message: "Authentication Required. To access this site you need to log in to area "100656 on mellor.co. Your password will be sent in the clear." I am unable to enter a uname or password. Please help!!

    When trying to launch iTunes on my PC running Windows 7 it freezes and I get the message: "Authentication Required. To access this site you need to log in to area "100656 on mellor.co. Your password will be sent in the clear." Because iTunes is frizen at this point I am unable to enter a username or password, or in fact do anything. Please help!! I have uninstalled and reinstalled iTunes numerous times as well as attempting all of the fixes that I could find on-line and still no joy.

    That sounds extremely phishy to me... iTunes does not require authentication simply to launch it. I suspect you've got something nasty intercepting network traffic. That server may be set up to log the Apple ID that you enter so it can be used fraudulently. Try ComboFix from Bleeping Computer.
    FWIW the domain mellor.co is registered to an accountants in Knutsford, Cheshire, UK, and produces the same authentication request if visited with a browser. There is no sign of a "real" publicly visible website at that domain which is a somewhat odd.
    tt2

  • When trying to send a comment to a web site I get a message, Firefox has blocked this site, how can I turn this off?

    when trying to send a comment to discussion sites I get an error message that says "Firefox has blocked this site" actions offered "allow"
    or "X". When I enter "allow" it ignores the command and the message disappears. A lot of wasted thought and typing. How do I turn this feature off.

    See: Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    See: [[Options window - Advanced panel#General_tab]]
    See also: http://kb.mozillazine.org/accessibility.blockautorefresh

  • I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    Goto > Settings > Safari... Enable Cookies > Always
    Good luck!

  • I downloaded a plug-in from this site and it's posting for me on FB. Please jelp me delete.

    I downloaded a plug-in from this site to change the look of my FB profile:
    [http://www.cuvce.com/download/update-fb1.php?h=eNortjI3sVKqSS4tS07VS87PrTHRM0gyNKpJS0oyNEESzigpKVA1dlQ1cgOi8vJyvbTE5NSk_PxssKyhkaWlmYGZkaWJkjVcMHPaGoM, Change Facebook profile ]
    It has since began to post on each of my friends profiles as if it is a wonderful idea and it's not. Please help me delete it. It is not coming up as an application. It also utilized Firefox as a supporter or used its logo along with its promotion. It downloaded Bing as a toolbar as well.

    That sounds like an unusual problem. Did it install as an Extension, or as a Plugin? Check in the Addons Manager, and check to see where it appears. If it appears in the Plugins area, then you can disable the plugin, killing its ability to do anything. If it is an Extension, it will be under the Extension section of the Addon Manager. Select to Uninstall and then allow it to do what needs to be done to remove it from your system. If nothing else works, you could try creating a new profile in Firefox and using it instead.
    For more information about using the Firefox Profile Manager, I suggest you read [http://support.mozilla.com/en-US/kb/Managing%20profiles this] article on the Mozilla Support zone. While it does state that features such as the Profile Manager are for advanced users and developers, it can also be used in situations where an addon installs itself and you have difficulty removing it from a profile.
    I suggest you open a program such as Notepad on Windows (or TextEdit on Mac OS X), and then note down the Extensions and Themes you make the most use of when browsing the internet. Generally, addons such as AdBlock Plus will rank highly on a list such as this, and they tend to be the first extensions I install.
    If you do decide you want to customize your Facebook interface in the future, did you know there are several ways to do so with extensions for Firefox? Using [https://addons.mozilla.org/en-US/firefox/addon/stylish/ Stylish] and [https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ Greasemonkey], as well as their respective sites (Userstyles and Userscripts, respectively) can allow you to find some methods for tweaking your Facebook profile. Note that these customizations are local to you, as are the ones you initially attempted to install. In other words, they are only visible on your computer.
    For example, if you were to customize your Facebook on your PC, and then use a friend's computer, you would not see the customizations, even if they were using Firefox as well. This means you can have your Facebook profile how you want it, without making it harder for others to see. I hope this is of help, and thanks for using Firefox!

Maybe you are looking for