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 strongm 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. JackTheRussel

    Frames: How to find out urls

    Hi. I have page where I have two frames index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head><title>My Frames</title> </head> <frameset rows="40%,60%"> <frame src="myUp.html" name="upframe"> <frame...
  2. JackTheRussel

    How to put smarty-value to the javascript variable ?

    Hi all. I just started to study smarty and I find out problems right away. I try to put smarty-value to the javascript variable like this: page.php $my_variable="foo"; smarty->assign("somevalue", $my_variable); smarty->display("page.tpl); page.tpl {literal} <script...
  3. JackTheRussel

    Image refresh with javascript

    Hi. I have tried to create javascript-code which would refresh images that are in my web-page. I put images on site by using PHP. At the same time when I put images on my site, I put image-names on javascript-array. Then I have tired to create code, which would refresh images. // OK Here I...
  4. JackTheRussel

    How to read selected listbox value ?

    Hi. I have dropdown box on my page. Now in function Stat I would like to read the selected dropdpwn box value. How can it be done? I have tried to read the selected value like this: var selected = document.getElementById('dropdiv').innerHTML; But it gives me something like this: <select...
  5. JackTheRussel

    How to give listbox values to the function

    Hi. I have multiselect listbox on my web-page. Now I try to give selected listbox values to the javascript function (GetValues) when button is pushed. I found two function on web, which print values to the alert-box when button is pushed (getSelected and outputSelected) I changed...
  6. JackTheRussel

    Can set this kindf of replication

    Hi. Is it possible to make replication like this: I have one machine (master1) where I have one database called db1. And I have different machine (master2) where I have one database called db2. I also have third machine (slave) where I have two databases: db1 and db2. Now the slave database...
  7. JackTheRussel

    remove if exists?

    Hi. I have program, which first removes all music files from folder /home/xxxx/folder. Then there will be saved some new files: Example system("rm $music_dir/*.wav"); system("rm $music_dir/*.mp3"); Now when I look my error_log, there are multiple errors: rm: cannot remove /path/*.wav No...
  8. JackTheRussel

    How to get variable value from other site?

    Hi. I have page called upload.mas. There I have HTML-from where user can upload image. form action is upload.cgi, which takes care of the upload. When upload.cgi has uploaded image, it goes back to the page, where user uploaded the image, using the refresh function: <html> <head><meta...
  9. JackTheRussel

    File upload fails

    Hi. I have made perl-mason pages, where I can upload an file (picture). Now, some reason it fails. It just creates an empty filename. I have added this to my code: use CGI qw (:standard); Does someone have clue, why this isn't working? Here we get our picture: <div> <span...
  10. JackTheRussel

    header_out(Refresh)

    Hi. I'm not sure, if this the right place to ask, but I tried to ask this in perl-forum, without success. I had Apache 2.0 and mod_perl1. Now I upgraded to Apache 2.2.6 and mod_perl2. I have html-pages where I use mason code. $r->header_out("Refresh" => "5; url=$url"); This code worked...
  11. JackTheRussel

    header_out problem

    Hi. I have had Apache 2.0 and mod_perl1. Now I upgraded to Apache 2.2.6 and mod_perl2. I had html-pages where I had mason code. $r->header_out("Refresh" => "5; url=$url"); This code worked fine in my previous system. Now when run my application, I get this error: Can't locate object...
  12. JackTheRussel

    Can't locate Apache/Request.pm in @INC

    Hi. I have Apache 2.2.6 and mod_perl2 Now When I try to start apache, I get error: Can't locate Apache/Request.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi... I know that the Request.pm founds here...
  13. JackTheRussel

    glob different files + regular expression

    Hi. I have tried to glob all files which extensions are .wav, .mid, .mp3 I don't know how to "use" regular expression, could some on help me? Now I can glob only files which extension are .mp3 #Go to folder where music-files locate. my $music_path = "/home/some/music"; chdir ($music_path)...
  14. JackTheRussel

    $CGI::POST_MAX doesn't work

    Hi. I have made HTML-form where user can upload picture and write picture description. Then form calls script.cgi. How can I set, that user can't upload images which are larger than 10 kt? I have tried to do it like this, but it doesn't works. script.cgi #!/usr/bin/perl -w use strict; use...
  15. JackTheRussel

    calling functions in cgi

    Hi. How can I call different functions (in different buttons) ? I have form where is upload-image button and execute button and textarea column. Upload-image button let users to browse filesystem and select picture and then script saves picture to the folder /tmp. execute-button writes...
  16. JackTheRussel

    Can't find string terminator &quot;END_HTML&quot; anywhere before EOF

    Hi. I found nice picture upload script, but it wont work. When I choose picture to upload and push the send button, nothing happens. The screen is just white. When I look to the error-file I found these errors: [Mon Oct 08 14:18:10 2007] [error] [client 127.0.0.1] Can't find string...
  17. JackTheRussel

    perl-mason problem.

    Hi. I'm not sure is this the correct forum, but I couln't find any mason section. I'm trying to set up the perl-mason. I have FC5 and My apache version is 2.0 and I have installed perl-HTML-Mason 1.69. Now when I try to add this line: PerlModule HTML::Mason::ApacheHandler <LocationMatch...
  18. JackTheRussel

    DBI. Get query results

    Hi. How can I get part of the SQL-query results save ? Example If I get this kind of results: Name: table1 Engine: MyISAM Version: 10 Row_format: Dynamic And I just would like to have these results in save: table1 10 I found one module called: DBIx::DWIW, and I can take part of results...
  19. JackTheRussel

    The best way to write data into table ?

    Hi. I need to get information from database tables. I try to get part of information which I get when I run commands: mysql>use database1; mysql>show table status; result: Name: table1 Engine: InnoDB Version: 10 Row_format: Compact Rows: 1 Avg_row_length: 11255 Data_length: 15584...
  20. JackTheRussel

    How add path into @INC variable ?

    Hi. How can I add path into @INC variable? I have place where I have lots of .pm files. Now I would like to add path to @INC variable, because it is troublesome to add this line in every perl script use lib /path Thanks !

Part and Inventory Search

Back
Top