Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 296
Search took 1.71 seconds.
Search: Posts Made By: nkrgupta
Forum: HTML & CSS 03-19-2009, 11:31 AM
Replies: 2
Views: 769
Posted By nkrgupta
Thanks a lot. The thread pointed me to the right...

Thanks a lot. The thread pointed me to the right direction. However, for the time being I got the thing to work by applying a browser hack to conditionally put style.display = block or table-row.
Forum: HTML & CSS 03-18-2009, 09:39 PM
Replies: 2
Views: 769
Posted By nkrgupta
Problem in Firefox - Cells shifting on changing style.display value

Hi,

I've written a small program which outputs a table containing certain number of rows. Each of the rows, when clicked, triggers a javascript function which then shows another row hidden...
Forum: Perl/ CGI 02-23-2009, 11:02 PM
Replies: 2
Views: 1,570
Posted By nkrgupta
Was that a work order being given? Is it a one...

Was that a work order being given? Is it a one off job you want to get done or you really want to know how to use Perl to get it done?

All right....

1) How much of Perl coding do you know?
2)...
Forum: Perl/ CGI 02-10-2009, 12:05 PM
Replies: 2
Views: 1,829
Posted By nkrgupta
To add to bazz's reply, if you have shell access...

To add to bazz's reply, if you have shell access to your website, you can log in to the directory where the script is, and issue the command

chmod 755 filename

If you email your hosting...
Forum: Perl/ CGI 02-10-2009, 11:54 AM
Replies: 1
Views: 1,381
Posted By nkrgupta
Hi, Following is a part of code which I had...

Hi,

Following is a part of code which I had used sometime ago produce simple XML files without the attributes. I also used XML::Simple and NoAttr tag.

#!/usr/bin/perl

use strict;
use CGI...
Forum: Perl/ CGI 07-11-2008, 06:45 PM
Replies: 4
Views: 1,415
Posted By nkrgupta
Seems to be htaccess/htpasswd...

