Jump to content

jamescalvin

Members
  • Posts

    21
  • Joined

  • Last visited

    Never

Posts posted by jamescalvin

  1. Hey All, I have a Pay Pal "buy now" button on my website, when the customer goes to Pay Pal to make a payment, they are then redirected to a certain page on my site. I have secured the my directory so that no one can just type in the URL? I do however, want the customer to be able to bypass that secure login when they are redirected from Pay Pal.  I know I can use keys and sessions to pass the username and password but I'm unclear on how this works.  Can someone please help??

     

  2. At the moment I'm using a filter style, not using a GD Library for this.  As far as more information goes, it's pretty straight forward, I'm just not getting the results I want.  I have a listing of products, when I click on a product to view it, I have the option to print it.  When i click "Print" the image itself opens up in a printable version, and the image at that point should turn to grayscale.  The print dialog box opens up as well.

  3. Hi All,

     

    I've having a serious issue that I need your help with as soon as humanly possible.  I have a page that has some products on it, when the product is clicked, it opens up the printable version along with the print dialog box for printing.  My problem is, I need the page to open up in grayscale.  It's working in IE, but it's not working in Fire Fox, and it's not working on Mac.  Is anyone familiar with this issue?  I need to solve this as soon as possible.

     

     

     

     

  4. Hi guys,

     

    For some strange reason, when I try to start Apache, I get a message saying:

     

    Syntax error online 196 of c:/apache/conf/httpd.conf:

    Cannot load c:/php5apache.dll into server: (5) Access is denied

     

    It was working fine about two weeks ago, and all of a sudden I get this error.  I did a search on it, I found some things in referrence to the error, but couldn't fine anything that helped with this specific problem.  Any ideas?

  5. Sorry about that, I did mean duplicate rows.  I'm a newbie at this...  My DB language is waaaay immature so please bare with me while I try re-explaining this one. 

     

    I have a table with about a thousand rows.  A lot of the rows are duplicates.  I have a column called CID and the number structure for that is xxxxx-xx

     

    I'm trying to delete all of the duplicates and keep the one with the highest CID.  If I change all of the "id" to "cid" in the following code, will I be good to go?

     

    DELETE 
    myTable
    FROM myTable
    JOIN (
        SELECT a.id
        FROM myTable AS a
        JOIN myTable AS b ON a.dupInfo = b.dupInfo AND a.id < b.id
    ) AS sub ON myTable.id = sub.id

  6. Hey PHP Freaks,

    How do I copy (back up) a table using MySQL Query Browser?  In phpMyadmin it's a really easy task and I'm sure it is with MySQL Query Browser but I just can't seem to figure it out.  Can someone help me with this?

    Thanks
    JC
  7. Hey Freaks,

    I had a question for you all regarding phpMyadmin.  I have an IP, DB Name, username and password for my DB, but I have no way of accessing it using phpMyadmin.  Usually, my clients have it in their cpanel, but for this "special" client of mine, there is no cpanel.  Is there something I can do or somewhere else i can go to access the DB?

    Thanks
    JC
  8. Hey Freaks,

    Has anyone heard of this crazy situation: When I type in [b]domain.com/admin[/b] and hit enter, it redirects me to [b]http://www.domain.com/admin/login.php[/b] and since the www. in the domain isn't active, it takes me to a "page not found" screen.  But if i type it in like [b]http://domain.com/admin/login.php[/b] then I don't have any problems.

    Is there anyway to make it so that when i type in [b]domain.com/admin[/b], I don't run into that problem?

    Thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.