Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: myatia
  • Content: Threads
  • Order by date
  1. myatia

    parsing out profile image in Twitter RSS feed (media:content)

    I'm using jQuery to display a Twitter feed on my website. I would like to be able to parse out the user's profile image, which is passed in a "media:content" or "google:image" elements. I've tried things like this: author = $('item', xml).find('google:image').eq(0).text(); author = $('item'...
  2. myatia

    nested lists, em font tags, and inheritance

    Hi, all, I'm having issues with some nested list tags. I've set the font for each <li> element to 0.8em. When I nest the list tags, as shown below, the nested text shows up really small (0.64em, I'm assuming). How do I stop this? Any advice would be appreciated. Misty Stylesheet...
  3. myatia

    check in/check out source control problem

    When I'm logged in under my account (Misty), a couple of files are checked out (a green check mark is shown next to them). However, when I try to save them or check them in, I am given a "Server error: [page] is checked out by Misty". I've tried restarting IIS and rebooting the webserver. I...
  4. myatia

    icons disappeared from tools window

    I'm using Photoshop 6.0 and all the icons from my tools window (panel?) have disappeared. The rectangular Photoshop eye image is appearing at the top of the panel, but none of the icons (e.g., lasso, paint bucket) are appearing. I've tried hiding/unhiding the panel, resetting all the tool...
  5. myatia

    top margin in Opera 7

    Hi, all, I am trying to get the body margin to be 0px for my page, but in Opera 7, the top margin is about 15px or so. The page looks fine in IE, Netscape, and Firefox. I have set the margin and padding to 0, as shown below: html { margin:0px; padding:0px; height:100%; } body {...
  6. myatia

    help with div positioning

    Hi, I'm almost done with my layout, but I can't figure out one thing. On the following page, I want the red "e-quote" button in the right column to fall below the "News & Events" box. http://www.eccentrix.com/members/mistyjgarrick/cgisite/index_xhtml.html I've played around with putting it...
  7. myatia

    temporary tables and FoxPro

    Hi, all, Does anyone know how to access a temporary table in FoxPro 6 via ADO connections? I am currently tracking how many people log into my website, and I would like to find out how many people log in how many times. In other words, I want to know the number of people that log in 1 time...
  8. myatia

    how do you count counts?

    Hi, all, Does anyone know how to write a query to make a count of counts? I am currently tracking how many people log into my website, and I would like to find out how many people log in how many times. In other words, I want to know the number of people that log in 1 time, the number that...
  9. myatia

    IIS logs - requests missing

    Hi, all, I've been trying to do some log analysis for a website I'm working on. Through mid-November, all the log files include all requests. After the 17th, though, the only requests logged are for "/default.asp", image/css/js files, and 404 errors. No requests for any ASP pages are showing...
  10. myatia

    redirect problem

    Hi, I have a script called "redirect.asp" that redirects to a remote site. On that site, the referring page is checked, and if it equals "http://www.mysite.com/redirect.asp", the person is automatically logged into the remote site. If it does not, then they're shown a login error message...
  11. myatia

    Invalid argument value error when updating memo fields

    I'm getting this message when I try to update a memo field in a recordset. If I remove the memo field lines from the update statement, the update works just fine. Does anyone have any advice? My code and error messages are below. I'm using ASP and VFP 6. Let me know if you have any...
  12. myatia

    Updating memo field gives &quot;Invalid argument value&quot; error

    I'm getting this message when I try to update a memo field in a recordset. If I remove the memo field lines from the update statement, the update works just fine. Does anyone have any advice? My code and error messages are below. Let me know if you have any questions. Thanks, Misty ERROR...
  13. myatia

    PHP installation problem: can't find module

    Hi, all, I'm getting the following error when I try to start Apache: Cannot load c:/php/php5apache2.dll into server: (126) The specified module could not be found The php5apache2.dll file is saved in c:/php, though. Does anyone have any ideas what's up? My Apache httpd.conf file is below...
  14. myatia

    CDO mail security when sending thru remote SMTP server

    Hi, all, I need to send an email out an a webserver that does not have an SMTP server running. I'm using CDO mail to send the email out through another remote server, and was wondering if there are any security or reliablity issues, as the script appears to access an outside web site...
  15. myatia

    pull only records that have null in a particular field

    Hi, all, In the query below, I'm trying to find the records in table A that don't have a match in table B (i.e., the ssid field is null). SELECT A.code1, A.ses, A.yr, B.ssid ; FROM A LEFT JOIN B ; ON (A.id = B.id AND A.code1 = B.code1 AND A.yr = B.yr) ; WHERE A.id = 74283 AND B.ssid IS NULL...
  16. myatia

    HTML Newsletter Software (to send and track)

    Hi, all, My organization is currently sending text-only newsletters to our members. We'd like to move to HTML newsletters, which would improve the formatting and allow us to track open and click-through rates. Can anyone recommend a software package or web-based campaign service they've...
  17. myatia

    Recommendations for Email Newsletter software?

    Hi, all, I'm looking into purchasing an email newsletter program that will let me send 5-10 newsletters a month to 1000-5000 people at a time. Does anyone have any recommendations? What I really want is something that has good tracking features and list management, but that isn't really...
  18. myatia

    replace last instance of a substring only

    What's the easiest and most efficient way to replace only the last instance of a substring? For example, how do I change the last instance of &quot;dog&quot; into &quot;cat&quot;: before = &quot;My dog chased this dog and that dog.&quot; after = &quot;My dog chased this dog and that...
  19. myatia

    invalid argument value error

    I'm getting an &quot;invalid argument value&quot; error whenever I try to update a record, regardless of the values I try to enter. Here's a sample of my code that's getting the error: ID = Request.Form(&quot;id&quot;) set rs = server.createobject(&quot;ADODB.Recordset&quot;)...
  20. myatia

    Forward email for a particular user

    How do I forward all email sent to a particular email account to another account (not for my account, mind you)? Here's my silly situation: A worker was terminated today, and I deleted his user account on his machine. So, now I can't log into his computer and change his Notes setting to...

Part and Inventory Search

Back
Top