NMS Crashes Server
Re: NMS Crashes Server
Good to know you got it working. Any chance you could nail it down to exactly what was causing it?
Re: NMS Crashes Server
Try to increase php memory to 64M in config.phpreidjazz wrote: Good to know you got it working. Any chance you could nail it down to exactly what was causing it?
Alby
Re: NMS Crashes Server
Alby,alby wrote:Try to increase php memory to 64M in config.phpreidjazz wrote: Good to know you got it working. Any chance you could nail it down to exactly what was causing it?
Alby
This worked...many thanks to you. It might be worth mentioning a minimum memory requirement in the release notes, although I guess each server might handle this differently.
reidjazz
Re: NMS Crashes Server
Calm down people!
I think i know the problem, and the solution!
Look at NMS configuration and change de delay between each message. Set a higher value.
This happens because of your client/server connection latency.
It will take longer to proccess jobs, but should work.
Let me know
I think i know the problem, and the solution!
Look at NMS configuration and change de delay between each message. Set a higher value.
This happens because of your client/server connection latency.
It will take longer to proccess jobs, but should work.
Let me know
[SOLVED]Re: NMS Crashes Server[/SOLVED]
First of all, I don't see anybody out of control here...just wanting to find a solution.viebig wrote: Calm down people!
I think i know the problem, and the solution!
Look at NMS configuration and change de delay between each message. Set a higher value.
This happens because of your client/server connection latency.
It will take longer to proccess jobs, but should work.
Let me know
Secondly, tried that (as suggested by an earlier post...please read them) and that didn't work...for me (might work for others). What DID work was to increase the memory allocation in config.php. Apparently the updated NMS requires more juice.
Last edited by reidjazz on Thu Sep 04, 2008 10:45 pm, edited 1 time in total.
Re: NMS Crashes Server
If anyone still has this problem, it may be because of urls with $_GET parameters (such as index.php?page=Home ).
In function make_absolute_links, the ? in the url is misinterpreted in the reg expression, causing a loop to go forever.
A simple :
$input_uri = str_replace('?','\?',$input_uri);
before //Replaces the relative URI with the absolute one
(in function make_absolute_links)
will do the trick.
In function make_absolute_links, the ? in the url is misinterpreted in the reg expression, causing a loop to go forever.
A simple :
$input_uri = str_replace('?','\?',$input_uri);
before //Replaces the relative URI with the absolute one
(in function make_absolute_links)
will do the trick.
Last edited by plger on Thu Oct 23, 2008 11:50 pm, edited 1 time in total.
Re: NMS Crashes Server
I am having the same problem
The problem is definativly related to embedded links in the HTML
If I use the smarty cms_selflink ext when I use any url with embedded ?
then it works fine , otherwise the job processes crashes
Im going to try the fix suggested by plger and will let you know.
The problem is definativly related to embedded links in the HTML
If I use the smarty cms_selflink ext when I use any url with embedded ?
then it works fine , otherwise the job processes crashes
Im going to try the fix suggested by plger and will let you know.
Re: NMS Crashes Server
plger wrote: If anyone still has this problem, it may be because of urls with $_GET parameters (such as index.php?page=Home ).
In function make_absolute_links, the ? in the url is misinterpreted in the reg expression, causing a loop to go forever.
A simple :
$input_uri = str_replace('?','\?',$input_uri);
before //Replaces the relative URI with the absolute one
(in function make_absolute_links)
will do the trick.
Can anyone help please - which file do i put this in?
Re: NMS Crashes Server
Function make_absolute_links can be find in functions.utils.php, line 128richard-s wrote:plger wrote: If anyone still has this problem, it may be because of urls with $_GET parameters (such as index.php?page=Home ).
In function make_absolute_links, the ? in the url is misinterpreted in the reg expression, causing a loop to go forever.
A simple :
$input_uri = str_replace('?','\?',$input_uri);
before //Replaces the relative URI with the absolute one
(in function make_absolute_links)
will do the trick.
Can anyone help please - which file do i put this in?
