Dec 04, 2008, 03:10 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
Search via SMF or Google: modx forums all of modxcms.com web
  MODxCMS.com   Forums   Help Login Register  
News:Read what MODx Developers say: MODx Dev. Blogs
Pages: 1 2 [3] 4 5 ... 11   Go Down
  Print  
Author Topic: MODx 0.9.6 Issues  (Read 42897 times)
0 Members and 1 Guest are viewing this topic.
Mproject
Full Member
***
Posts: 172



« Reply #30 on: May 28, 2007, 11:52 AM »

NOTE: Please only post in this thread clearly identified issues and errors.  If you are unsure what is going on still, start a thread to explore that before posting in this thread, once you know what the issue is and that it is an issue specific to 0.9.6.

@Mproject: I can't reproduce this problem on any upgrades or new installations I've performed.  Can you provide more information about the steps you took?  And have you made sure to clear your browser's local cache?  Firefox especially likes to hold on to old versions of js and css files at times that can cause some wierd conflicts following an upgrade if you don't clear the cache first.
I installed fresh version od modx on a new server....  I cleared cache several times and even restarted my computer... but I still don't see QE on the site
Till now, i Used 0.9.6 RC1 and it was all fine...

P.S. seems to be the CSS problem, so I am sorry....
« Last Edit: May 28, 2007, 12:24 PM by Mproject » Logged

Sorry 'bout my english Smiley
Mr. Drably
Jr. Member
*
Posts: 3


« Reply #31 on: May 28, 2007, 06:41 PM »

I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"

has it always done this? because I never had the opportunity to sign up a web user with 0.9.5, nor use the blog feature.

I even get the same error on the installation from opensourcecms

I don't understand why its doing this Sad
« Last Edit: May 28, 2007, 08:08 PM by Mr. Drably » Logged
akadama
Guest
« Reply #32 on: May 29, 2007, 02:15 AM »

AjaxSeach doesn't display this string in utf-8 like the others (like defined for all the site).
Quote
Cliquez ici pour voir tous les résultats.
« Last Edit: May 29, 2007, 03:13 AM by akadama » Logged
Uncle68
Moderators
*
Posts: 296



« Reply #33 on: May 29, 2007, 03:26 AM »

I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"

This is a bug, see http://modxcms.com/forums/index.php/topic,14253.msg97219.html#msg97219

Easy to fix (but hard to find out): just remove the wsu_ part of the names of the inputs in the template for the web signup.
But when that is done you will have problems if displaying the websignup form at the same time as displaying the side bar login form because there is a naming conflict.

Sorry for this confusing answer, it's early here Tongue

I hope some one smarter than me will greate a new login system based on eForm, the current one is not really good. I tried to make a new one based on eForm, but came up with no good solution so far.
Logged
gspark
Member
**
Posts: 90


« Reply #34 on: May 29, 2007, 04:39 AM »

Document's alias is not sticking, keeps going blank after you save
That's odd. I can't reproduce it, either. Does this happen to you in more than one browser?

I'm using Mac with the latest modx stable release 0.9.6 and have confirmed in Safari, Firefox and Camino that the document alias does not stick
Logged
robb01
Jr. Member
*
Posts: 3


« Reply #35 on: May 29, 2007, 07:17 AM »

I have the same problem: the alias doesn't stick - in all browsers...
Obscure Error: Second argument is not an array. in ..../manager/processors/save_content.processor.php on line 859

SOS
Robert
Logged
robb01
Jr. Member
*
Posts: 3


« Reply #36 on: May 29, 2007, 10:59 AM »

No, that´s not...

now following error (really the same as before):

Warning: strtr(): The second argument is not an array. in .../manager/processors/save_content.processor.php on line 859

Warning: Cannot modify header information - headers already sent by (output started at .../manager/processors/save_content.processor.php:859) in .../manager/processors/save_content.processor.php on line 563

after change the save_content.processor.php with the old one of 0.9.5. there are no errors - but i didn´t go into the deap...

« Last Edit: May 29, 2007, 11:07 AM by robb01 » Logged
Mr. Drably
Jr. Member
*
Posts: 3


