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 Wanet Telecoms Ltd 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: waiterm
  • Content: Threads
  • Order by date
  1. waiterm

    AJAX calls and TinyMCE

    Hi, I am loading content into two divs on a page using Ajax, one page contains a textarea that I want to make a TinyMCE WYSIWYG editor. Basically the TinyMCE initialisation script isn't waiting for the other two pages to load before it runs. Therefore sometimes it works and sometimes it...
  2. waiterm

    AJAX calls and TinyMCE

    Hi, I am loading content into two divs on a page, one of which contains a textarea that I want to make a TinyMCE WYSIWYG editor. Basically the TinyMCE initialisation script isn't waiting for the other two pages to load before it runs. Therefore sometimes it works and sometimes it doesn't. The...
  3. waiterm

    Overflow error in MD5 script

    Hi I'm integrating an MD5 script within a login page and for some reason when I moved the site from the testing environment to the live server I started getting an Overflow Error whenever someone tries to login: Microsoft VBScript runtime error '800a0006' Overflow: 'lResult' /***/***.asp...
  4. waiterm

    error '80040e37' object not found...after changing table owner

    Hi, I'm getting the following error when I try and access any table on our test server: Microsoft OLE DB Provider for ODBC Drivers error '80040e37' [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'tbl_AdminUsers'. /admn/login.asp, line 24 I can access the tables fine...
  5. waiterm

    Turn off 500.100 Errors on IIS

    I'm running IIS on my laptop which is Windows XP Pro SP2. However, rather than getting useful error messages within my page, like I get from MS Server 2003, my laptop throws up 'The page cannot be displayed, HTTP 500.100 - Internal Server Error - ASP error blah blah' This isn't useful, because...
  6. waiterm

    HSBC API Integration

    Hi, Does anyone know of a good turutorial/guide for integrating an ASP shopping basket with HSBC's API. The CPI is too complicated and the documentation for the API is rubbish. Any help would be greatly recieved. Rob Waite http://www.hostpipe.co.uk?src=TT
  7. waiterm

    Check server date/time defaults

    Hiya guys, Is there any means in ASP of checking what the server's default date and time settings are? ie I'm having trouble with UK (d/m/y) and US (m/d/y) dates when porting scripts to various servers...and it's doing my nut ! Many thanks in advance Rob Waite http://www.hostpipe.co.uk?src=TT
  8. waiterm

    Tables to CSS

    Hi, I'm currently dynamically building my tables from a recordset. i.e. multiple columns and as many rows as in the recordset with column headers. However, in a bid to move my sites over to CSS I'm finding it difficult to reproduce anything as efficient as the tables used to produce. I...
  9. waiterm

    SQL Subquery Count Problem

    Hi, I'm trying to join two tables, whereby the first table has unique records, the second table then has multiple records assigned against the primary key of the first table. Basically I'm looking for a query which lists the top 20 records from the first table with an extra field stating the...
  10. waiterm

    Nested Categories

    Hi, I'm trying to develop product listings on a friends website, and have run into difficulties finding the most effiecient means of nesting the categories so that he can have infinite category levels if possible. I'm developing on a simple ASP/Access setup and basically don't want to have to...
  11. waiterm

    3 Coumn Layout bugs, need help!

    Hi guys, I'm trying to create a basic 3 column layout, and having googled and tried endlessly am still having problems. There's no content as such but take a look at: http://www.pegasusart.co.uk/template.asp Basically the problem I'm having is when the browser window is resized in both IE...
  12. waiterm

    Feedback needed for new website

    Hiya guys, Just a quickie, I've just launched a new website/service and would love some feedback on what you think of the general design, linking, search facility, technical aspects etc. Also feedback about whether you think the concept is good or bad would be fantastic, or if you want to try...
  13. waiterm

    Feedback needed for new website

    Hiya guys, Just a quickie, I've just launched a new website/service and would love some feedback on what you think of the general design, linking, search facility etc. Also feedback about whether you think the concept is good or bad would be fantastic, or if you want to try the service out...
  14. waiterm

    LWP::Useragent causing HTTP 501 error

    Hi, The following block of code is causing a "501 Protocol scheme 'http' is not supported" error. Any suggestions as to why this might be happening, the version of perl is pretty old (v5.003 i think) but it's being hosted on a remote server. my $ua = LWP::UserAgent->new...
  15. waiterm

    Mechanize on old version of Perl (5.005_03)

    Hi, I'm writing a script which needs to be hosted on a remote server that only has version 5.005_03 of Perl installed on it. The host are refusing to update their version of perl and so I am left with trying to make my script work on their servers, but requires WWW::Mechanize in order to work...
  16. waiterm

    Finding Value of a Checkbox and unchecking it

    Hi, I've been trying to find the value of a checkbox first using WWW::Mechanize and then using HTML::Form, I've also just realised that the attributes of the checkbox suggests that no value has been assigned: <INPUT type=checkbox CHECKED name=club_info> What is the default value of the...
  17. waiterm

    Not really IT but slightly Ethical, advice needed.

    Hiya folks, Not really an IT related issue but thought this to be the most appropriate forum. My business partner and I have stumbled on a slight ethical conundrum regarding out end of year accounts. It's the first time we've actually had to do them. We initially got our advice from one of my...
  18. waiterm

    Net::SSH::Perl Error Can't map service name 'ssh' to port number

    Hi, I'm using the following code: 4. use Net::SSH::Perl; 5. use lib "C:/tmp/LIB"; 6. require "funcs.pl"; 7. 8. $host = "xx.x.xx.xx"; 9. $user = "Xxxx"; 10. $pass = "xxxxxX"; 11. 12. my $ssh = Net::SSH::Perl->new($host); 13. $ssh->login($user, $pass); 14. $cmd = "mysql -p -A"...
  19. waiterm

    Equivalent Perl DBI statement

    Hiya guys, I'm not sure if this is a Perl or SQL question but I thought someone should be able to point me in the right direction. I have a table in my database (tbl_Meeting) with three fields; MeetingUID, ME_Course, ME_Date. Basically all I'm trying to do is insert a record into an SQL...
  20. waiterm

    Use variable to represent an array name

    My business partner just asked the following, and I'm not sure about how to do it: Is there a way of using a variable to represent an array name...?? i.e. $var = @ARRAY (the name of the array not the value) foreach $whatever(@[$var]) { . . . .. } I thought there was some way of doing it...

Part and Inventory Search

Back
Top