473,394 Members | 1,742 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Script halts after 60 minutes

Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138

php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.

Checked if php was running in safe mode, and it wasn't.

Are there any other reasons that can cause this behavior?

Thanks!

mvh
MK
Jan 31 '08 #1
15 2260
And, a funny thing I think it always halts at the same line, which
looks like this:

$string_2 = file_get_contents($string_1);
Jan 31 '08 #2
In article <ba**********************************@e6g2000prf.g ooglegroups.com>,
Mikhail Kovalev <mi*************@mail.ruwrote:
>And, a funny thing I think it always halts at the same line, which
looks like this:

$string_2 = file_get_contents($string_1);
Try

echo $string1."\n";

That might explain what's happening. You may be trying to access a
locked file, and get a time-out while waiting for release.

-A
Jan 31 '08 #3
On 1 Feb, 00:52, a...@spamcop.net (axlq) wrote:
In article <bad6f896-4f0f-4b84-a779-bf1c082bc...@e6g2000prf.googlegroups.com>,
Mikhail Kovalev *<mikhail_kova...@mail.ruwrote:
And, a funny thing I think it always halts at the same line, which
looks like this:
* *$string_2 = file_get_contents($string_1);

Try

echo $string1."\n";

That might explain what's happening. *You may be trying to access a
locked file, and get a time-out while waiting for release.

-A
$string_1 is an url address, or hundreds of different, but similar
(same host) url address which are opened after each other. I know at
least some of them are working as I am able to watch the script
progress. I guess the reason it halts at this line is because
file_get_contents($string_1) usually takes around 1 second, while all
other following commands are just milliseconds. Statistically it makes
sence.

Basically, my problem is to get the script work longer than 3600
seconds

A friend of mine uses same script on a Mac OS X 10.5 with PHP 5.?.?,
with no problems
Feb 1 '08 #4
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138

php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.

Checked if php was running in safe mode, and it wasn't.

Are there any other reasons that can cause this behavior?

Thanks!

mvh
MK
Does your server have a timeout value specified?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Feb 1 '08 #5
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK

Does your server have a timeout value specified?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?
Feb 1 '08 #6
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK
Does your server have a timeout value specified?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. Are you running
PHP as a module or a CGI? What does phpinfo() show you for your timeout
value?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Feb 1 '08 #7
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK
Does your server have a timeout value specified?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?

I wouldn't think that would give a 3600 second timeout. *Are you running
PHP as a module or a CGI? *What does phpinfo() show you for your timeout
value?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/

Timeouts Connection: 300 - Keep-Alive: 15
Is this it
Feb 1 '08 #8
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK
Does your server have a timeout value specified?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. Are you running
PHP as a module or a CGI? What does phpinfo() show you for your timeout
value?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

http://07db0bc537297586.paste.se/

Timeouts Connection: 300 - Keep-Alive: 15
Is this it
It looks like you're running PHP as a CGI, not a module. Do you have a
timeout set for your CGI's? For instance, if you're using FastCGI it is
an option there, IIRC.

BTW - why are you running PHP as a CGI instead of a module?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Feb 1 '08 #9
On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK
Does your server have a timeout value specified?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. *Are you running
PHP as a module or a CGI? *What does phpinfo() show you for your timeout
value?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/
Timeouts * Connection: 300 - Keep-Alive: 15
Is this it

It looks like you're running PHP as a CGI, not a module. *Do you have a
timeout set for your CGI's? *For instance, if you're using FastCGI it is
an option there, IIRC.

BTW - why are you running PHP as a CGI instead of a module?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
I had no idea!
I had both php4 and php5 installed, and switched from php4 to php5 by
changing the LoadModule line in httpd.conf...

What exactly could I do to make it run as a module?
Feb 1 '08 #10
On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
\localhost\www\somefile.php on line 138
php.ini setting fixes default max execution time at 30 sec,
In the script itself I have set_time_limit(0);
I have also tried set_time_limit(90000); with no luck.
Checked if php was running in safe mode, and it wasn't.
Are there any other reasons that can cause this behavior?
Thanks!
mvh
MK
Does your server have a timeout value specified?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. *Are you running
PHP as a module or a CGI? *What does phpinfo() show you for your timeout
value?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/
Timeouts * Connection: 300 - Keep-Alive: 15
Is this it

It looks like you're running PHP as a CGI, not a module. *Do you have a
timeout set for your CGI's? *For instance, if you're using FastCGI it is
an option there, IIRC.

BTW - why are you running PHP as a CGI instead of a module?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
OK, figured it out. I used Denwer Apache + php4 distribution (some
years ago) which installs php as cgi
Somehow the cgi mode was preserved through upgrade... Reinstalled and
testing.