Seems to be htaccess/htpasswd (http://httpd.apache.org/docs/2.0/programs/htpasswd.html) authentication. Looks like the passwords are stored in plain text somewhere, from where you give it them back...
Forum: Perl/ CGI 07-02-2008, 12:38 PM
Replies: 1
Views: 1,226
Posted By nkrgupta
I guess a major part of your while loop comes...

I guess a major part of your while loop comes after

if ($stored_business_id != $business_id)
{
next;
}


(asking since its not included in your code)
Forum: Perl/ CGI 07-02-2008, 12:10 PM
Replies: 14
Views: 1,544
Posted By nkrgupta
In the screenshot, I can see the value of $file...

In the screenshot, I can see the value of $file being out as mp3s\\Supernatural\\01 (De Le) Yaleo.mp3?stream=1

As Kevin suggested above, you need to strip out the invalid character from this...
Forum: Perl/ CGI 07-02-2008, 11:45 AM
Replies: 2
Views: 2,262
Posted By nkrgupta
In order to get the form data processed by Perl,...

In order to get the form data processed by Perl, you should use the CGI (http://search.cpan.org/%7Elds/CGI.pm-3.38/CGI.pm) module. The you must use the DBI...
Forum: DOM and JSON scripting 06-05-2008, 06:13 PM
Replies: 1
Views: 1,085
Posted By nkrgupta
Hi, Solved. Had a few div tags floated left...

Hi,

Solved. Had a few div tags floated left and right which were not required.

Thanks
Forum: DOM and JSON scripting 06-05-2008, 05:32 PM
Replies: 1
Views: 1,085
Posted By nkrgupta
Strange alignment problem in IE7

Hi,

I've made a picture gallery using jQuery - http://gallery.naveeng.com/trek.html . Its showing fine in FireFox and to some extent in IE6, but its behaving strangely in IE 7. When any thumbnail...
Forum: JavaScript frameworks 06-05-2008, 12:31 PM
Replies: 1
Views: 9,754
Posted By nkrgupta
Solved. Thanks.

Solved. Thanks.
Forum: JavaScript frameworks 06-05-2008, 06:53 AM
Replies: 1
Views: 9,754
Posted By nkrgupta
jQuery + jCarousel Picture Gallery working fine in Firefox but not in IE

Hi,
I'm trying to make a picture gallery using jCarousel (
http://sorgalla.com/projects/jcarousel/ ) and other jQuery features,
powered by Perl/CGI and XML at the backend.

The initial...
Forum: Computer/PC discussions 04-30-2008, 02:44 PM
Replies: 2
Views: 3,941
Posted By nkrgupta
Thanks weazel. I've downloaded CCleaner and will...

Thanks weazel. I've downloaded CCleaner and will see how it works. Seems to be good. :)

Regards,
Naveen
Forum: Computer/PC discussions 04-30-2008, 06:32 AM
Replies: 2
Views: 3,941
Posted By nkrgupta
Free and O/S alternative to Window Washer/Desktop Maestro?

Hi,

Can anyone suggest an equally effective and efficient free and open source alternative to PC optimization softwares such as Webroot's Window Washer or PCTool's Desktop Maestro (earlier called...
Forum: Perl/ CGI 04-29-2008, 05:45 AM
Replies: 2
Views: 1,078
Posted By nkrgupta
If leeching your profile details from that...

If leeching your profile details from that website is what I understand you want to achieve, then you can do it using Perl. There are many ways, and the one which comes immediately to my mind is...
Forum: Perl/ CGI 04-25-2008, 12:45 PM
Replies: 5
Views: 2,409
Posted By nkrgupta
#!/usr/bin/perl use strict; use CGI...

#!/usr/bin/perl

use strict;
use CGI qw(:standard);

print "content-type:text/html\n\n";


my $word = param('word') || $ARGV[0];
my $dict = param('dict')==1?"../sowpods.txt":"../TWL06.txt";
Forum: Perl/ CGI 04-25-2008, 06:27 AM
Replies: 5
Views: 2,409
Posted By nkrgupta
Thank you chaosprime. You are correct. The...

Thank you chaosprime. You are correct. The factorials were becoming really nasty. And hence the problem.

However, I got the problem solved with the help of another expert on a different forum....
Forum: Perl/ CGI 04-18-2008, 01:30 PM
Replies: 5
Views: 1,453
Posted By nkrgupta
Without looking at your code, we cannot even ...

Without looking at your code, we cannot even determine where lies the problem, let alone solving it. If you want, you can just paste the relevant portion of the code where the form fields are being...
Forum: Perl/ CGI 04-18-2008, 12:15 PM
Replies: 5
Views: 1,453
Posted By nkrgupta
Please post your complete html and Perl code.

Please post your complete html and Perl code.
Forum: JavaScript frameworks 04-16-2008, 02:54 PM
Replies: 3
Views: 11,584
Posted By nkrgupta
I'm still waiting :)

I'm still waiting :)
Forum: JavaScript frameworks 04-15-2008, 06:47 PM
Replies: 3
Views: 11,584
Posted By nkrgupta
[jQuery] jqModal + Form plugin - Page reloading in Firefox on form submit

Hi,

The problem lies here - http://www.naveeng.com/test/ - default username given there, password: naveen

I've tried a million workarounds for this, but it just doesn't seem to work in Firefox!...
Forum: Perl/ CGI 04-15-2008, 06:19 AM
Replies: 6
Views: 928
Posted By nkrgupta
Why not use the rows()...

Why not use the rows() (http://search.cpan.org/%7Etimb/DBI-1.604/DBI.pm#rows) function of the DBI module instead?

$no_of_rows = $sth->rows();
print qq~Your search has brought $no_of_rows...
Forum: Perl/ CGI 04-11-2008, 07:44 PM
Replies: 16
Views: 1,958
Posted By nkrgupta
Instead of just looking at the output, I should...

Instead of just looking at the output, I should have completely analysed the 1 liner and also been more specific before commenting. :)

Actually I had tested and referred to the code posted by bazz...
Forum: Perl/ CGI 04-11-2008, 07:16 PM
Replies: 16
Views: 1,958
Posted By nkrgupta
Probably you are correct, I just gave the...

Probably you are correct, I just gave the modules' URL in case the OP wants to implement it in production scenario. :)



Yes it will print ok. Because it is finding the port in $v. But my point...
Showing results 1 to 25 of 296

 
Forum Jump

All times are GMT +1. The time now is 02:57 PM.