Uniadrion Course

Posted on June 26th, 2009, by admin

a good course

Moodle

Posted on June 8th, 2009, by admin

.diffchar { color:red; } –

HomePage

Posted on May 29th, 2009, by admin

.diffchar { color:red; } –

  • Dragon Design’s FormMailer Wordpress Plugin v. 5.34 D (customized version of 5.34 C) This customised version allows you to store a copy of received data in a /private/ folder that you have to create in the Wordpress site main folder. See Dragon Design site (external link) for a more recent version of this plugin.+
  • Dagon Design’s FormMailer Wordpress Plugin v. 5.34 D (customized version of 5.34 C) This customised version allows you to store a copy of received data in a /private/ folder that you have to create in the Wordpress site main folder. See Dagon Design site (external link) for a more recent version of this plugin.
  • Search & Replace in mySQL

    Posted on May 10th, 2009, by admin

    .diffchar { color:red; } + Performing a search-and-replace through a table is easy with MySQL when you know how.
    +

    update table_name set table_field = replace(table_field,’replace_that’,'with_this’);

    +
    + So, for example, let’s say you have a table called “posts” with a data stored in a field called “content” and you want to replace all instances of the word “dog” with “cat”, then your SQL would look like this:
    +

    update posts set content = replace(content,’dog’,'cat’);

    +
    +
    + Similar, with regexp
    +
    +

    UPDATE `mos2_content` SET introtext = replace(introtext,"<p>","") WHERE `title` REGEXP ‘-0′;

    +
    +

    Free Quick Guides

    Posted on May 10th, 2009, by admin

    .diffchar { color:red; } +

  • Search & Replace in mySQL
  • A simple script for backing up your wordpress site every night

    Posted on March 27th, 2009, by admin

    .diffchar { color:red; } –

  • Create a backup-project.sh in the HOME folder and paste the code you find below.+
  • Create a backup_project.sh in the HOME folder and paste the code you find below.-
  • Save and chmod for execution (chmod u+x backup-project.sh )
  • Create a backup-project.exclusions file and customize the sample. The example will skip all .tar files and the specified folders. Make file empty for no exclusions at all+
  • Save and chmod for execution (chmod u+x backup_project.sh )
  • Create a backup_project.exclusions file and customize the sample. The example will skip all .tar files and the specified folders. Make file empty for no exclusions at all- backup-project.sh script
    + backup_project.sh script
    - # WPFOLDER=where Wordpress is installed

    WPFOLDER=/var/www/spider/wordpress
    + # WPFOLDER=where your site is installed

    WPFOLDER=/var/www/wordpress
    - PROJECT=webpa
    + PROJECT=myblog
    - DBNAME=web-pa2

    DBPASS="1webpa1"

    DBUSER=paos2u
    + DBNAME=myblogdb

    DBPASS="123456"

    DBUSER=myblogdbuser
    - tar cvf $HOME/$PROJECT-files.tar -X $HOME/backup-$PROJECT.exclusions *
    + tar cvf $HOME/$PROJECT-files.tar -X $HOME/backup_$PROJECT.exclusions *
    - backup-project.exclusions file
    + backup_project.exclusions file

  • Deleting unmatched records on mySQL 4.1 and 5.x

    Posted on December 12th, 2008, by admin

    .diffchar { color:red; } – case: table1 contains records with a userid field which points to (and SHOULD match with a record in) the users table
    + <h4 class=”showhide_heading” id=”Scenario”>Scenario

    <br />table1 contains records with a userid field which points to (and SHOULD match with a record in) the users table
    - <h3 class=”showhide_heading” id=”mySQL_4_1″>mySQL 4.1</h3>+ <h4 class=”showhide_heading” id=”mySQL_4_1″>mySQL 4.1</h4>- <h3 class=”showhide_heading” id=”mySQL_5_x”>mySQL 5.x</h3>+ <h4 class=”showhide_heading” id=”mySQL_5_x”>mySQL 5.x</h4>

    DimensioneX 6.4.6 – Power Up!

    Posted on October 29th, 2008, by Cristiano Leoni

    A new release of the free, DimensioneX massive multiplayer game engine is available!

    PLUG-INS
    - Improved support for text-parsing plug-ins. Includes text commands language parser (thanks to Carl Nagle)
    - Includes "SayDemo", demonstrator for the Language Parser plug-in.

    LANGUAGE

    - New functions: Log(), Asc(), gameinfo("navigator")
    - Fixes with the new string concat "&" operator
    - Added arithmetic modulus operator, "Mod"

    GUI
    - New config parameter: clientScript for game-specific client scripts
    - Fixes on skins’ loading
    - Fixes and Improved support for PAGE objects: $banner new placeholder

    ENGINE/INSTALL
    - New savingDir config parameter for shared hosting environments
    - New tutorial available about how to set up DimensioneX on a GoDaddy.com’s server
    - "Server reload settings" new operation in maintenance panel.

    WEB INTEGRATION
    - Fixes for default screen resolution set-up
    - Updated Multiplayer Game Plugin for Wordpress with new games

    The package comes together with a fresh version of the "Underworld" MMORPG game.

    Check out the updated Developer’s Reference for more information.

    NEW GAMES AND DEMOS TO SEE

    http://www.boundarycity.net/
    http://www.dragondiceonline.com
    http://dimx.cjncreations.com/
    http://www.medievil.too.it/ (in italian)

    THANKS TO…

    - Carl Nagle
    - Kevin Perry
    - PenTech Solutions
    - Eric "Cotteux" Couture (0 comments)

    Calendar

    Posted on October 6th, 2008, by admin

    .diffchar { color:red; } – <a class=”wiki external” target=”_blank” href=”http://30boxes.com/widget/41625/CristianoLeoni/68a45a3fcf57f82a3da689f76fd3ca5c/0/” rel=”external”>calendar (external link)
    + <a class=”wiki external” target=”_blank” href=”http://30boxes.com/public/41625/CristianoLeoni/68a45a3fcf57f82a3da689f76fd3ca5c/0/” rel=”external”>calendar (external link)

    Accessing Your Projects Web Space on Sourceforge Using WinSCP

    Posted on October 2nd, 2008, by admin

    .diffchar { color:red; } +
    +