Thanks for pointing out the details!=)
Feb 1 '08 #11
Mikhail Kovalev wrote:
On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
>>\localhost\www\somefile.php on line 138
>>php.ini setting fixes default max execution time at 30 sec,
>>In the script itself I have set_time_limit(0);
>>I have also tried set_time_limit(90000); with no luck.
>>Checked if php was running in safe mode, and it wasn't.
>>Are there any other reasons that can cause this behavior?
>>Thanks!
>>mvh
>>MK
>Does your server have a timeout value specified?
>--
>==================
>Remove the "x" from my email address
>Jerry Stuckle
>JDS Computer Training Corp.
>jstuck...@attglobal.net
>==================
Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. Are you running
PHP as a module or a CGI? What does phpinfo() show you for your timeout
value?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/
Timeouts Connection: 300 - Keep-Alive: 15
Is this it
It looks like you're running PHP as a CGI, not a module. Do you have a
timeout set for your CGI's? For instance, if you're using FastCGI it is
an option there, IIRC.

BTW - why are you running PHP as a CGI instead of a module?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

OK, figured it out. I used Denwer Apache + php4 distribution (some
years ago) which installs php as cgi
Somehow the cgi mode was preserved through upgrade... Reinstalled and
testing.

Thanks for pointing out the details!=)
Good - glad to see you found it.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Feb 1 '08 #12
On 1 Feb, 23:35, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
>Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
>\localhost\www\somefile.php on line 138
>php.ini setting fixes default max execution time at 30 sec,
>In the script itself I have set_time_limit(0);
>I have also tried set_time_limit(90000); with no luck.
>Checked if php was running in safe mode, and it wasn't.
>Are there any other reasons that can cause this behavior?
>Thanks!
>mvh
>MK
Does your server have a timeout value specified?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. *Are you running
PHP as a module or a CGI? *What does phpinfo() show you for your timeout
value?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/
Timeouts * Connection: 300 - Keep-Alive: 15
Is this it
It looks like you're running PHP as a CGI, not a module. *Do you havea
timeout set for your CGI's? *For instance, if you're using FastCGI itis
an option there, IIRC.
BTW - why are you running PHP as a CGI instead of a module?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
OK, figured it out. I used Denwer Apache + php4 distribution (some
years ago) which installs php as cgi
Somehow the cgi mode was preserved through upgrade... Reinstalled and
testing.
Thanks for pointing out the details!=)

Good - glad to see you found it.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Weirdest thing, this didn't fix the problem, still getting a fatal
error after 3600 seconds

Is it possible that this feature is somehow pre-compiled in the php
distribution package I'm using? If so, I may want to change to
something else
Feb 2 '08 #13
Mikhail Kovalev wrote:
On 1 Feb, 23:35, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Mikhail Kovalev wrote:
>>On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
>>>Mikhail Kovalev wrote:
>>>>Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
>>>>\localhost\www\somefile.php on line 138
>>>>php.ini setting fixes default max execution time at 30 sec,
>>>>In the script itself I have set_time_limit(0);
>>>>I have also tried set_time_limit(90000); with no luck.
>>>>Checked if php was running in safe mode, and it wasn't.
>>>>Are there any other reasons that can cause this behavior?
>>>>Thanks!
>>>>mvh
>>>>MK
>>>Does your server have a timeout value specified?
>>>--
>>>==================
>>>Remove the "x" from my email address
>>>Jerry Stuckle
>>>JDS Computer Training Corp.
>>>jstuck...@attglobal.net
>>>==================
>>Timeout 300 in httpd.conf?
>I wouldn't think that would give a 3600 second timeout. Are you running
>PHP as a module or a CGI? What does phpinfo() show you for your timeout
>value?
>--
>==================
>Remove the "x" from my email address
>Jerry Stuckle
>JDS Computer Training Corp.
>jstuck...@attglobal.net
>==================
http://07db0bc537297586.paste.se/
Timeouts Connection: 300 - Keep-Alive: 15
Is this it
It looks like you're running PHP as a CGI, not a module. Do you have a
timeout set for your CGI's? For instance, if you're using FastCGI it is
an option there, IIRC.
BTW - why are you running PHP as a CGI instead of a module?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
OK, figured it out. I used Denwer Apache + php4 distribution (some
years ago) which installs php as cgi
Somehow the cgi mode was preserved through upgrade... Reinstalled and
testing.
Thanks for pointing out the details!=)
Good - glad to see you found it.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

Weirdest thing, this didn't fix the problem, still getting a fatal
error after 3600 seconds

Is it possible that this feature is somehow pre-compiled in the php
distribution package I'm using? If so, I may want to change to
something else
Not that I know of. There should be no timeout in the PHP package. I
guess there could be in your OS; I've never seen one but then I haven't
had something run for 3600 cpu seconds, either. I didn't see anything
in the bug list on the php site which looked like it is related, either.

I still think there's another setting out there we aren't seeing, but I
don't know where it is.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Feb 2 '08 #14
Greetings, Mikhail Kovalev.
In reply to Your message dated Saturday, February 2, 2008, 17:40:50,
Weirdest thing, this didn't fix the problem, still getting a fatal
error after 3600 seconds
Is it possible that this feature is somehow pre-compiled in the php
distribution package I'm using? If so, I may want to change to
something else
I think Your problem is that You're trying to run Your script from a
webserver. Looks like You're using PHP as command interpreter to do some
tricky task. Try to start Your script from commandline.

