CodeCharge Studio
search Register Login  

Visual PHP Web Development

Visually Create Internationalized Web Applications, Web Reports, Calendars, and more.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> General/Other

 CodeCharge Studio 3.2 Beta released!

Print topic Send  topic

Author Message
peterr


Posts: 5971
Posted: 06/09/2007, 9:33 PM

Hi all,

YesSoftware is preparing CCS 3.2 release with several new features that are being finalized. A Beta version (CCS 3.1.99.098) is now available for download and includes the following new functionality:

- 'Remember Me' option for Login forms
- Password encryption for storing passwords in database in encrypted format
- Support for XHTML and Section 508 standards (when creating new projects)
- Minor bug fixes for issues reported to support
Please refer to the Help file in the product for more information.

This Beta version of CodeCharge Studio 3.2 is stable but still being tested. No other functionality changes are scheduled for 3.2.

The Beta version of CCS 3.2 can be obtained from http://www.yessoftware.com/download/files/CCStudio3_2_Beta1.exe
The installation program will take you through the necessary upgrade steps, including uninstalling a previous version of CodeCharge Studio 3.x.
CCS 3.2 cannot be installed in parallel with a previous version 3.x.

Note: after any CCS version upgrade please press F9 after loading your project into CCS to properly regenerate and republish all project files. Do not forget backing up your projects before upgrading!

Please submit any problems to http://support.yessoftware.com/

Thanks for your support (and patience).
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
linardi

Posts: 2
Posted: 06/10/2007, 9:42 AM

Hi Peterr,
We are glad to hear CCS 3.2 is finally coming, but the issue is still: will it run under Vista? It seems not included in the new functionality. If not, when? Thanks for more explanation.
Linardi
View profile  Send private message
peterr


Posts: 5971
Posted: 06/10/2007, 9:53 AM

CCS was Vista compatible since January. Please check our updates page at http://support.yessoftware.com/updates.asp
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
Stanj

Posts: 166
Posted: 06/10/2007, 12:24 PM

CCS 3.2/PHP 4.1/MySql 4.xx
I installed the new Beta 3.2 and found after regenerating a project every page has a similar parser error and fails to open:
"Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in c:\php\www\booking\ships.php on line 17"

The lines referred to on each page are comment lines:
line 17 "//End guides_TotalRecords_BeforeShow"

The function defined just before this line has no closing "}"
One function alone in each code page has the missing curly bracket, usually about line 16.
Is anyone else having similar problems?
_________________
Stan
St Petersburg Russia
View profile  Send private message
Stanj

Posts: 166
Posted: 06/10/2007, 12:39 PM

Correction
The function closing bracket is there, further down the page, but in each page the parser fails at the line comment showing the end a function element.
_________________
Stan
St Petersburg Russia
View profile  Send private message
andrefogelman

Posts: 117
Posted: 06/10/2007, 12:45 PM

I have a different problem. I have a system with codecharge tools menu system and the menu disappeared. Also all my security stopped working even though the code is there.
View profile  Send private message
peterr


Posts: 5971
Posted: 06/10/2007, 1:34 PM

Stan,
I couldn't reproduce your problem. I re-generated an older Bookstore example created with previous CCS 3.1 and the Products page shows the total number of records correctly. Here is the corresponding Event:
//products_ProductsFound_BeforeShow @19-3E00C4BC  
function products_ProductsFound_BeforeShow(& $sender)  
{  
    $products_ProductsFound_BeforeShow = true;  
    $Component = & $sender;  
    $Container = & CCGetParentContainer($sender);  
    global $products; //Compatibility  
//End products_ProductsFound_BeforeShow  
  
//Retrieve number of records @39-ABE656B4  
    $Component->SetValue($Container->DataSource->RecordsCount);  
//End Retrieve number of records  
  
//Close products_ProductsFound_BeforeShow @19-137955EB  
    return $products_ProductsFound_BeforeShow;  
}  
//End Close products_ProductsFound_BeforeShow
Your error may be related to some modifications of Common.php, so I recommend that you delete Common.php and let it regenerate.
Or you can contact support because I don't think this is a global problem.

andrefogelman,
I suspect that CCT may have to update the menu component. As for security, have you maybe enabled password encryption? And actually what do you mean by "security stopped working"?
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
Stanj

Posts: 166
Posted: 06/10/2007, 11:36 PM

