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

    validation of checkbox

    Hello! How do i validate the input of checkbox usind validation.xml in struts? I just want to let user submit my form only if checkbox checked. Thank you.
  2. cyberrate

    Encoding

    Hello! i have apache2 running on my server. I have a problem with displaying Cyrilic characters, the line <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> in the head of my html document should do the trick, but it doesn't i still see some rubish letters, when i go...
  3. cyberrate

    Newbie: how to get parameter in JSP

    Hello everyone! How can i get a parameter sent from another page via POST method? <logic:present name="xxx"> seems to be getting only attributes set by request.setAttribute()
  4. cyberrate

    image handling

    Here is a function that i use to upload images submitted by users of a web page: function uploadimg($image_path, $image_id, $new_w, $new_h, $compression) { $src_img = imagecreatefromJPEG("$image_path/$image_id.jpg"); list($width, $height, $type, $attr) =...
  5. cyberrate

    Group by

    Hello! I have a table t_photos from which i want to make a top 20 of all photos so i try: select * from t_photos where user_sex = '0' and status='1' and rated_times > '15' and rated_times < '900' group by user_id order by score desc i put 'group by user_id' because i want one user to have...
  6. cyberrate

    safe_mode

    Hello! I'm having a problem with php safe_mode, the thing is that i cant turn it off. I'm running Apache/2.0.48 on Linux/SuSE with confixx, however i tryed to change the php.ini file and then restart apache2 but still my phpinfo() says that safe_mode is on, then i a confixx_vhost.conf file...
  7. cyberrate

    rm directory

    Hello! How do i remove directory from shell on Linux machine? I tryed: rm -d myDir but it still says: rm: cannon remove directory 'myDir' : Is a directory Anyone?
  8. cyberrate

    Custom 404

    Hello ! Can i specify the custom 404 (Document not found) file for specifuc directory on my web server, and if i can than how? Thanx
  9. cyberrate

    installing mod_rewrite

    Hello! I have Apache/2.0.48 on Linux/SuSE how do i install mod_rewrite? I don't have this line : "LoadModule rewrite_module modules/mod_rewrite.so" in my httpd.conf file and all other modules are just included in this file like this: "Include /etc/apache2/mod_info.conf" so there is no...
  10. cyberrate

    redirect with mod_rewrite

    Hello! How do i redirect a request going to www.server.com/people/userName to www.server.com/profile.php?username=userName with mod_rewrite ? Thank you.
  11. cyberrate

    DBI installed but not loaded

    ok i installed DBI via ppm (i have ActivePerl 5.8 on Windows XP) i'm sure that i put use DBI(); in my .pl file but it prints this: Can't locate object method &quot;connect&quot; via package &quot;DBI&quot; What seems to be wrong?
  12. cyberrate

    Socket

    Hello! Does anyone know a good example of Perl application to accept simple Socket connections that works under Linux?
  13. cyberrate

    CPAN

    Hello! I'm sorry if this is to easy but how do i install packages downloaded from CPAN I have Windows XP and ActiveState.
  14. cyberrate

    Array

    How do i use an array in my app? I understand that i need to import some packages first? Which and how?
  15. cyberrate

    import Package

    Hello i'm new to perl! How can i load a package, a perl module (.pl file) to another .pl file? in PHP it was import &quot;myFile.php&quot;; Java: import &quot;package.*&quot;; How does it work in perl ?

Part and Inventory Search

Back
Top