Joomla Extensions Demo

Support

Do not submit a bug report if you need technical support or have questions.

Forums

Post your suggestions ask for help in the community forums

Wiki

Visit the Wiki extensive and up to date documentation at your fingertips.

Contact Me

Missing images/links, any comments, suggestions, need help? Contact me

Skype

Need desperately help?
Skype Me™! But dont abuse of it!

Dropbox Dropquest chapter 1

User Rating:  / 0

If you want an extra gigabyte of storage on your Dropbox account, the online cloud service invites you to compete in its second annual “Dropquest” online scavenger hunt.

It’s a series of logic puzzles that will make you browse around the Web while also learning about the various features and services that Dropbox offers. Anyone who makes it to the end will get an extra gigabyte, but the first person to complete it wins a grand prize package culminating in a 100 GB account, free for life.

Dropquest Chapter 1

  1. The product of the first two digits is 24.
  2. The fourth digit is half of the second digit.
  3. The sum of the last two digits is the same as the sum of the first and third digits.
  4. The sum of all the digits is 26.
  5. The second digit is greater than the last digit.

if abcde is the password….

  • a*b=24
  • d=b/2
  • e+d=a+c
  • a+b+c+d+e=26
  • b>e

Valid solutions are

  1. a=3 b=8 c=6 d=4 e=5
  2. a=1 b=24 c=0 d=12 e=-11
  3. a=2 b=12 c=5 d=6 e=1

The first one is the only one that create a 5 digits password :-))

Parent Category: Internet www
Category: Software

cedTag 2.5.1 for J2.5 Released

User Rating:  / 0

CedTag  has been updated to version 2.5.1 and correct a lot of bugs and contains some nice features.

CedTag is the continuation of the GPL component Joomla Tags (www.joomlatags.org), Most of the code has been rewritten according to the new standard of Joomla 2.5, the component has been greatly extended and most bugs have been removed. I will continue removing, refactoring existing codebase, in order to be able to add new features faster.

CedTag is used on this site with more than 5000 tags in 2200 articles.

Your ideas are important, feel free to contact me and ask for new features!

You can download the latest version and just upgrade without any loss of data by reinstalling the package

 

What’s new

Compare to Joomla Tags… a lot in fact :-)

Read more: cedTag 2.5.1 for J2.5 Released

Category: Joomla

SecurityImages 6.0.3 for J2.5 Released

User Rating:  / 0

SecurityImages has been updated to version 6.0.3 and correct 1 bugs for both Joomla 1.7 and Joomla 2.5.

BUG: If enabled for Contacts, it prevents a backend administrator from saving contact details in the backend. It fails with a captcha error. This is because SecurityImages 6.0.2 and previous was enforcing a captcha entry, yet the backend cannot facilitate the display of the captcha.

You can click the link below and install as normal via the Extensions Manager. or use the update manager (updates will display in the Extensions Manager under Updates).

Full list of changes available in GIT commit 18c1209801195e1138d61db87496408c38d2f49f

Category: Joomla

Oracle Please set ORACLE_UNQNAME to database unique name

User Rating:  / 0

if you encounter this error while starting oracle

/etc/init.d/oraemctl start Starting Oracle EM DB Console:
Environment variable ORACLE_UNQNAME not defined. 
Please set ORACLE_UNQNAME to database unique name. OK
One possible solution is to edit the script
# vi /etc/init.d/oraemctl

and add the following code in blue

Read more: Oracle Please set ORACLE_UNQNAME to database unique name

Parent Category: Suse Linux
Category: Technical

Apache Maven copy local file to a remote server server using SSH

User Rating:  / 0

I will show you in an Apache Maven configuration file how to copy files to server each time the package phase is executed.

Solution with Ant SCP task

This snippet of code is a ready to use code that make use of Apache Ant task scp, Just put this snippet of code in your Maven module where the assembly is executed or anywhere else to push all tar.gz files to a server just run a maven mvn package, you can add as many ant task and push to many server the same file during the reactor build.

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
    <id>server-copy</id>
    <goals>
        <goal>run</goal>
    </goals>
    <phase>package</phase>
    <configuration>
        <target>
            <echo message="Push to server/home/"/>
            <scp trust="yes"
                todir="user:password@server:/home/">
                <fileset dir="${basedir}/target">
                    <include name="**/*.tar.gz"/>
                </fileset>
            </scp>
        </target>
    </configuration>
</execution>
</executions>
<dependencies>
<dependency>
    <groupId>org.apache.ant</groupId>
    <artifactId>ant-jsch</artifactId>
    <version>1.8.2</version>
</dependency>
</dependencies>
</plugin>

Solution with maven-deploy-plugin

The maven-deploy-plugin allows you to configure the deploy phase to deploy to a server using scp. There is a page in the documentation that describes how it can be done.

Deploy maven artifact using Maven Wagon SCP

Another alternative would be to use Maven Wagon SCP like described in this post for example

Parent Category: Framework
Category: Apache Maven

More Articles...

  1. CedTag BETA 2.5.0 for J2.5 Released
  2. CedThumbnails 2.5.3 for J2.5 Released
  3. Apache M2Eclipse: Get rid of Duplicate resources when opening resources and types
  4. Photofeed 2.5.1 for J2.5 Released
  5. Add2Home 1.6.4 for J2.5 Released
  6. CedThumbnails 2.5.2 for J2.5 Released

Page 1 of 315

Donations

Thank You for supporting my work
Subscribe to me on YouTube

Latest Articles

  • If you want an extra gigabyte of storage on your Dropbox account, the online cloud service invites you to compete in i... ...
  • CedTag  has been updated to version 2.5.1 and correct a lot of bugs and contains some nice features. CedTag is the... ...
  • SecurityImages has been updated to version 6.0.3 and correct 1 bugs for both Joomla 1.7 and Joomla 2.5. BUG: If enabl... ...
  • if you encounter this error while starting oracle /etc/init.d/oraemctl start Starting Oracle EM DB Console: Environme... ...
  • I will show you in an Apache Maven configuration file how to copy files to server each time the package phase is execu... ...

Subscribe

Latest Comments

Popular Posts

rockettheme advertisement

dropbox logo

Help Us & Leave Feedback!

  • Do you have an excellent article idea you would like to read about here? Share it!
  • Do you have some interesting tips how we could improve our site?
  • Something missing here? Help us make this blog a better place, leave feedback!
We would love to hear from you! Be active! Write us now!