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 Chriss Miller 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: audiopro
  • Content: Threads
  • Order by date
  1. audiopro

    HTML::Template

    I have taken this back to basics to troubleshoot an odd problem. I may just be missing something here but I just can't fathom it. This simple nested loop is displaying all the second loop vars in each section where I want them to be separate. The code isn't complete here but the script and...
  2. audiopro

    £ sign under https

    I have a simple HTML form which I am processing in Perl. Submitting a textarea containing a '£' sign under http works fine but submitting the same under https causes a fata error. --------------------------------------------- Not Acceptable An appropriate representation of the requested...
  3. audiopro

    Closing Perl scripts.

    I reported slow server load times to my ISP. They tell me that several scripts have been running for a few days. The script runs through with no infinite loops, can someone please suggest what on the server isn't cleaning up after itself? Keith www.studiosoft.co.uk
  4. audiopro

    Windows Explorer Not Responding

    I have an issue with Windows Explorer where it works fine from a restart then at some point it just stops responding. It has started doing this since a Windows update and no other software has been installed since. I have the software I require on the computer and all I want to do now is use it...
  5. audiopro

    Running videos from Internet Explorer 11

    I can launch videos from the address bar of my browser, to play in the associated program but I get the option to either save or run the video. Is it possible to bypass that option window and automatically run the video? Keith www.studiosoft.co.uk
  6. audiopro

    COM Server

    I have been having problems with this for a while now and it is stopping me from working. The fixes I have seen involve editing registry entries but I am unable to save permission changes, Access Denied. What am I meant to do? [code] The application-specific permission settings do not grant...
  7. audiopro

    Gateway Timeout

    I have a Wamp server on my local network. I am running some long Perl scripts on it and sometimes get Gateway Timeouts. The script is iterating through a loop which contains print statements, sometimes the print statements appear on the screen and the script can run for many minutes until...
  8. audiopro

    Marking duplicate records

    I am using the following code in Perl to mark distinct records in a table. I am actually looking for duplicates but marking them this way leaves duplicates unmarked and it is those I process later. The first select obtains a record set and then that record set is used to mark the appropriate...
  9. audiopro

    Deep Directory Listings

    I have a directory with several levels of sub directories under it. These go down to a level of 4 or 5 in some cases. I want to create a list of all the directories in the entire tree. I have been looking at file::find but I don't think it is what I am looking for as it only seems to go down...
  10. audiopro

    Accessing files across a network

    I need to access some files across a network on another machine. Should it be possible to read them via a mapped drive, assuming permissions don't get in the way or am I barking up the wrong tree. I have tried this simple solution but with no success and it is getting late in the day so will...
  11. audiopro

    Desktop Taskbar

    My desktop taskbar has stopped responding, I have searched on Google and the experts suggest all kinds of Mickey Mouse fixes but none of the ones I have tried actually worked. Is there a solution or is the latest update another pile of wotsits churned out by MS? Keith www.studiosoft.co.uk
  12. audiopro

    Maximum use of resources.

    I am finding my WIN10 computer very slow these days and would welcome some advice on how to sort it out. When I run a couple of memory intensive programmes, the machine slows down to a crawl. If I have Facebook and Photoshop open at the same time, Task monitor reports 60%+ CPU usage even when...
  13. audiopro

    Strange behaviour in substitution

    I am using this substitution to clean some inputted data. I have used the same code numerous times before without problems. $FieldValue = "Charlie----"; print "FVB - $FieldValue<br>"; $FieldValue = ~s/[^a-zA-Z0-9 \@\.]//gi; print "FVA - $FieldValue<br><br>"; Gives output of:- FVB -...
  14. audiopro

    HTML Bookmark on touch screen

    I have 2 bookmarks on a page, one moves the view from top to bottom, the other moves the view from bottom to top. On my desktop dev machine, both bookmarks work as expected but on my touch screen phone, only the bottom to top link works. This is a much simplified version of the original page but...
  15. audiopro

    Reliable screen size detection

    I have read about numerous methods for detecting the screen size or resolution of a user's device. Many of the articles speak of unreliability and most of the articles are a few years old now. Has a reliable method of screen detection been discovered or is it still a case of the existing...
  16. audiopro

    Realtive paths

    I am loading a file from a 'same level' directory, relative to the script. I am more familiar with the syntax of Perl which is simply $Menu = "../chargrill.kjw"; This doesn't work in PHP and the solutions I have seen ie. realpath or the rather odd looking substr(dirname(__FILE__)...
  17. audiopro

    Multiple Draggable Markers on Google Maps

    I have a Google Map on a genealogy website which shows markers representing locations connected to a person. This is working but I have created another map where the locations can be edited. The array 'business' contains the location information and the relevant markers display correctly on the...
  18. audiopro

    Staying Within the Rules

    I have a rectangular, landscape div which has a background image. I require whole div to be a link, so I have made it a block element. The div has a full width background image, the left half is a graphic and the right half is plain. I want a paragraph of justified text to appear in the right...
  19. audiopro

    Closing Connections After Image Has Loaded

    I use Perl to create active HTML pages which are then served to a visitors browser. I have a number of pages which contain 50 or more images. If I refresh one of these pages a number of times (7/8) in succession, I am locked out of the server for 5 minutes due to 'too many connections'...
  20. audiopro

    SSI call returning 1

    I have this SSI call in an index page. <!--#include virtual="cgi-bin/picture.pl?call=body&amp;page=home&amp;" --> It returns the index page's <body> via this print statement. print "<body class='page_body' style='background-image: url(\"images/themes/halloween/homeback.jpg\");'>"; The...

Part and Inventory Search

Back
Top