Hello Peter
I tried the fix-all of deleting commons files last night after my last post and sure enough the project returned to "working fine" status. Thank you for your right-on response. It seems that after all the different versions of CC and CCS from the beginning of YesSoftware, my only needs for contacts with Support has been for finding lost serial numbers or such. That is because this forum has been so effective in sharing information that is usually 1 or more steps ahead of me.
Thanks.....
I should not even been working on an important project since it was 48 hours without sleep when I tried getting into the project again......we are in the midst of White Nights here in Northern Russia, when it is light almost 24 hours of the day and a period of non-stop parties and festivals very day. After a few hours of sleep, I am heading out to further adventures and no CCS;>)
_________________
Stan
St Petersburg Russia
View profile  Send private message
lwismanuel


Posts: 39
Posted: 06/11/2007, 12:30 AM

This is a nice function 'CCEncryptString()'. Is there any limitation of what I could encrypt with it? Meaning the size of the string that can be encrypted and how strong is this encryption algorithm if I want to use it for sensitive data?
View profile  Send private message
feha


Posts: 712
Posted: 06/11/2007, 2:42 AM

Hello All

Thank you very much :-)
Especially for XHTML :-)

Kepp Up the good work , thank you.

_________________
Regards
feha

www.vision.to
feedpixel.com
View profile  Send private message
peterr


Posts: 5971
Posted: 06/11/2007, 12:05 PM

Hi lwismanuel,

The CCEncryptString() function is based on an assumed RC4 algorithm and is similar to the ASP version at http://www.4guysfromrolla.com/webtech/010100-1.shtml
It's quite strong when we use with 128-bit keys, while AFAIK you can use it with longer keys like 512-bit and there are no limits on string size. This function is provided to implement quick two-way encryption (decryptable) without requiring the PHP Mcrypt library (PHP) or being limited by lack of encryption functions (ASP). For certain uses you can also use the MD5 function provided with PHP (one way encryption / hashing), which we often use for encrypting passwords. The Mcrypt library can also be useful.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
andrefogelman

Posts: 117
Posted: 06/11/2007, 4:01 PM

Peterr
Whai I meant by:
"security stopped working"? is that before regenerating the project for the new release access to every restricted page the login page was automatically called. With 3.2 no login is required to see any page
View profile  Send private message
JimmyCrackedCorn

Posts: 583
Posted: 06/11/2007, 8:36 PM

Quote :
Please refer to the Help file in the product for more information.

Can we please get the help file without installing the upgrade? I cannot just blow away my current CCS installation to explore the beta but I'd sure like to know more about it. Please just give us a link so we can get this without the install package. Thanks.

_________________
Walter Kempees...you are dearly missed.
View profile  Send private message
dexter
Posted: 06/12/2007, 3:31 AM

Can CCS be made to use the MD5/SHA functions in MySQL??

Jan K. van Dalen
Posted: 06/12/2007, 8:33 AM

Ditto

"JimmyCrackedCorn" <JimmyCrackedCorn@forum.codecharge> wrote in message
news:2466e14a391d31@news.codecharge.com...
> Peter,
>
> Can we please get the help file without installing the upgrade? Seems like
> that
> would be a really good idea. I cannot just blow away my current CCS
> installation
> to explore the beta but I'd sure like to know more about it. Hence, my
> request
> for the help file! :)
>
> Thanx
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.yessoftware.com/
>
wkempees
Posted: 06/12/2007, 2:51 PM

dexter,

specifically you ask for the MySQL version.
You can do this yourself in the Custom Insert/Update/Delete
or by changing the SQL in the approproate events.

Or did I misunderstand your post?
Walter

peterr


Posts: 5971
Posted: 06/12/2007, 5:49 PM

Quote :
Can CCS be made to use the MD5/SHA functions in MySQL??

Yes. CCS 3.2 uses for encryption any function that you specify, whether MySQL or PHP function.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
peterr


Posts: 5971
Posted: 06/12/2007, 5:56 PM

Quote :
Can we please get the help file without installing the upgrade?
OK, uploaded to http://support.codecharge.com/temp/CCS32_Help.zip
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
JimmyCrackedCorn

Posts: 583
Posted: 06/12/2007, 9:43 PM

Thanks Peter.
_________________
Walter Kempees...you are dearly missed.
View profile  Send private message
guest
Posted: 06/13/2007, 1:37 AM

Walter

I was referring to Peterr's post:

- Password encryption for storing passwords in database in encrypted format

