Re: [PHP] RE: AJAX with POST

2009-04-04 Thread Bruno Fajardo
Ajax is asynchronous. The option of asynchronous or synchronous can be set in the XMLHTTPRequest object (used by Ajax), but a synchronous call is not Ajax. Cheers, Bruno. 2009/4/5 Phpster > Ajax can be both async and sync. Itsbthe fourth param in the open call and > I believe by default it's a

Re: [PHP] RE: AJAX with POST

2009-04-04 Thread Phpster
Ajax can be both async and sync. Itsbthe fourth param in the open call and I believe by default it's a sync call not async Bastien Sent from my iPod On Apr 4, 2009, at 21:33, Skip Evans wrote: But my function using GET does seem to wait. Granted I cobbled it together from various samples

Re: [PHP] AJAX with POST

2009-04-04 Thread Phpster
Yep, much more Bastien Sent from my iPod On Apr 4, 2009, at 21:24, Skip Evans wrote: Hey Bastien & all, ...D'oh! Thanks for the catch, yes, I am sending args on the URL. But more to my problem, if I switch to POST will IE be able to submit more data? If so, I can parse the URL down in t

Re: [PHP] Possible Server Infection?

2009-04-04 Thread TG
Had to deal with a rogue PHP based backdoor situation recently. Two remote management scripts were installed somehow that would allow you to do something like what you describe. You probably want to download a fresh copy of the entire site (assuming you don't have remote shell access and/or th

Re: [PHP] RE: AJAX with POST

2009-04-04 Thread Skip Evans
But my function using GET does seem to wait. Granted I cobbled it together from various samples and didn't author it from my own deep understanding of the exact process, but here's the snippet that does the real work. req.open('GET', url, false); req.send(null); if(req.responseText) { if(

Re: [PHP] AJAX with POST

2009-04-04 Thread Skip Evans
Hey Bastien & all, ...D'oh! Thanks for the catch, yes, I am sending args on the URL. But more to my problem, if I switch to POST will IE be able to submit more data? If so, I can parse the URL down in the function and build a proper post transaction, but my real problem is IE can't submit, ap

[PHP] RE: AJAX with POST

2009-04-04 Thread Brad Broerman
Well, as the "A" in Ajax is asynchronous, there's no real way to make it wait. What you would normally do is use a callback: function createXHRObject( ) { if (typeof XMLHttpRequest != "undefined") { return new XMLHttpRequest(); } else if (typeof

Re: [PHP] Submitting URLs in IE

2009-04-04 Thread Phpster
On Apr 4, 2009, at 14:07, Skip Evans wrote: Hey all, I have an application that uses AJAX to submit a page created in the FCKeditor. It builds a URL and then submits that to the server with a JavaScript call like this: req.open('GET', url, false); In Firefox it works great for just ab

Re: [PHP] ms-word reading from PHP on linux O.S

2009-04-04 Thread Phpster
On Apr 4, 2009, at 15:19, 9el wrote: On Tue, Feb 24, 2009 at 1:38 PM, Per Jessen wrote: Srinivasa Rao D wrote: Hi all, * How better, i can read ms-word doc files from PHP on LINUX OS*. [snip] *Is there are any other softwares that can fetch text from MS-WORD file?.*

Re: [PHP] AJAX with POST

2009-04-04 Thread Phpster
On Apr 4, 2009, at 17:30, Skip Evans wrote: Hey all, At the risk of being told this is a PHP and not a JS list, but also knowing the discussions on this list, to the benefit of all I believe, very wildly, I'm posting this JS code snippet for some advice. As I posted earlier, my AJAX

[PHP] Possible Server Infection?

2009-04-04 Thread sono-io
Hi all, I was wondering if someone might know about a problem I'm having on my server. It appears that I've been infected by a rogue PHP script(?). Something has gone through my server and placed .htaccess files in every directory that didn't have one with contents that look like this:

RE: [PHP] I'm new

2009-04-04 Thread Andrés Robinet
> -Original Message- > From: doctortomor...@gmail.com [mailto:doctortomor...@gmail.com] On Behalf > Of 9el > Sent: Sábado, 04 de Abril de 2009 12:52 p.m. > To: Andrés Robinet; php-general@lists.php.net > Subject: Re: [PHP] I'm new > > > Hi Roly, > > As previously advised, the best you

[PHP] AJAX with POST

2009-04-04 Thread Skip Evans
Hey all, At the risk of being told this is a PHP and not a JS list, but also knowing the discussions on this list, to the benefit of all I believe, very wildly, I'm posting this JS code snippet for some advice. As I posted earlier, my AJAX app that uses a GET to post to the server (and get

Re: [PHP] ms-word reading from PHP on linux O.S

2009-04-04 Thread 9el
On Tue, Feb 24, 2009 at 1:38 PM, Per Jessen wrote: > Srinivasa Rao D wrote: > > > Hi all, > > * How better, i can read ms-word doc files from PHP on LINUX > > OS*. > [snip] > > > > *Is there are any other softwares that can fetch text from MS-WORD > > file?.* > Word documents r

[PHP] Submitting URLs in IE

2009-04-04 Thread Skip Evans
Hey all, I have an application that uses AJAX to submit a page created in the FCKeditor. It builds a URL and then submits that to the server with a JavaScript call like this: req.open('GET', url, false); In Firefox it works great for just about any size page you could want, but IE just stop

Re: [PHP] I'm new

2009-04-04 Thread 9el
Hi Roly, As previously advised, the best you can do to get started is to install a bundle http://www.apachefriends.org/en/xampp-windows.html If you are a native Spanish speaker (I'm guessing, because of your "salu2") check the PHP-MySQL tutorials here http://www.illasaron.com/, you can find

Re: [PHP] PHP/MySQL ISP recommendation that lets one edit ft_min_word_len variable?

2009-04-04 Thread Richard Heyes
Hi, > Can anyone here recommend an ISP that will let me have a dedicated > server (not shared), and also allow me to adjust the ft_min_word_len > mySQL parameter?  I was originally thinking Dreamhost PS, but I > recently found out that they do not allow changes to mySQL > environmental variables.

Re: [PHP] suhosin and sessions

2009-04-04 Thread Michael A. Peters
Michael A. Peters wrote: suhosin forum is currently down so I can't ask there. I'm using https for login but the rest of the site is not https www.domain.com is regular secure.domain.com is https I set the session cookie this way: ini_set("session.cookie_domain",".domain.com"); Works beautif

RE: [PHP] I'm new

2009-04-04 Thread Ernie Kemp
Good day, I suggest going to an all in one package such as "http://www.wampserver.com/";. .../Ernie -Original Message- From: doctortomor...@gmail.com [mailto:doctortomor...@gmail.com] On Behalf Of 9el Sent: April-04-09 11:35 AM To: abdulazeez alugo Cc: rol...@gmail.com; php-general@lists.

Re: [PHP] I'm new

2009-04-04 Thread 9el
>> Hello people, Is my first time that I try to do a web page with PHP and I >> don't have Idea how I can do, but I read something tutorial and I can see >> that is not difficult, I hope that I can do, what I need to work ??? with >> PHP and MYSQL ??? Where I can to get this software because I go t

Re: [PHP] PHP/MySQL ISP recommendation that lets one edit ft_min_word_len variable?

2009-04-04 Thread Michael A. Peters
Rob Gould wrote: Can anyone here recommend an ISP that will let me have a dedicated server (not shared), and also allow me to adjust the ft_min_word_len mySQL parameter? I was originally thinking Dreamhost PS, but I recently found out that they do not allow changes to mySQL environmental variabl

RE: [PHP] I'm new

2009-04-04 Thread abdulazeez alugo
> Date: Sat, 4 Apr 2009 07:13:22 -0800 > From: rol...@gmail.com > To: php-general@lists.php.net > Subject: [PHP] I'm new > > Hello people, Is my first time that I try to do a web page with PHP and I > don't have Idea how I can do, but I read something tutorial and I can see > that is not diffi

[PHP] PHP/MySQL ISP recommendation that lets one edit ft_min_word_len variable?

2009-04-04 Thread Rob Gould
Can anyone here recommend an ISP that will let me have a dedicated server (not shared), and also allow me to adjust the ft_min_word_len mySQL parameter? I was originally thinking Dreamhost PS, but I recently found out that they do not allow changes to mySQL environmental variables. I really need

[PHP] I'm new

2009-04-04 Thread ®0L¥
Hello people, Is my first time that I try to do a web page with PHP and I don't have Idea how I can do, but I read something tutorial and I can see that is not difficult, I hope that I can do, what I need to work ??? with PHP and MYSQL ??? Where I can to get this software because I go to www.mysql

[PHP] suhosin and sessions

2009-04-04 Thread Michael A. Peters
suhosin forum is currently down so I can't ask there. I'm using https for login but the rest of the site is not https www.domain.com is regular secure.domain.com is https I set the session cookie this way: ini_set("session.cookie_domain",".domain.com"); Works beautifully w/o suhosin - the log

Re: [PHP] rft file problems

2009-04-04 Thread tedd
At 6:06 PM -0400 4/3/09, Paul M Foster wrote: On Fri, Apr 03, 2009 at 01:18:08PM -0400, tedd wrote: Hi gang: I'm trying to provide an ".rft" file via a link on one of my sites, like so: > Mid Term -snip- Are you sure you don't mean ".rtf", as in Rich Text Format? If misspelled that w

[PHP] Re: Weird problem with T_gettext()

2009-04-04 Thread Michelle Konzack
Am 2009-04-04 10:13:52, schrieb Per Jessen: > Michelle Konzack wrote: > > > Now selecting "de" as prefered language is working, but if I > > select "de_DE" in Firefox, the second term "About Us" is > > something like "Über Uns" insteed "Über Uns" because the Website is > > UTF-8. >

Re: [PHP]scheduled task in php IN FIREFOX

2009-04-04 Thread Ashley Sheridan
On Fri, 2009-04-03 at 16:20 +0100, Stuart wrote: > 2009/4/3 Andrew Williams : > > That is a better idea but the program needs about five minutes to complete. > > Would that not be a problem? > > No more so that it would be in a browser. > > -Stuart > > > On Fri, Apr 3, 2009 at 2:44 PM, Stuart

Re: [PHP] Weird problem with T_gettext()

2009-04-04 Thread Per Jessen
Michelle Konzack wrote: > Now selecting "de" as prefered language is working, but if I > select "de_DE" in Firefox, the second term "About Us" is > something like "Über Uns" insteed "Über Uns" because the Website is > UTF-8. Indeed. I'll venture a guess and say it's because your di