« Reply #37 on: May 29, 2007, 12:22 PM »

I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"

This is a bug, see http://modxcms.com/forums/index.php/topic,14253.msg97219.html#msg97219

Easy to fix (but hard to find out): just remove the wsu_ part of the names of the inputs in the template for the web signup.
But when that is done you will have problems if displaying the websignup form at the same time as displaying the side bar login form because there is a naming conflict.

Sorry for this confusing answer, it's early here Tongue

I hope some one smarter than me will greate a new login system based on eForm, the current one is not really good. I tried to make a new one based on eForm, but came up with no good solution so far.

I got it fixed without any conflicts with the sidebar login by just changing only the values in websignup.inc.php to the same that are in the FormSignup chunk.

starting at line 28:
Code:
$username = $modx->db->escape($modx->stripTags($_POST['username']));
to
Code:
$username = $modx->db->escape($modx->stripTags($_POST['wsu_username']));

line 30:
Code:
$email = $modx->db->escape($modx->stripTags($_POST['email']));
to
Code:
$email = $modx->db->escape($modx->stripTags($_POST['wsu_email']));

line 31:
Code:
$password = $modx->db->escape($modx->stripTags($_POST['password']));
to
Code:
$password = $modx->db->escape($modx->stripTags($_POST['wsu_password']));