I think he's referring tp CCS encryption before the password is sent to the
database.

I was wondering about using the built-in MySQL encryption functions,
specifically for the login page. I'd like to store, for example,
MD5(paswword) in the database, then the login page should compare MD5(entred
password) with stored password (which is now encrypted).

dex


>>> wkempees<kempe819@planet.nl> 13/06/2007 7:51:52 am >>>
dexter,

specifically you ask for the MySQL version.
You can do this yourself in the Custom Insert/Update/Delete
or by changing the SQL in the approproate events.

Or did I misunderstand your post?
Walter



guest
Posted: 06/13/2007, 2:03 AM

Peterr, that's great! But will it work with Java? I notice in the help file
only asp/php/perl have encrypt/decrypt fucntions.

>>> peterr<peterr@forum.codecharge> 13/06/2007 10:49:35 am >>>
Quote :
Can CCS be made to use the MD5/SHA functions in MySQL??

Yes. CCS 3.2 uses for encryption any function that you specify, whether
MySQL
or PHP function.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
---------------------------------------
Sent from YesSoftware forum
http://forums.codecharge.com/


AQUANANU


Posts: 107
Posted: 06/14/2007, 6:58 AM

just a small request to YES team

Please fix up the small bugs which have been there since CCS 3.0

I have reported the same to support earlier and those cases are still open.

for eg. if you insert the component IMAGE using Forms tab from the Toolbar, the object is missing as soon as you try to set the value of the visible to dynamic and then CCS give Microsoft : jscript runtime error, class doesnt supports automation

I had to say this here as i had run out of paitence, since some of the bugs are Nov 2006 which need to be resolved atleast in the third release since reported
_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
andrefogelman

Posts: 117
Posted: 06/20/2007, 2:37 PM

I would like to know if we could have a probable timetable for the release of CCS 3.2
View profile  Send private message
AQUANANU


Posts: 107
Posted: 06/27/2007, 5:39 AM

has anyone enountered CCS Beta 3.2 Misbehaving, showing strange characters in the pages and even part of HTMl code, they pages have been regenerated from prev version where they didnt had any errors.

I have encountered today itself on three pages such character being shown in Design mode, if we open the HTML tab,and search for this __ -->, same is not found whereas It shows in the Design mode.

i suspect that the HTML handler in the IDE is having some code detection / recognisation bug.

__ -->

Please if anyone has, kindly confirm so we can give the YesTeam more details to reproduce the same.

_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
Vasiliy

Posts: 378
Posted: 06/28/2007, 8:40 AM

I did.
Could not understand where these "__ -->" came from.

Already deleted, but will keep an eye.
_________________
Vasiliy
View profile  Send private message
AQUANANU


Posts: 107
Posted: 06/28/2007, 1:18 PM

hey vasiliy

do u have <span> in ur html as pages having span were giving these __ -->, u must check the html must have also got corrupted somewhere or the other

_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
Vasiliy

Posts: 378
Posted: 06/30/2007, 1:20 PM

Yes, I do.
I use span to make Clear/Insert links look like a button.
_________________
Vasiliy
View profile  Send private message
AQUANANU


Posts: 107
Posted: 07/04/2007, 7:11 AM

another error ----- please confirm if anyone else has encountered the same.

ImageLink - Parameters being specified in Href source from properties windows are not being incorporated in the link, part of the variable name is also missing from the link href generated on execution of the page (in my case ASP).

Also the right click <A> parameters are different than the Parameters being specified in Href source from properties windows.

i.e. Parameters being specified in Href source from properties windows are not shown when you right click the imagelink and click on <A> Properties, i hope they should be the same and should be shown.
_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
JimmyCrackedCorn

Posts: 583
Posted: 07/15/2007, 9:18 PM

So its been almost 1-1/2 months since the beta was announced.

any word on how it is coming along? any plans for a release date? any news at all?
_________________
Walter Kempees...you are dearly missed.
View profile  Send private message
peterr


Posts: 5971
Posted: 07/18/2007, 1:16 AM

Hi,

Unfortunately a lot depends on Beta test results and the number of issues submitted to our support, while some issues are submitted at different times (even this week). We then have to confirm them and re-run various test cycles.
However, we now have to freeze this process and plan to release final CCS 3.2 version next week. Or in case of unexecpted delays we'll provide a release candidate version.

Thanks everyone who submitted feedback to us regarding this version!
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
 Page 1 of 2  Next Last


Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.