Search found 21 matches
- Wed Jul 29, 2009 5:36 pm
- Forum: Developers Discussion
- Topic: alias in unicode
- Replies: 7
- Views: 2986
Re: alias in unicode
Hi Sonya Thank you for reply :) I thought that nobody like my patch :) Anyway, you are somehow right. I also prefer to have ASCII in my URI but I can't say this to my clients. There are thousends of sites that support unicode in URI, one of them is famous Wikipedia. If you continue reading the HTML4...
- Tue Jul 28, 2009 8:59 pm
- Forum: Developers Discussion
- Topic: alias in unicode
- Replies: 7
- Views: 2986
Re: alias in unicode
up!
We are working 1+ year this way and it's working like a charm (expect redirection that alias must be in ASCII).
Any reason why we don't see this in next version of CMSMS?
We are working 1+ year this way and it's working like a charm (expect redirection that alias must be in ASCII).
Any reason why we don't see this in next version of CMSMS?
- Tue Jul 28, 2009 7:59 pm
- Forum: Modules/Add-Ons
- Topic: news module and resize of images...
- Replies: 11
- Views: 3835
Re: news module and resize of images...
Cause at that time i didn't know that i can fix resized image in MSIE with
The question still reminds, does all modern browsers know to resize image without destroying it?
[1]http://css-tricks.com/ie-fix-bicubic-sc ... or-images/
Code: Select all
img { -ms-interpolation-mode: bicubic; }[1]
[1]http://css-tricks.com/ie-fix-bicubic-sc ... or-images/
- Sat Dec 06, 2008 12:10 pm
- Forum: Developers Discussion
- Topic: alias in unicode
- Replies: 7
- Views: 2986
Re: alias in unicode
up...
Anyone? There is new version but i didn't see this patch applied...
Anyone? There is new version but i didn't see this patch applied...
- Mon Oct 13, 2008 3:20 pm
- Forum: Tips and Tricks
- Topic: Embed YouTube videos with valid XHTML
- Replies: 46
- Views: 53527
Re: Embed YouTube videos with valid XHTML
i didn't check but it's copy paste from your code...
I didn't change HTML a bit...
I didn't change HTML a bit...
- Fri Oct 10, 2008 9:39 pm
- Forum: CMS Show Off
- Topic: Fishing Site
- Replies: 32
- Views: 11190
Re: Fishing Site
Yeah sure... anyway good luck with SEO.
- Fri Oct 10, 2008 9:24 pm
- Forum: CMS Show Off
- Topic: Fishing Site
- Replies: 32
- Views: 11190
Re: Fishing Site
linux
- Fri Oct 10, 2008 9:20 pm
- Forum: CMS Show Off
- Topic: Fishing Site
- Replies: 32
- Views: 11190
Re: Fishing Site
sure... here are screenshots...
this is when page is loaded and "domready":
http://confiq.org/1.png
and this is when i remove z-index and position:relative from body
http://confiq.org/2.png
this is when page is loaded and "domready":
http://confiq.org/1.png
and this is when i remove z-index and position:relative from body
http://confiq.org/2.png
- Fri Oct 10, 2008 8:57 pm
- Forum: CMS Show Off
- Topic: Fishing Site
- Replies: 32
- Views: 11190
Re: Fishing Site
I'm using flash-block and i can't see your site... even when i allow the flash it hangs there untill i remove z-index and position relative from body. Even then flash is back 
I can't surf the site with flash-block addon....

I can't surf the site with flash-block addon....
- Fri Oct 10, 2008 6:44 pm
- Forum: Modules/Add-Ons
- Topic: RSStoHTML Feed Problem
- Replies: 6
- Views: 1761
- Fri Oct 10, 2008 6:36 pm
- Forum: Developers Discussion
- Topic: [SOLVED] How to modify "Edit Content"-Page in admin-menue
- Replies: 3
- Views: 1552
Re: [SOLVED] How to modify "Edit Content"-Page in admin-menue
it would be nice if we could see in next version the option to disable those <input for non-admin users...
I'll probably need to write a hack that checks if user is in group and only then to disable it
I'll probably need to write a hack that checks if user is in group and only then to disable it

- Fri Oct 10, 2008 4:55 pm
- Forum: Tips and Tricks
- Topic: Embed YouTube videos with valid XHTML
- Replies: 46
- Views: 53527
Re: Embed YouTube videos with valid XHTML
Hi alinome.net... Your code inspired me to write this one... function smarty_cms_function_youtube($params, &$smarty) { global $gCms; if(isset($params['id'])) { $id = $params['id']; } elseif(isset($params['url'])) { list(,$url) = explode('?',$params[url],2); parse_str($url,$to); $id = $to[v]; } i...
- Thu Oct 09, 2008 11:43 am
- Forum: Layout and Design (CSS & HTML)
- Topic: CSS padding or margin issues with Firefox
- Replies: 5
- Views: 2478
Re: CSS padding or margin issues with Firefox
I would like to correct you here... The site is wrong designed and was made for MSIE only, that's why it's not working on FF.Grudgeuk wrote: Got a site which works lovely in IE, but when I open a certain page in FF,

Try using firebug for FF and you'll see the real power of FF!
- Thu Oct 09, 2008 12:00 am
- Forum: Modules/Add-Ons
- Topic: news module and resize of images...
- Replies: 11
- Views: 3835
Re: news module and resize of images...
here is it.... [confiq@server News]$ diff News.module.php News.module.php.backup 681,693c681,687 < // start - generate thumbnail image < if ($_POST[m1_category] == 2 && @getimagesize($_FILES[$fieldname]['tmp_name'])) { < $dest = cms_join_path($config['uploads_path'],'news','id'.$item...
- Wed Oct 08, 2008 7:06 pm
- Forum: Modules/Add-Ons
- Topic: news module and resize of images...
- Replies: 11
- Views: 3835
Re: news module and resize of images...
well, i'm using file upload system of news module to upload the image. The same image i'm using in my template so i'll show in index. I call it, ex: {news template="index_with_image.tpl"}. using wysiwyg is not a option. I guess news module can't help me on this one... Just wanted to check ...