Re: Current Extensions Listing Directory at ICMS

Quote:

**Looks like its powered by Joomla! - so I guess that doesn't help.



We'll convert it :P

Topic


Re: Current Extensions Listing Directory at ICMS

  • 2009/4/27 6:46:14
  • Will

We currently are in the process of an overhaul of the addons site - I would be very interested in using your templates if you are up for sharing.

I was looking to do exactly what you have already done - so if you are indeed interested in sharing it would save me quite a bit of time.

**Looks like its powered by Joomla! - so I guess that doesn't help.

Topic


Re: Current Extensions Listing Directory at ICMS

  • 2009/4/27 5:53:55
  • ep98

the link is 90% in english

so duplicates gone, but linking remains (that's for sure)

Hmmm, Trac.... another help desk, will try a bug reports to the forum, and someone which know how to use this trac will move bugs to this Trac

May The Source Be With You !
Translations & Web Design
ImpressCMS Bulgaria
CMS Bulgaria - Translation, Templates, Support, Hosting
Topic


Re: Current Extensions Listing Directory at ICMS

Hi ep98,

I really appreciate the effort.

When is the last time you checked the addons site?
This weekend I've checked all duplicate files and made sure only the current ones were there.
Quote:

only those in the news, addons.impresscms.org includes many outdated not well supported by latest core modules


If there are problems with modules and the latest core we need to know about them. Are the problems reported? Would you mind reporting the problem in the bug tracker (trac) if it's not yet reported. The goal is indeed to have the modules in addons up-to-date and of course supported by the latest core.

Maybe we can work together on that goal.

I like the site that you made. Only realized it later on that it was made with Joomla .
And I don't know all the cyrillic letters, but that's a sidenote.

Thanks again for the effort. Contact me on PM, I have something for you.

Topic


Current Extensions Listing Directory at ICMS

  • 2009/4/27 3:46:27
  • ep98

Week ago I've started to reassemble my Downloads listing section on one of my sites (dedicated for reviewing open source applications and 3rd party extensions for them) in the new way, to be more sorted, clean view, local hosted downloads, easy to browse, search and use.

Here is an example how current addons site may looks - http://addonsbg.eu/index.php?option=com_zoo&view=category&layout=category&Itemid=107
This will be my section for currently presented modules on ICMS (only those in the news, addons.impresscms.org includes many outdated not well supported by latest core modules).

Current template needs some improvements and will do them in next week.

I wish to see this addons.impresscms.org to get such clean and sorted view :). And when u found the way I can help with maintenance of the files to be up to date, always.

So many times I've post to this forums for the subject local hosting or linking, but still not rule about this. Locally hosted files is preferable option, bcz author site may go down, sourceforge.net may get some problems (this happen very often last days).

May The Source Be With You !
Translations & Web Design
ImpressCMS Bulgaria
CMS Bulgaria - Translation, Templates, Support, Hosting
Topic


Re: Languages for Downloads site

Sorry Mistake.

Topic


Re: Downloads site: Work needed

ep98 posted in this thread. I've split his post into a new thread, because it's a good point he makes. Let's have a discussion about how the development of ImpressCMS is doing. Are we moving too slow?
See this thread:
http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=3293&post_id=30278

Topic


Re: The issues are the addon links

  • 2009/3/23 21:28:34
  • exp

Thanks! It is/was not really a problem, there was after the http a point in the first position, i think it is a permanent problem so i start this post! Glad to see you fix it very fast!

Andy

Topic


Re: The issues are the addon links

Part of the issue is how SourceForge has redirected their download links. The location of dl.sourceforge, net/... is not where the download link points - SF is redirecting the link there. All currently reported broken links that pointed to SF locations have been updated and tested.

Christian Web Resources
Facebook
Topic


Re: The issues are the addon links

  • 2009/3/23 10:33:21
  • Will

Well, go here.

The link there is shifty - sometimes it works sometimes it doesn't.

The true link for sf download is This

The addons site is going to be getting updated very soon. - We will take care to address this issue.

Topic


Re: The issues are the addon links

What is the problem andy?

Topic


The issues are the addon links

  • 2009/3/22 15:36:40
  • exp

Hi friends

Can you check the url please, as an example:
http://dl.sourceforge.net/sourceforge/impresscms/impresscms-module_cbb_v3.08.zip

Sometimes a little point makes a great impress ... same issue in the link to the frameworks

Andy

Topic


Re: anyone know a simple code to show when a user is online?

  • 2009/3/17 2:16:58
  • fouad

You can try this one:


<?php

$file_name = "whois_online.dat.php";
$c_time = time();
$timeout = 300;
$time = $c_time - $timeout;
$ip = getenv("REMOTE_ADDR");

if(!file_exists($file_name)){
$fp = fopen($file_name, "w");
fwrite($fp, "<?php die('Restricted File');?> \n");
fclose($fp);
}


$fp = fopen($file_name, "a");
$write = $ip."||".$c_time."\n";
fwrite($fp, $write);
fclose($fp);


$file_array = file($file_name);
$online_array = array();
for($x = 1; $x < count($file_array); $x++){
list($ip, $ip_time) = explode("||", $file_array[$x]);
if($ip_time >= $time){
array_push($online_array, $ip);
}
}

$online = array_unique($online_array);
$online = count($online);
if($online == "1"){
print "User online: $online"."<br>";
}else{
print "Users online: $online"."<br>";
}
?>

maryland vw | maryland mazda | maryland subaru | maryland used cars
Topic


Re: How do i install Addons?

http://wiki.impresscms.org/index.php?title=Adding_Modules

themes, have to be unzipped and uploaded to the themes folder.

Live as if you were to die tomorrow, Learn as if you were to live forever

The beauty of a living thing is not the atoms that go into it, but the way those atoms are put together!
Topic


How do i install Addons?

Hello, i would like to down load modules, themes, templates, etc but how do i install them to my imressCMS?

Your help will be highly appreciated.

Thanks

Ronnie

Topic


Re: anyone know a simple code to show when a user is online?

great! hey, thanks dude. it works perfect.

and my time is a piece of wax, fallen on the termite that's chokin' on the splinters
Topic


Re: anyone know a simple code to show when a user is online?

Here are some tips:
http://www.xoops.org/modules/newbb/viewtopic.php?viewmode=flat&type=&topic_id=67108&forum=27

VIL3/trabisdementia
Topic


anyone know a simple code to show when a user is online?

i've been trying to do this for a few hours now. so far, i've found the php code in misc.php to show when the user is online, but i'm looking for a code i can put into the yogurt_index.html template. something like:

<{if isOnline==1}>Offline<{else}>Online<{/if}>

i know that's not right and it doesn't work, but it's the best sortuv example i could think of...
any help would be greatly appreciated.
thanks

and my time is a piece of wax, fallen on the termite that's chokin' on the splinters
Topic


Re: download block ImpressCMS core upperleft corner

  • 2008/11/4 15:33:09
  • Will

Thanks - I took care of it. (it was the one on addons)

Topic


download block ImpressCMS core upperleft corner

  • 2008/11/4 13:45:04
  • web-M

The download block ImpressCMS core upperleft corner still shows 1.0 to download. I suppose that it needs to be updated to the new 1.1 Final version.

web-M Personal website

Topic



 Top