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 TouchToneTommy 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: *

  1. SunnyByfleet

    Problem running PHP EXEC function under Plesk.

    If I run the following script on my Plesk 10.2 linux server: $c = system("ls"); echo "<br />SYSTEM: ".$c; $out = array(); $d = exec("ls",$out); echo "<br />EXEC: ".$d; echo "<hr /><pre>"; print_r($out); echo "</pre>"; I get nothing. Well, I get the following: SYSTEM: EXEC...
  2. SunnyByfleet

    Jquery / Javascript function scope dilemna with dynamic content.

    Hello, I am currently learning Javascript and as a project am writing a lightbox using exist examples. I found one such in the JQuery cookbook, which works well. However, I wanted to add thumbnails to the box, for multiple images. These would be generated on the fly, and have onclick events...
  3. SunnyByfleet

    How do I export an XML unicode file from Excel 2003?

    I have the XML addin which lets me convert a range into an xml list. I can then go DATA -> XML -> EXPORT to save as an XML file. HOWEVER... Any unicode data gets converted to latin. How do I generate a unicode XML export file?
  4. SunnyByfleet

    Minimum spec for iphone app development.

    I am tipping my toes into iphone application development. I see that I need a machine running Leopard 10.5.7 in order to run the sdk, my question is this: would a G4 Mac with 1G Ram and 1.2Mhz processor be sufficient to run the SDK and the iphone simulator, or would it be a dog? My second...
  5. SunnyByfleet

    Blank line with FF and Opera. Oh the same of it.

    I have a minor irritation on one of my sites. It renders fine in IE6 and 7, but inserts an extra blank link in FF and Opera. I have produced a skeleton bit of code below which demonstrates the problem. it is self contained, and if you run it you should get the following in IE: Green body...
  6. SunnyByfleet

    CSS Order / preference confusion

    Here's a simple code snippet: <style> .class1 td { text-align: right; } .class2 { text-align: left; } </style> <div class = "class1"> <table border = "1"> <tr> <td>Yada yada yada</td> <td>Yada yada yada</td> </tr> <tr> <td class = "class2">L Yada</td> <td>R Yada</td> </tr>...
  7. SunnyByfleet

    Multiple form images revisited.

    Following on from this thread: thread215-1262702 I basically wanted to have one image as a submit button and another as a cancel button. That didn't work. for reasons explained in the other thread. I will try the solution suggested there, but am also puzzled. To get around it not working, I...
  8. SunnyByfleet

    Telnet piping woes

    Hi, I am trying to automate some telnet sessions. For instance, rather than typing: telnet 192.168.1.1 admin // (when asked for username) admin // (when asked for password) help /? // (Just something to do) I want the key strokes in a file so I can pipe it into the telnet...
  9. SunnyByfleet

    Basic Macbook network questions

    A friend has a new Macbook (OSX 10.4.10) and is trying to hook up to their router via ethernet. The router is a BT Voyager 210 and is ADSL with UK settings (PPPoA etc). It worked when plugged into a Windows machine, and happily pumped out IP addresses in the 192.168.1.n range. However, my...
  10. SunnyByfleet

    My 2003 server has gone for a burton!

    Luckily it is only a test one I have at home. However, I was doing some experiments with power usage, and this involved turning the machine on and off a few times. Now, it won't boot. It does the POST ok, then there is a blank screen, save for a row of squares at the bottom making a progress...
  11. SunnyByfleet

    C

    Environment: Servers: Single Exchagne 2003 Server sat on Windows 2003 Server Desktops: Windows XP Pro Office 2003 I have a user who has three personal PST files, plus their Exchange mailbox. He is the MD, so he is allowed to! I am upgrading him to a new machine. I have copied the PST files...
  12. SunnyByfleet

    Cannot run UPDATE query with Sage Line 100 ODBC driver.

    Hi, I am trying to do some under the bonnet work on a Sage Line 100 dataset. You can access this via ODBC, and performing SELECT queries causes no issues. However, if I try and perform an UPDATE query, like so: UPDATE 'S'.'STOCK_CONTROL_FILE' set 'MINIMUM_STOCK_LEVEL' = 0 GO I get the...
  13. SunnyByfleet

    Local user account has disappeared!

    This is very odd. It has happened on three different laptops (50% of our total). All users are part of the office 2003 domain, and have a local profile with admin privileges. Now, on the affected machine, if you go Control Panel->Users it says the only one present is the local administrator...
  14. SunnyByfleet

    Problem with Remote Desktop on some machines.

    This one is driving me nuts. At this office all the computers are on one subnet. I can use remote desktop to access computer B, C, D and E from computer A, and vice verca. Now, if I connect via a VPN, I can access computer A remotely, but I cannot access computer B or computer C. I can also...
  15. SunnyByfleet

    ODBC connectivity issue

    Hi, I am having a wonderful time trying to reconstruct our company website on a test server. The test server runs Windows 2003, IIS 6 and SQL Server 2000. I have FTPed all the ASP files etc from the live web server. I have restored a backup of the live server database into the test SQL...
  16. SunnyByfleet

    Restore to a new server. Basic question for struggling noob.

    Hi, I want to set up an offline copy of our website for experimental purposes, with a view to administering the site in the future. The site uses SQL Server 7 as a back end. I have a SQL backup of the company database. I have built a webserver running Win2003, IIS6 and SQL Server 2000. Can I...
  17. SunnyByfleet

    Outlook 2003 stopped working on Windows 2003 Citrix XPS server.

    This is irritating. We have a number of apps on one Citrix server, including Office 2003. Overnight, Outlook 2003 has stopped working. Everything else functions normally, but if you click the Outlook icon, it whirs for a bit then nothing. Help!
  18. SunnyByfleet

    Netranger Sensor Blues

    I bought one of these at an auction recently. It was going cheap and I fancied having a play with it. If I boot it up it goes through various loops, before eventually asking me for a logon id and password. Is there any way of resetting this so that I can get on? If anybody has any other info...
  19. SunnyByfleet

    Client Authentication With Certificates

    At work I have the following environment: Windows 2003 domain Certificate Services Enterprise Root Server. IIS6 Web site. SSL is enabled. For one folder called SECURE, I've made authentication by client certificate mandatory. This works well, a user can browse to the web site, but if they go...
  20. SunnyByfleet

    How do Import an ODBC table using VBA?

    I can import a table manually from Sage into Access. How can I do this programatically?

Part and Inventory Search

Back
Top