Objets3d.com

03 022014

réalisation 2013 / 2014

http://www.objets3d.com

Site magento de vente de bijoux et objets réalisés en impression 3d

Publié dans Magento, Réalisations | Marqué avec , , | Laisser un commentaire

Site Magento : Astars Clothing

26 062013

Réalisation 2012 :

http://www.astars-clothing.fr

Réalisation d’un subsite Magento, codage d’extensions et du template

Tech : Magento, PrototypeJS

Publié dans Réalisations | Marqué avec , | Laisser un commentaire

Site Symfony : Acqualys

26 062013

Réalisation 2012/2013
http://www.acqualys.fr

Tech : Symfony, jQuery

Publié dans Réalisations | Laisser un commentaire

Site Symfony : Groupe Hossegor Immobilier

26 062013

Réalisation 2012/2013 :
http://www.groupe-hossegor-immobilier.fr

portail + 5 sites agences immobilières, multilingue, multidomaines.
un gros travail d’optimisation de la base de données pour créer des recherches rapides, dans un moteur hybride ajax/liens en dur

Tech : Symfony, jQuery, jQueryUI

Publié dans Réalisations | Marqué avec , , | Laisser un commentaire

Fixer un openvpn qui ne redémarre plus

03 042013

Pas mal galéré sur un openvpn qui ne redémarrait plus suite à une mise à jour du noyau,
j’avais les messages suivants :

/etc/init.d/openvpn start
 * Starting virtual private network daemon(s)...
 *   Autostarting VPN 'server'  
 SIOCSIFADDR: No such device
: ERROR while getting interface flags: No such device
SIOCSIFDSTADDR: No such device
: ERROR while getting interface flags: No such device
SIOCSIFMTU: No such device

dans le syslog :

Apr  3 09:54:56 xxxxxx ovpn-server[8123]: Note: Cannot open TUN/TAP dev /dev/net/tun: No such file or directory (errno=2)
Apr  3 09:54:56 xxxxxx ovpn-server[8123]: do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
Apr  3 09:54:56 xxxxxx ovpn-server[8123]: /sbin/ifconfig  10.8.0.1 pointopoint 10.8.0.2 mtu 1500
Apr  3 09:54:56 xxxxxx ovpn-server[8123]: Linux ifconfig failed: external program exited with error status: 1

problème réglé en recréant proprement le dev/tun :

cd /dev
sudo MAKEDEV tun
Publié dans Linux | Laisser un commentaire

Magento : afficher un bloc statique depuis une page CMS

27 032013

En vue source, rajouter ce code avec l’id du bloc à afficher

{{block type="cms/block" block_id="guide_tailles"}}
Publié dans Magento | Marqué avec , | Laisser un commentaire

Site Magento : Miss Sea

05 032013

Réalisation 2012 :
http://www.miss-sea.com/

mise en place de Magento / réalisation d’un thème sur mesure
Miss Sea

Publié dans Réalisations | Marqué avec , | Laisser un commentaire

Site Magento : Temple du cordage

18 022013

Réalisation 2012 :
http://www.templeducordage.com/

mise en place de Magento / intégration et modification d’un thème existant

Temple du Cordage

Publié dans Réalisations | Marqué avec , | Laisser un commentaire

Ajax Cross Domain avec jQuery

16 022012

avec le datatype jsonp et un callback séparé :
il faut mettre le callback en forme de chaîne, déclarer une fonction inline pour le call back ne semble pas marcher

var twitrank={
....
        getAccount:function(account) {
        $.ajax({
          url: "https://api.twitter.com/1/users/show.json?screen_name="+account,
          dataType:'jsonp',
          jsonpCallback:'twitrank.onGetAccount'});
    },
        onGetAccount:function(data) {
               console.log(data);
        }
...
}
Publié dans Javascript | Marqué avec , , , | Laisser un commentaire

Mashup Twitter+Gmaps

10 022012

Quelques expérimentations avec l’api twitter.
(+ google maps + jquery + jqueryui)

Publié dans Javascript | Marqué avec , , , , , | Laisser un commentaire