0.10beta3
Re: 0.10beta3
Yes, I still have it in my email somewhere. However, you should probably check and make sure that it's up to date with 0.10beta3.
Re: 0.10beta3
News upgrade works fine now thanks, love the new admin layout great work, i dont know if its just me but the News 2 doesnt have a WYSIWYG or help file,
Thank you for sharing this superb script with us
Thank you for sharing this superb script with us

Re: 0.10beta3
I'm very happy with the new beta:
[attachment deleted by admin]
- admin theme is gorgeous
- glad you removed the language selection from login page
- I've been wanting to suggest a switch for the nav tools - it's super that you implemented this function
- on the top of my admin pages, i see this
Warning: vsprintf(): too few arguments in /data/homewww/isuew/webdir/cms/lib/translation.functions.php on line 35
Warning: vsprintf(): too few arguments in /data/homewww/isuew/webdir/cms/lib/translation.functions.php on line 35 - news module not working in german version - language strings not found (see image)
[attachment deleted by admin]
Last edited by Alex_Leipzig on Mon May 23, 2005 12:31 pm, edited 1 time in total.
Re: 0.10beta3
Hi Alex,
can you, or any other, help by solving this problem, described here -> http://forum.cmsmadesimple.org/index.ph ... 944.0.html
It´s very urgent.
Otherwise I have to downgrade to Version 0.9.2.
Thanks in advance
-miketmc
can you, or any other, help by solving this problem, described here -> http://forum.cmsmadesimple.org/index.ph ... 944.0.html
It´s very urgent.
Otherwise I have to downgrade to Version 0.9.2.
Thanks in advance
-miketmc
Last edited by miketmc on Mon May 23, 2005 1:06 pm, edited 1 time in total.
Re: 0.10beta3
Changing only one word in a page and than this:
Template Error: filename: file ./libjs/layersmenu-header.ijs does not exist.
Template Error: loadfile: While loading tplfile, does not exist or is empty.
Template Error: subst: unable to load tplfile.
Template Error: filename: file ./libjs/layersmenu-footer.ijs does not exist.
Template Error: loadfile: While loading tplfile, does not exist or is empty.
Template Error: subst: unable to load tplfile.
Warning: Smarty error: unable to read resource: "db:cms-install-successful-" in C:\xampp\htdocs\beta2\lib\smarty\Smarty.class.php on line 1088
Template Error: filename: file ./libjs/layersmenu-header.ijs does not exist.
Template Error: loadfile: While loading tplfile, does not exist or is empty.
Template Error: subst: unable to load tplfile.
Template Error: filename: file ./libjs/layersmenu-footer.ijs does not exist.
Template Error: loadfile: While loading tplfile, does not exist or is empty.
Template Error: subst: unable to load tplfile.
Warning: Smarty error: unable to read resource: "db:cms-install-successful-" in C:\xampp\htdocs\beta2\lib\smarty\Smarty.class.php on line 1088
Re: 0.10beta3
Wir haben wohl die gleichen Fehler und die sehen fast böser aus , als die vorige Beta.can you, or any other, help by solving this problem, described here -> http://forum.cmsmadesimple.org/index.ph ... 944.0.html
Re: 0.10beta3
ja, ich habe phplayers 1.1 "drüberinstalliert" --> dann geht es wieder!piratos wrote:Wir haben wohl die gleichen Fehler und die sehen fast böser aus , als die vorige Beta.can you, or any other, help by solving this problem, described here -> http://forum.cmsmadesimple.org/index.ph ... 944.0.html
Re: 0.10beta3
Can I ask if the lack of scrollbars in the admin of beta2 has been fixed in beta3? What I mean by this is that in IE6 I get no scrollbars in the admin section and need to click drag the mouse on a fixed part of the page to get to the bottom.
And the Page Alias field not appearing until you re-open a new page for editing? Fixed?
If not, I'll wait before upgrading.
Everything else rocks fairly hard.
And the Page Alias field not appearing until you re-open a new page for editing? Fixed?
If not, I'll wait before upgrading.
Everything else rocks fairly hard.
Last edited by iNSiPiD on Tue May 24, 2005 5:00 am, edited 1 time in total.
Re: 0.10beta3
And the mother of all feature requests - friendly URL rewriting via Apache's mod_rewrite.
THIS WOULD BE UNREAL!!!!
I've been attempting to write the ultimate global rewrite rule for CMSMS pages based on the index.php?page=$1 pattern and have so far only managed to visit numerous dire migraines upon my tortured brain. This mod is a complete biatch and 'clear' and complete documentation is very hard to come by.
I have, however, written many individual page rewrites that look like this:
RewriteRule ^home/$ /index.php?page=home [R]
RewriteRule ^home$ /index.php?page=home
This means that if you type in yourdomain/home or yourdomain/home/ it will redirect to index.php?page=home. There is a subtle distinction between these that requires [R], meaning Refresh, to be used at the end of the rule for home/. Why? I don't know. Unfortunately the [R] also means that the browser's address bar updates with the actual URL.
A live example of this can be seen here:
http://www.hepatitis.org.au/home
and not as nicely here:
http://www.hepatitis.org.au/home/
THIS WOULD BE UNREAL!!!!
I've been attempting to write the ultimate global rewrite rule for CMSMS pages based on the index.php?page=$1 pattern and have so far only managed to visit numerous dire migraines upon my tortured brain. This mod is a complete biatch and 'clear' and complete documentation is very hard to come by.
I have, however, written many individual page rewrites that look like this:
RewriteRule ^home/$ /index.php?page=home [R]
RewriteRule ^home$ /index.php?page=home
This means that if you type in yourdomain/home or yourdomain/home/ it will redirect to index.php?page=home. There is a subtle distinction between these that requires [R], meaning Refresh, to be used at the end of the rule for home/. Why? I don't know. Unfortunately the [R] also means that the browser's address bar updates with the actual URL.
A live example of this can be seen here:
http://www.hepatitis.org.au/home
and not as nicely here:
http://www.hepatitis.org.au/home/
PHPLayers
In phplayers.module.php has the $config['root_url'] at this time no value.
Change this as follow and it works:
Change this as follow and it works:
function ContentPreRender(&$content)
{
global $gCms;
$config = $this->cms->config;
$config['root_url']="http://localhost/beta3"; // Your Path as in the config.php
$text= '
';
$content = ereg_replace("", $text."", $content);
}
Re: 0.10beta3
Insipid: Because having the / at the end would throw off all relative paths because the browser thinks that it is one level deeper than it actually is. We DO need to come up with a good soution to this on the fly. Intersol has done some tricks with rewriting on tle fly already, but I'm going to look at expanding this after 0.10 comes out.
Piratos: This is already fixed in svn. The real problem was that the constructor was getting overridden and not calling the base construtor first. So $this->cms was never gettting set.
Piratos: This is already fixed in svn. The real problem was that the constructor was getting overridden and not calling the base construtor first. So $this->cms was never gettting set.
Re: 0.10beta3
Here you can find the lates german language file - no vsprinf - error.Warning: vsprintf(): too few arguments in /data/homewww/isuew/webdir/cms/lib/translation.functions.php on line 35
Warning: vsprintf(): too few arguments in /data/homewww/isuew/webdir/cms/lib/translation.functions.php on line 35
The Extension is TXT but it is a zip-File, you must rename it.
[attachment deleted by admin]
Re: 0.10beta3
Thanx a lot, Piratos, works fine!
But the problem that I mentioned above remains: with German, the News admin is completely useless. In IE, I get the following error message (translated from German):
Line: 53
Character: 3
Error: Object required
Code: 0
URL: .../cms/admin/moduleinterface.php?module=News
Any help is appreciated, I need a working News module to complete my project!
But the problem that I mentioned above remains: with German, the News admin is completely useless. In IE, I get the following error message (translated from German):
Line: 53
Character: 3
Error: Object required
Code: 0
URL: .../cms/admin/moduleinterface.php?module=News
Any help is appreciated, I need a working News module to complete my project!
Last edited by Alex_Leipzig on Tue May 24, 2005 12:38 pm, edited 1 time in total.
Beta3 dows not work with Linux
This or nearly this are the errors with Linux (Mozilla and Firefox ).Fatal error: Smarty error: [in preview:cmspreviewY9UpnB line 229]: syntax error: unrecognized tag: size: 21cm 29.7cm; margin: 2cm (Smarty_Compiler.class.php, line 436) in /opt/lampp/htdocs/beta3/lib/smarty/Smarty.class.php on line 1088
PHPLayers doesn't work too(my dirty trick has no function).