Then at line 72:
Code:
if ($_POST['password']!=$_POST['confirmpassword']) {
Change to:
Code:
if ($_POST['wsu_password']!=$_POST['confirmpassword']) {

hope this helps Cheesy
« Last Edit: May 29, 2007, 12:25 PM by Mr. Drably » Logged
OpenGeek
MODx Co-Founder
Foundation
*
Posts: 5,055


looking a little more like my avatar again...


WWW
« Reply #38 on: May 29, 2007, 12:48 PM »

Reminder:

Quote
NOTE: Please only post in this thread clearly identified issues and errors.  If you are unsure what is going on still, start a thread to explore that, then once you know what the issue is and that it is an issue specific to 0.9.6, post here and link back to the discovery thread or a proper bug report.
« Last Edit: May 29, 2007, 05:39 PM by OpenGeek » Logged

Jason Coward
MODx Co-Founder
xPDO Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
The spirit of a warrior is not geared to indulging and complaining, nor is it geared to winning or losing. The spirit of the warrior is geared only to struggle, and every struggle is a warrior's last battle on earth. Thus the outcome matters very little to him. In his last battle on earth a warrior lets his spirit flow free and clear. And as he wages his battle, knowing that his intent is impeccable, a warrior laughs and laughs.
  — don Juan Matus
OpenGeek
MODx Co-Founder
Foundation
*
Posts: 5,055


looking a little more like my avatar again...


WWW
« Reply #39 on: May 29, 2007, 02:31 PM »

Yep. I actually see the problem in my English installation as well. I wonder what changed that made this box too small for its contents.
Their is an include file defined that contains support contact information.  This default used to be included and displayed on the login page (manager/includes/support.inc.php), but since it was converted to a placeholder, it was never placed on the new login.html pages that are in each manager theme.  If you add [+SupportInfo+] to your login.html, right after the [+OnManagerLoginFormRender+] placeholder, this will show the support include and should solve the mystery as to why the submit button is going outside the box.

You simply provide a file at manager/includes/override.support.inc.php to have the login form include a custom support message instead of the default MODx one.
Logged

Jason Coward
MODx Co-Founder
xPDO Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
The spirit of a warrior is not geared to indulging and complaining, nor is it geared to winning or losing. The spirit of the warrior is geared only to struggle, and every struggle is a warrior's last battle on earth. Thus the outcome matters very little to him. In his last battle on earth a warrior lets his spirit flow free and clear. And as he wages his battle, knowing that his intent is impeccable, a warrior laughs and laughs.
  — don Juan Matus
OpenGeek
MODx Co-Founder
Foundation
*
Posts: 5,055


looking a little more like my avatar again...


WWW
« Reply #40 on: May 29, 2007, 02:36 PM »

I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"

This is a bug, see http://modxcms.com/forums/index.php/topic,14253.msg97219.html#msg97219

Easy to fix (but hard to find out): just remove the wsu_ part of the names of the inputs in the template for the web signup.
But when that is done you will have problems if displaying the websignup form at the same time as displaying the side bar login form because there is a naming conflict.

Sorry for this confusing answer, it's early here Tongue

I hope some one smarter than me will greate a new login system based on eForm, the current one is not really good. I tried to make a new one based on eForm, but came up with no good solution so far.
Can one of you please turn this into a proper bug report and reference it back here?  These inconsistencies should be fixed for an 0.9.6.1 patch release.
Logged

Jason Coward
MODx Co-Founder
xPDO Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
The spirit of a warrior is not geared to indulging and complaining, nor is it geared to winning or losing. The spirit of the warrior is geared only to struggle, and every struggle is a warrior's last battle on earth. Thus the outcome matters very little to him. In his last battle on earth a warrior lets his spirit flow free and clear. And as he wages his battle, knowing that his intent is impeccable, a warrior laughs and laughs.
  — don Juan Matus
OpenGeek
MODx Co-Founder
Foundation
*
Posts: 5,055


looking a little more like my avatar again...


WWW
« Reply #41 on: May 29, 2007, 02:44 PM »

Document's alias is not sticking, keeps going blank after you save
That's odd. I can't reproduce it, either. Does this happen to you in more than one browser?
I'm using Mac with the latest modx stable release 0.9.6 and have confirmed in Safari, Firefox and Camino that the document alias does not stick
I need a proper bug report to track this one; please include precise steps to reproduce the problem (and as much relevant environment information as possible) so we can identify the problem source and resolve it as quickly as possible.  Please reference the bug report back here.
Logged

Jason Coward
MODx Co-Founder
xPDO Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
The spirit of a warrior is not geared to indulging and complaining, nor is it geared to winning or losing. The spirit of the warrior is geared only to struggle, and every struggle is a warrior's last battle on earth. Thus the outcome matters very little to him. In his last battle on earth a warrior lets his spirit flow free and clear. And as he wages his battle, knowing that his intent is impeccable, a warrior laughs and laughs.
  — don Juan Matus
Uncle68
Moderators
*
Posts: 296



« Reply #42 on: May 29, 2007, 03:58 PM »

I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"

This is a bug, see http://modxcms.com/forums/index.php/topic,14253.msg97219.html#msg97219
Can one of you please turn this into a proper bug report and reference it back here?  These inconsistencies should be fixed for an 0.9.6.1 patch release.

Added: #884
« Last Edit: May 29, 2007, 04:01 PM by Uncle68 » Logged
BBloke
Full Member
***
Posts: 201



« Reply #43 on: May 29, 2007, 04:39 PM »

I have installed modx 0.9.6 as an upgrade and I have found this thread to fix the managers login box size problem.  However I found that the managers forgot password link was missing.  The code was in there but the system events were not ticked at all.

I also foundTinyMCE upgrade too and the system events were also unchecked.

Ajax search has stopped working completely and does not return any results nor does it use a landing form (I've previously tried updating Ajaxsearch and the same happening when running modx 0.9.5.

I check the prototype.js error on the show/hide effect and the files are identical, just for info.

I did notice that with Ajaxsearch it gave me a new plugin called "Search Hightlighting" whereas before I was using "Search_Highlighting" not sure if there is a relationship there. Sad

I know this is probably not the way to post.  Sorry.  Pretty new to Modx but I do like it so and getting used to it slowly.
Logged

BBloke
gspark
Member
**
Posts: 90


« Reply #44 on: May 30, 2007, 03:16 AM »

how to add a bug report ? do we have to register again on the bugs forum ?

Apparently this bug was already filed # 874 apparently the alias will work if set to UTF-8 character coding
« Last Edit: May 30, 2007, 03:20 AM by gspark » Logged
Pages: 1 2 [3] 4 5 ... 11   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP

Copyright © 2005-2008 MODxCMS, All rights reserved. Contact Us
Styles by ziworks.com

Powered by SMF 1.1.4 | SMF © 2005, Simple Machines LLC

Valid XHTML 1.0! Valid CSS!