Help with AND/OR Search

Hi all,
I'm setting up an 'Advanced Search' feature using a filter function and need some help with the logic - seem to be suffering a brain fade...
There's a search form with (let's say) 4 different options:  Name, Description, Price, Features.
I want the user to be able to fill in all or none of the fields and return the matching results.
I can do an OR function like this:
if(Name.match(regx1) || Description.match(regx2) || Price .match(regx3) )|| Features .match(regx4){
     return true;
}else{
     return false;
I know I could change the "||" to "&&" - but I need to do this only if there's something to search...
The only way I can think of doing this at the moment is to write a bunch of 'if statements' with all permutations - eg:
if(Name && !Description && !Price && !Features){
     //match Name only
}else if(Name && Description && !Price && !Features){
     //match Name & Description
}else... you get the idea
Thanks for your help!
Cheers

hey Madhav,
Thanks for the pointer.  I haven't used a bitwise AND Assignment before...
When I write some code like below I get a compile error saying "Implicit conversion of type Boolean to an unrelated type Integer"
From what I understand, 'criteria' should remain true only if the comparator is true.  But why do I get a compile error?
Do you know what I'm doing wrong?
var criteria:Boolean = true;
var nameMatch:Boolean = false;
if(name){
     if(name.match){
          nameMatch = true;
if(name){
    crieteria &= nameMatch;  // compile error here
thanks for your help!

Similar Messages

  • Help with creating a search box

    Lo,
    I am making a website using dreamweaver 8 and was wondering
    if anyone could help me in making a simple search box. If your
    wondering what i mean when i say search box, i mean a text field
    where you can enter a search subject and a button to submit the
    search. Not unlike the search areas you see on most popular
    websites. So far I've been able to make the text field and button
    but i am having trouble with scripting them so that they actually
    preform a search. I'm guessing that I will have to make a new page
    that to display search results, but other that that i'm pretty much
    in the dark about how to go about it. Anyone who could help me out
    or show me where I could get help, I would really appriciate
    it!

    Thats a good one Nancy, might look into that for an upcoming
    client.
    Atomz have one as well, customizable too.
    Brendon
    "Nancy O" <[email protected]> wrote in
    message
    news:eripkt$kgc$[email protected]..
    >
    http://www.freefind.com/
    >
    > Very customizable. Free version has ads. If you're
    willing to pay a
    > dime,
    > no ads. Allows you to select which pages get indexed,
    incl's PDFs and
    > other
    > great features. Search web or just your site. After you
    sign up and
    > paste
    > their code into your pages, it takes about 48 hours to
    spider and index
    > your
    > site for full search.
    >
    > If you don't like that one, there's always Google....
    >
    > HTH,
    > Nancy O.
    >
    >
    >
    >
    >
    >
    > "lotan666" <[email protected]> wrote in
    message
    > news:eriok7$jbt$[email protected]..
    >> Lo,
    >> I am making a website using dreamweaver 8 and was
    wondering if anyone
    > could
    >> help me in making a simple search box. If your
    wondering what i mean when
    > i say
    >> search box, i mean a text field where you can enter
    a search subject and
    >> a
    >> button to submit the search. Not unlike the search
    areas you see on most
    >> popular websites. So far I've been able to make the
    text field and button
    > but i
    >> am having trouble with scripting them so that they
    actually preform a
    > search.
    >> I'm guessing that I will have to make a new page
    that to display search
    >> results, but other that that i'm pretty much in the
    dark about how to go
    > about
    >> it. Anyone who could help me out or show me where I
    could get help, I
    > would
    >> really appriciate it!
    >>
    >
    >

  • Help with multiple parameter search recordset

    I have a mysql table being searched by two fields City and
    State
    using dreamweaver, I have set up a form with a text field as
    city and a list as state and I have them being passed with the get
    method.
    The problem is on the results page, I have a recordset SELECT
    * FROM table name. What do I do with the WHERE, I have tried
    multiple configurations, and I can't get anything to work. I only
    want to search by two fields, city and state. The state has to
    match, but if the city is left blank, I still want to filter by
    state.
    Can somebody help me or point me in the right direction,
    please?

    SaigonJeff wrote:
    > Oops... sorry!
    >
    > I'm using PHP / MySQL
    >
    > PHP 4.3.4
    > MySQL 4.1
    >
    > Thanks for the help...
    I was going to suggest a Stored Procedure approach, as that
    is how I
    always approach filtering, but I use MS SQL, and I don't know
    if/how to
    do it in MySQL.
    The first part is fairly easy:
    SELECT *
    FROM yourTable
    WHERE Column1 = MMColParam OR Column2 = MMColParam OR Column3
    = MMColParam
    Obviously this will match the entire value of MMColParam to
    the entire
    value of any 3 of the columns. If you want to latch the value
    of
    MMColParam to any part of the columns contents, you need to
    do this:
    SELECT *
    FROM yourTable
    WHERE Column1 LIKE '%' + MMColParam + '%' OR Column2 LIKE '%'
    +
    MMColParam + '%' OR Column3 LIKE '%' + MMColParam + '%'
    This doesn't include the filter. How do you want to the
    filter to work?
    Steve

  • Neen help with date range searches for Table Sources

    Hi all,
    I need help, please. I am trying to satisfy a Level 1 client requirement for the ability to search for records in crawled table sources by a date and/or date range. I have performed the following steps, and did not get accurate results from Advanced searching for date. Please help me understand what I am doing wrong, and/or if there is a way to define a date search attribute without creating a LOV for a date column. (My tables have 500,00 rows.)
    I am using SES 10.1.8.3 on Windows 32.
    My Oracle 10g Spatial Table is called REPORTS and this table has the following columns:
    TRACKNUM Varchar2
    TITLE Varchar2
    SUMMARY CLOB
    SYMBOLCODE Varchar2
    Timestamp Date
    OBSDATE Date
    GEOM SDO_GEOMETRY
    I set up the REPORTS table source in SES, using TRACKNUM as the Primary Key (unique and not null), and SUMMARY as the CONTENT Column. In the Table Column Mappings I defined TITLE as String and TITLE.
    Under Global Settings > Search Attributes I defined a new Search Attribute (type Date) called DATE OCCURRED (DD-MON-YY).
    Went back to REPORTS source previously defined and added a new Table Column Mapping - mapping OBSDATE to the newly defined DATE OCCURRED (DD-MON-YY) search attribute.
    I then modified the Schedule for the REPORTS source Crawler Policy to “Process All Documents”.
    Schedule crawls and indexes entire REPORTS table.
    In SES Advanced Search page, I enter my search keyword, select Specific Source Group as REPORTS, select All Match, and used the pick list to select the DATE OCCURRED (DD-MON-YY) Attribute Name, operator of Greater than equal, and entered the Value 01-JAN-07. Then the second attribute name of DATE_OCCURRED (DD-MON-YY), less than equals, 10-JAN-07.
    Search results gave me 38,000 documents, and the first 25 I looked at had dates NOT within the 01-JAN-07 / 10-JAN-07 range. (e.g. OBSDATE= 24-MAR-07, 22-SEP-), 02-FEB-08, etc.)
    And, none of the results I opened had ANY dates within the SUMMARY CLOB…in case that’s what was being found in the search.
    Can someone help me figure out how to allow my client to search for specific dated records in a db table using a single column for the date? This is a major requirement and they are anxiously awaiting my solution.
    Thanks, in advance….

    raford,
    Thanks very much for your reply. However, from what I've read in the SES Admin Document is that (I think) the date format DD/MM/YYYY pertains only to searches on "file system" sources (e.g. Word, Excel, Powerpoint, PDF, etc.). We have 3 file system sources among our 25 total sources. The remaining 22 sources are all TABLE or DATABASE sources. The DBA here has done a great job getting the data standardized using the typical/default Oracle DATE type format in our TABLE sources (DD-MON-YY). Our tables have anywhere from 1500 rows to 2 million rows.
    I tested your theory that the dates we are entering are being changed to Strings behind the scenes and on the Advanced Page, searched for results using OBSDATE equals 01/02/2007 in an attempt to find data that I know for certain to be in the mapped OBSDATE table column as 01-FEB-07. My result set contained data that had an OBSDATE of 03-MAR-07 and none containing 01-FEB-07.
    Here is the big issue...in order for my client to fulfill his primary mission, one of the top 5 requirements is that he/she be able to find specific table rows that are contain a specific date or range of dates.
    thanks very much!

  • Need help with date range searches for Table Sources in SES

    Hi all,
    I need help, please. I am trying to satisfy a Level 1 client requirement for the ability to search for records in crawled table sources by a date and/or date range. I have performed the following steps, and did not get accurate results from Advanced searching for date. Please help me understand what I am doing wrong, and/or if there is a way to define a date search attribute without creating a LOV for a date column. (My tables have 500,00 rows.)
    I am using SES 10.1.8.3 on Windows 32.
    My Oracle 10g Spatial Table is called REPORTS and this table has the following columns:
    TRACKNUM Varchar2
    TITLE Varchar2
    SUMMARY CLOB
    SYMBOLCODE Varchar2
    Timestamp Date
    OBSDATE Date
    GEOM SDO_GEOMETRY
    I set up the REPORTS table source in SES, using TRACKNUM as the Primary Key (unique and not null), and SUMMARY as the CONTENT Column. In the Table Column Mappings I defined TITLE as String and TITLE.
    Under Global Settings > Search Attributes I defined a new Search Attribute (type Date) called DATE OCCURRED (DD-MON-YY).
    Went back to REPORTS source previously defined and added a new Table Column Mapping - mapping OBSDATE to the newly defined DATE OCCURRED (DD-MON-YY) search attribute.
    I then modified the Schedule for the REPORTS source Crawler Policy to “Process All Documents”.
    Schedule crawls and indexes entire REPORTS table.
    In SES Advanced Search page, I enter my search keyword, select Specific Source Group as REPORTS, select All Match, and used the pick list to select the DATE OCCURRED (DD-MON-YY) Attribute Name, operator of Greater than equal, and entered the Value 01-JAN-07. Then the second attribute name of DATE_OCCURRED (DD-MON-YY), less than equals, 10-JAN-07.
    Search results gave me 38,000 documents, and the first 25 I looked at had dates NOT within the 01-JAN-07 / 10-JAN-07 range. (e.g. OBSDATE= 10-MAR-07, 22-SEP-07, 02-FEB-08, etc.)
    And, none of the results I opened had ANY dates within the SUMMARY CLOB…in case that’s what was being found in the search.
    Can someone help me figure out how to allow my client to search for specific dated records in a db table using a single column for the date? This is a major requirement and they are anxiously awaiting my solution.
    Thanks very much, in advance….

    raford,
    Thanks very much for your reply. However, from what I've read in the SES Admin Document is that (I think) the date format DD/MM/YYYY pertains only to searches on "file system" sources (e.g. Word, Excel, Powerpoint, PDF, etc.). We have 3 file system sources among our 25 total sources. The remaining 22 sources are all TABLE or DATABASE sources. The DBA here has done a great job getting the data standardized using the typical/default Oracle DATE type format in our TABLE sources (DD-MON-YY). Our tables have anywhere from 1500 rows to 2 million rows.
    I tested your theory that the dates we are entering are being changed to Strings behind the scenes and on the Advanced Page, searched for results using OBSDATE equals 01/02/2007 in an attempt to find data that I know for certain to be in the mapped OBSDATE table column as 01-FEB-07. My result set contained data that had an OBSDATE of 03-MAR-07 and none containing 01-FEB-07.
    Here is the big issue...in order for my client to fulfill his primary mission, one of the top 5 requirements is that he/she be able to find specific table rows that are contain a specific date or range of dates.
    thanks very much!

  • Help with MySQL Form Search

    I've got a db that contains various attributes of particular
    items... very similar to a db of a DVD library, for example...
    Director, Year of Release, comments, release date... etc.
    How do I structure the query in Dreamweaver (CS3) to tell the
    db to return ALL results for a field if it is submitted blank? As
    in, if a user didn't specify a Director, then it should not filter
    by that column and return ALL directors instead?
    In the advanced recordset dialogue I have the variables set
    to submit the run-time values from the form, but I don't know what
    to put in the "Default Value" field...
    I know this should be very simple, but I just can't get it to
    work... I tried %, but that's not doing it. (also, I tried
    searching the forum, but the search function is not working
    properly right now.)
    Any help is appreciated.

    I am completely self-taught to this point... testing the
    fields for content and adjusting the WHERE clause accordingly is a
    bit beyond my level. However, if anyone knows of any good content
    on the web that can help me get it that would be helpful... i just
    need to see a couple examples of this in action in order to
    comprehend it.
    I know that this is (or should be) an incredibly basic
    function of DB query... this shouldn't be THAT hard to find... I've
    googled and come up short...

  • I need help with and Error PLEASE!!

    Everytime i try to upgarde my itunes 6 to itunes 7 i get and Error Drive E:/ message and then i get a message saying The installer encountered errors before Itunes could be configured.
    WHAT DO I DO? I NEED SERIOUS HELP HERE!

    After installing iTunes 7, it tried to update my daughter's 20G wheel iPod but failed crashing the iPod. After the crash, my daughter got a 1418 error reporting the iPod could not be restored. An iPod salesman sold her a new iPod – blaming her for screwing up her iPod, so much for sales “experts.”
    Her iPod problem was merely caused by upgrading to Apple’s iTunes to version 7 with its dysfunctional built-in updater (OS = Windows XP), not by anything to do with the iPod hardware.
    The fix was to uninstall the iPod in Windows/Device Manager/disk Drives and rename the c:\program files\ipod\bin\ipodservice.resources folder – thereby disabling it - uninstall iTunes v. 7, reboot and install the last iPod updater, dated 6/2006. Then restore the iPod (wiping out everything) using the 6/2006 updater. Next, reinstall iTunes ver7.1, which will report all is well with the restored iPod. (Or, buy another iPod).
    Also, if the “do not disconnect” iPod message is persistent, just go into My Computer and “eject” the iPod to clear the iPod error message.

  • Help with and animation

    hi i m trying to make an animation similar to
    http://sstl.cee.uiuc.edu/java/twostory/index.html
    i have made a block moving can anybody help me or advice me how to do make some thing similar..
    thanks....
    package DEMO2;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class DEMO2 {
         public static void main(String[] args) {
         JFrame frame = new demoframe();
         frame.show();
         class demoframe extends JFrame {
         public demoframe() {
         setSize(300, 500);
         setTitle("Earthquake");
         addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
         System.exit(0);
         Container contentPane = getContentPane();
         canvas = new JPanel();
         contentPane.add(canvas, "Center");
         JPanel p = new JPanel();
         addButton(p, "Start", new ActionListener() {
         public void actionPerformed(ActionEvent evt) {
         rigid b = new rigid(canvas);
         b.start();
         addButton(p, "Close", new ActionListener() {
         public void actionPerformed(ActionEvent evt) {
         canvas.setVisible(false);
         System.exit(0);
         contentPane.add(p, "South");
         public void addButton(Container c, String title, ActionListener a) {
         JButton b = new JButton(title);
         c.add(b);
         b.addActionListener(a);
         private JPanel canvas;
         class rigid extends Thread {
         public rigid(JPanel b) {
         box = b;
         public void draw() {
         Graphics g = box.getGraphics();
         g.fillRect(x, y, XSIZE, YSIZE);
         g.dispose();
         public void move() {
              if (!box.isVisible())
         return;
         Graphics g = box.getGraphics();
         g.setXORMode(box.getBackground());
         g.fillRect(x, y, XSIZE, YSIZE);
         /* int xx; int yy;
         for (int j=1; j<10; j++){
              xx=j*(x-10); yy=j*(y+5);
              g.fillRect(xx,yy,XSIZE, YSIZE);
         x += dx;
         Dimension d = box.getSize();
         if (x < 100) {
         x = 100;
         dx = -dx;
         if (x + XSIZE + 100 >= d.width) {
              x = d.width - XSIZE- 100;
         dx = -dx;
         g.fillRect(x, y, XSIZE, YSIZE);
         g.dispose();
         public void run() {
         try {
         draw();
         for (int i = 1; i <= 1000; i++) {
         move();
         sleep(200);
         } catch (InterruptedException e) {
         private JPanel box;
         private static final int XSIZE = 75;
         private static final int YSIZE = 5;
         private int x = 50;
         private int y = 400;
         private int dx = 2;
         private int dy = 2;
         }

    thanks
    .. there is a new problem when i run this program.. its meshed animation..
    can u plzze advice
    package DEMO2;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class DEMO2 {
         public static void main(String[] args) {
         JFrame frame = new demoframe();
         frame.show();
         class demoframe extends JFrame {
         public demoframe() {
         setSize(300, 500);
         setTitle("Earthquake");
         addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
         System.exit(0);
         Container contentPane = getContentPane();
         canvas = new JPanel();
         contentPane.add(canvas, "Center");
         JPanel p = new JPanel();
         addButton(p, "Start", new ActionListener() {
         public void actionPerformed(ActionEvent evt) {
         rigid b = new rigid(canvas);
         b.start();
         addButton(p, "Close", new ActionListener() {
         public void actionPerformed(ActionEvent evt) {
         canvas.setVisible(false);
         System.exit(0);
         contentPane.add(p, "South");
         public void addButton(Container c, String title, ActionListener a) {
         JButton b = new JButton(title);
         c.add(b);
         b.addActionListener(a);
         private JPanel canvas;
         class rigid extends Thread {
         public rigid(JPanel b) {
         building = b;
         public void draw() {
              int x1, x2, y1, y2;
              x1=x+20; x2=x+XSIZE-20; y1=y-(YSIZE); y2=y;     
              Graphics g = building.getGraphics();
              g.fillRect(x, y, XSIZE, YSIZE);
              for(int i=1; i<10; i++ ){
                        x1=x+70; x2=x1+XSIZE-30; y1=y-(i*YSIZE); y2=y;
                             g.drawLine(x1, y1, x1, y2);
                             g.drawLine(x2, y1, x2, y2);
                             g.drawLine(x1, y1, x2, y1);
         public void move(){
              if (!building.isVisible())
                   return;
              Graphics g = building.getGraphics();
              g.setXORMode(building.getBackground());
                   g.fillRect(x, y, XSIZE, YSIZE);
                   g.drawLine(x1, y1, x1, y2);
                   g.drawLine(x2, y1, x2, y2);
                   g.drawLine(x1, y1, x2, y1);
              x1=x+20; x2=x+XSIZE-20; y1=y-(YSIZE); y2=y;
              x += dx;
              Dimension d = building.getSize();
              if (x < 100) {
                   x = 100;
                   dx = -dx;
              if (x + XSIZE + 100 >= d.width) {
                   x = d.width - XSIZE- 100;
                   dx = -dx;
                   g.fillRect(x, y, XSIZE, YSIZE);
                   for(int i=1; i<10; i++ ){
                        x1=x+20; x2=x+XSIZE-20; y1=y-(i*YSIZE); y2=y;
                             g.drawLine(x1, y1, x1, y2);
                             g.drawLine(x2, y1, x2, y2);
                             g.drawLine(x1, y1, x2, y1);
         public void run() {
              try {
                   draw();
                   for (int i = 1; i <= 100; i++) {
                        move();
                        sleep(200);
                   } catch (InterruptedException e) {
         private JPanel building;
         private static final int XSIZE = 75;
         private static final int YSIZE = 5;
         private int x = 50;
         private int y = 400;
         private int dx = 2;
         private int x1, x2, y1, y2;
         }

  • Help with removing my account name from the search...

    Dear Sirs:
    Due to a breach security in my P.I., I need to have my skype name to be removed from the search directory.  Please help me.
    Thanks,
    GP

    Hi, GP2013, and welcome to the Community,
    Please take a look at this information: 'Can I delete my Skype account?' and then contact customer service for assistance.  We here in the Community do not have access to Skype account details.
    Here is a slightly annotated version of the instruction to file your request with Skype Customer Service, and to receive a reply via e-mail.  Hope this serves as a useful road map!
    Regards,
     Elaine
    How can I contact Skype Customer Service?
    Skype offers help and support through:
    The Skype Support website
    The Skype Community
    The Heartbeat blog
    Skype blogs
    Email and Live chat (for eligible customers)
    To get help with the issue you’re experiencing:
    Go to the Support request page.  You will be asked to sign on to the Skype website at this step.
    Select the topic you need help with and the problem you’re experiencing. ... or the closest topic which matches your enquiry.  Some information that might help with your problem is displayed.  These are the FAQ articles pulled from the library for your review.
    If you still feel that the information doesn’t help, scroll down to the bottom of the website page and click the Continue support request button at the bottom of the screen. 
    Select your contact method. (We recommend that you check our Skype Community first. No need to circle back here, as the Community is where you started!)
    If you chose email, enter your details, describe your problem, and then click Send support request. We'll get back to you as soon as we can.
    We don’t currently provide telephone support.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Search help with new selection within if more than 500 entries

    Dear all,
    I created a new search help and this works fine ... If I compare my search help with a default search help from SAP,  I have 1 small feature that not seems to work ... With the default one, it is possible to make a new selection within the search help by clicking on the arrow down :
    If I look at my search help, I don't have the possibility to make a new selection :
    Does anyone how this can be done ?
    Thanks in advance !
    Greetz,
    Kurt.

    HI,
    Here are the general steps to get you started.
    1. Identify the search help being used (on the ship-to-party field, F1 then Tech Info). I believe you want the collective search help SD_DEBI.
    2. Create your own search help with the fields you want to use with SE11, like 'ZDEBI' as an example.
    3. Append 'ZDEBI' to SD_DEBI. (Goto->Append Search Help).
    4. Clean things up by "Hiding" the old search help. In the 'Included Search Help' tab of the collective search help SD_DEBI, there is a check box that you can tick to hide included search helps.

  • Hi,  difference between database view and elementary search help

    hi
    pl.  can any one tell me the difference between
    database view and elementary search help, 
    and  help view and elementary search help,
    and database view and help view.
    in the output i do not see any difference.
    thanx.
    rocky robo

    HI
    An entire table can be included in a database view. In this case all the fields of the included table will become fields of the view (whereby you can explicitly exclude certain fields). If new fields are included in the table or existing fields are deleted, the view is automatically adjusted to this change.
    Database view:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/36/74c0358373003ee10000009b38f839/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/36/74c0358373003ee10000009b38f839/frameset.htm</a>
    Elementary search help:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/frameset.htm</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/8b/415d363640933fe10000009b38f839/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/8b/415d363640933fe10000009b38f839/frameset.htm</a>
    Help view:
    Help views are used if a view with an outer join is needed as selection method in a  search help.
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/42/81c1351181b73fe10000009b38f839/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/42/81c1351181b73fe10000009b38f839/frameset.htm</a>
    Regards,
    Gunasree

  • Help with browser/cache Possible iCloud issue- I think

    A few months ago I built a website through Volusion.com.  I also bought my domain name through them: whisperingcreektradingpost.com
    Shortly afterward I became dissatisfied with their service and chose to move to Shopify.com
    In order to move my domain name, I had to transfer it to GoDaddy.com first and then follow Shopify instructions on how to have it point to my new store with them. IP address, etc.
    So I did all that, and for a little while it seemed okay, but periodically would still point to the old Volusion store.  Today, Shopify told me that I needed to make sure all the setting with them were set correctly and to also add the domain name without the “www” to the list of what would point to the domain name.
    Everything in Shopify is now set so that the following three items all point only to the main domain name whisperingcreektradingpost.com
    1. whisperingcreektradingpost.com
    2. www.whisperingcreektradingpost.com
    3. whispering-creek-trading-post.myshopify.com
    For the rest of the day and still tonight, I cannot get to my Shopify store at all.  Not on either of my desktops, laptop, two iPads, iPhone or iPod.  Everything on my network takes me to the old Volusion store when I type in that domain.  I even downloaded Chrome and tried that on the three computers, still no success. 
    Even when I am in my admin section ON the Shopify website, when I input the data for a product, save it, then click the link to view in browser- it STILL takes me to the old Volusion site- even from INSIDE my Shopify admin!!!
    Over an hour on the phone with Shopify tech support did not clear it up.  I cleared the data on every device on every browser.  Restarted every device, etc.  My daughter is next door with her own internet service account and can bring up my new site with no problem. 
    The internet service provider swears they cannot store anything like cookies or cache on the router so it is not on them, Shopify is able to get to my site with no problem.  They told me that their only job is to make sure I have a connection to the internet. Period.  And that the problem of not getting the ‘right one’ is not something they can help with and if they sent someone out to prove that I would be charged for the service call.
    Is it possible that there are cookies/cache on the iCloud that keeps putting the information back on my devices?  Is there some way that within my network they are all sending each other the case information before I can clear it?
    I am the only one, and every device on my network, that cannot get any browser to go to the new website instead of the old one.
    In addition, even with all the updates AND restarting several times, my internet connection is dragging something awful now.
    Help.
    I am very frustrated.

    The browser icon availability is controled by the carrier provisioning. Assuming that you have a BlackBerry specific data plan then your device is properly provisioned. All you should have to do to get the browser icon back is register your BlackBerry on the network.
    Go to Options > Advanced Options > Host Routing Table. Press the menu key and select Register Now. If the icon does not reappear after a minute or two them remove the battery for 10 seconds.

  • Ipod touch isnt organizing music (artists and albums) and no search bar

    my ipod touch stopped organizing the artists and albums in the music application since the last time i synced music... so when i go to music, artists, i see the artists not organized in letters.. it used to organize them, it used to put each artist in a letter section (the letter that the artist's name starts with)
    and the search bar on the right side isnt showing up as well
    and the same thing is happening with the albums section...
    why is that happening and how ??

    my ipod touch stopped organizing the artists and albums in the music application since the last time i synced music... so when i go to music, artists, i see the artists not organized in letters.. it used to organize them, it used to put each artist in a letter section (the letter that the artist's name starts with)
    and the search bar on the right side isnt showing up as well
    and the same thing is happening with the albums section...
    why is that happening and how ??

  • Help With Crash Code  In PRE8 Please

    In an interest to turn some of my recent discussions in a more positive direction and in keeping with the primary function of this forum (seeking advice and solutions) and in a further effort to not continually ***** about PRE8, can someone please help with and interpret the following crash codes recently generated by PRE8?
    Thanks in advance for any help.
    Glenn
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                af71
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 2:         d900
    Additional Hang Signature 3:         431be4795d1c061aba02734aa57c4950
    Additional Hang Signature 4:         af71
    Additional Hang Signature 5:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 6:         d900
    Additional Hang Signature 7:         431be4795d1c061aba02734aa57c4950
    Extra information about the problem
    Bucket ID:                                          811067413
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                7008
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 2:         0fb3
    Additional Hang Signature 3:         a5f1d311bc7bfa26f067b42cbdeac6af
    Additional Hang Signature 4:         7008
    Additional Hang Signature 5:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 6:         0fb3
    Additional Hang Signature 7:         a5f1d311bc7bfa26f067b42cbdeac6af
    Extra information about the problem
    Bucket ID:                                          781893170

    Here are my system specs.  Let me know if you need anything else.
    Thanks
    Glenn
    Operating System
    MS Windows Vista Ultimate SP2
               Installation Date: 06 March 2009, 02:58
               Intel Mobile Core 2 Duo T9550
                   Cores                       2
                   Threads                     2
                   Name                        Intel Mobile Core 2 Duo T9550
                   Code Name                   Penryn
                   Package                     Socket P (478)
                   Technology                  45nm
                   Specification               Intel Core2 Duo CPU  T9550 @ 2.66GHz
                   Family                      6
                   Extended family             6
                   Model                       7
                   Extended model              17
                   Stepping                    A
                   Revision                    E0
                   Instructions                MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, EM64T
                   Bus speed                   266.0 MHz
                   Rated Bus speed             1064.0 MHz
                   Stock core speed            2666 MHz
                   Stock bus speed             266 MHz
                   Average Temperature         36 °C
                   Cache
                       L1 data cache size              2 x 32 KBytes
                       L1 instructions cache size      2 x 32 KBytes
                       L2 unified cache size           6144 KBytes
                   Core 1
                       Core speed            1596.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           37 °C
                       Thread 1
                           APIC ID     0
                   Core 2
                       Core speed            2660.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           36 °C
                       Thread 1
                           APIC ID     1
          Memory
                   Type                                DDR2
                   Size                                4096 MBytes
                   Channels #                          Dual
                   DRAM frequency                      399.0 MHz
                   CAS# Latency (CL)                   6.0 clocks
                  RAS# to CAS# delay (tRCD)           6 clocks
                   RAS# precharge (tRP)                6 clocks
                   Cycle time (tRAS)                   18 clocks
               SPD
                   Number of SPD modules          2
                   Slot #1
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       00007112
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                           tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
                   Slot #2
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       02008065
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                          tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
    Mother Board
    Manufacturer   Dell, Inc.
               Model                      0P786H
               Version                    A04
               Chipset vendor             Intel
               Chipset model              PM45
               Chipset revision           07
               Southbridge vendor         Intel
               Southbridge model          82801IM (ICH9-M)
               Southbridge revision       03
               BIOS
                   Brand       Dell Inc.
                   Version     A04
                   Date        11/26/2008
               Monitor
                   Name                    Generic PnP Monitor on ATI Mobility Radeon HD 3650
                   State                   enable
                   State                   primary
                   Monitor Width           1920
                   Monitor Height          1200
                   Monitor Bit             32
                   Monitor Frequency       60
                   Device:                 \\.\DISPLAY1\Monitor0
                   Name                    Default Monitor on ATI Mobility Radeon HD 3650
                   State                   disabled
                   State                   removable
                   Monitor Width           800
                   Monitor Height          600
                   Monitor Bit             32
                   Monitor Frequency      60
                   Device:                 \\.\DISPLAY2
               ATI Mobility Radeon HD 3650
                   GPU                         M86
                   Device ID                   1002-9591
                   Subvendor                   Dell (1028)
              

  • Help with Oracle Web content Management post installation

    Hi;
    Trying to Implement the oracle content managemant, especially the Web content mangement part of it.
    Doe anybody know of oracle partner that can help with this. I am really crunched for time.

    FONZ,
    We (ImageSource, Inc.) are an Oracle partner that does Oracle UCM & WCM implementations. Here is a link to our information request form. Add a brief description of what you need help with and someone from ImageSource should contact your shortly.
    http://imagesourceinc.com/Company/RequestInformation/index.htm
    - Tyson

Maybe you are looking for

  • Getting an unexpected error while displaying the bound HtmlOutputText

    I am getting this unexpected error when I am trying to display the HtmlOutputText which is bound to a backing bean HtmlOutputText component. Error: java.lang.IllegalStateException: strict servlet API: cannot call getOutputStream() after getWriter()  

  • RosettaNet ack error

    Hello All, We are on patch 7652646. We send a 3A4R to our TP. They send back the ack. However, the ack processing fails. The error we are getting is "_Document Exchange protocol name "RosettaNet" in message is different from document exchange protoco

  • Using $ in PL/SQL

    Can it be done? If so, how would they be used within a SQL script?

  • Connetion of BI 7.0 to external oracle 10G R2 database system

    Dear Experts, We have BI 7.0 system with MS SQL server as database and we want to connect it to database Oracle 10G R2.For that we followed the following procedure. 1) In order to connect to the enterprise database, Oracle 10gR2 client (runtime optio

  • Lost all my photos after back up & reinstall-PLS HELP

    Hello There, i have a very serious problem, the problem is as below: - my system was having a problem so I was asked by apple store guy in Zürich to reinstall my OS - everything in iphoto was fine before that - after reinstall, the following problems