And check Your code twice. Probably You should not have it running that long,
but instead You may split whole process and deal with single URL at a time.

I'm never had such problem happened to me, even having scripts working for
hours (literally - 7-8 hours), but these scripts was runned from commandline.
--
Sincerely Yours, AnrDaemon <an*******@freemail.ru>

Feb 7 '08 #15
On Feb 2, 4:04*pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 23:35, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:55, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
On 1 Feb, 20:16, Jerry Stuckle <jstuck...@attglobal.netwrote:
Mikhail Kovalev wrote:
>On 1 Feb, 03:47, Jerry Stuckle <jstuck...@attglobal.netwrote:
>>Mikhail Kovalev wrote:
>>>Fatal error: Maximum execution time of 3600 seconds exceeded in z:\home
>>>\localhost\www\somefile.php on line 138
>>>php.ini setting fixes default max execution time at 30 sec,
>>>In the script itself I have set_time_limit(0);
>>>I have also tried set_time_limit(90000); with no luck.
>>>Checked if php was running in safe mode, and it wasn't.
>>>Are there any other reasons that can cause this behavior?
>>>Thanks!
>>>mvh
>>>MK
>>Does your server have a timeout value specified?
>>--
>>==================
>>Remove the "x" from my email address
>>Jerry Stuckle
>>JDS Computer Training Corp.
>>jstuck...@attglobal.net
>>==================
>Timeout 300 in httpd.conf?
I wouldn't think that would give a 3600 second timeout. *Are you running
PHP as a module or a CGI? *What does phpinfo() show you for your timeout
value?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
http://07db0bc537297586.paste.se/
Timeouts * Connection: 300 - Keep-Alive: 15
Is this it
It looks like you're running PHP as a CGI, not a module. *Do you have a
timeout set for your CGI's? *For instance, if you're using FastCGI it is
an option there, IIRC.
BTW - why are you running PHP as a CGI instead of a module?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
OK, figured it out. I used Denwer Apache + php4 distribution (some
years ago) which installs php as cgi
Somehow the cgi mode was preserved through upgrade... Reinstalled and
testing.
Thanks for pointing out the details!=)
Good - glad to see you found it.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Weirdest thing, this didn't fix the problem, still getting a fatal
error after 3600 seconds
Is it possible that this feature is somehow pre-compiled in the php
distribution package I'm using? If so, I may want to change to
something else

Not that I know of. *There should be no timeout in the PHP package. *I
guess there could be in your OS; I've never seen one but then I haven't
had something run for 3600 cpu seconds, either. *I didn't see anything
in the bug list on the php site which looked like it is related, either.

I still think there's another setting out there we aren't seeing, but I
don't know where it is.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
I finally narrowed it down to a bit of code which causes the problem,
by trial and error, and you can imagine it was not easy to do because
each test takes 60 min. Could be a bug...

There were some things I didn't mentioned:
- The problem existed only in Windows for some reason. The script
always worked perfectly in Unix systems.
- I had an earlier version of the script with slightly different
features which didn't had the same problem. So basically, I checked
every minor update I made there, and it turned out the line which
either activates some security trigger or something is include_once()
inside one of the functions, I changed it to include() and moved it to
global level and the problem disappeared. Weird...
Feb 24 '08 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: siliconmike | last post by:
Hi, I'm looking for a reliable script that would connect to a host and somehow determine whether an email address is valid. since getmxrr() only gets the mx records.. Links/pointers ? Mike
15
by: kpp9c | last post by:
I am kind of in a bit of a jam (okay a big jam) and i was hoping that someone here could give me a quick hand. I had a few pages of time calculations to do. So, i just started in on them typing...
4
by: hupjack | last post by:
I finally joined the millions of cell phone users out there. I'm the 2nd phone on what is now a family share plan. (Our two cell phones use minutes from a central 400 minute peak time pool.)...
1
by: vasanth kumar | last post by:
Hi All, Is it possible to run a script after specified amount of time after login. I made an online test tool. I want to end the test after 20 minutes. At present one who is writing the exam...
1
by: Gene Goykhman | last post by:
Hi there. Has anyone experienced an intermittent problem where only functions from the first included script tag are available to the onLoad event handler? An example: <html> <head> <script...
9
by: ALuPin | last post by:
Hi newsgroup users, I have the following java-script: </SCRIPT> </head> <body text='' link='' vlink='' alink='' bgcolor='FFFFFF'> <p> <center><TABLE cellSpacing=1 cellPadding=1...
6
by: VK | last post by:
I'm using window.open method in my script to open poup window. Recently Internet Explorer users reported that the script crashes on their machine with different runtime errors. See the bug:...
2
by: Penguiniator | last post by:
I have a script that writes the body tag and adds a background image to its containing page. This page is displayed in an iframe inside a td tag of a table constructed with javascript. The table...
7
by: divya | last post by:
What is an equivalent TimeSerial() function of VBscript in the Java Script?? I have two variables hour and minutes. Timeserial(hour,minutes) returns the time hour : minutes. But I want to do...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.