Xampp/Wampp Apache Crashes on Start

It displays “Busy” in the shell but it’s not started?

Executing “apache_start.bat” says something like :

(OS 10048)Une seule utilisation de chaque adresse de socket (protocole/adresse réseau/port) est habituellement autorisée.  : make_sock: could not bind to addres s 0.0.0.0:80

?

Then, if you are using Skype then the solution is here :

http://mwolk.com/blog/port-80-busy-how-to-start-apache-on-xampp-and-wamp/

Shut it down or disable the use of 80 and 443 port in the advanced connection settings and restart.

Then, restart your Xampp/Wampp Apache server, and you are back on business.

Leave a comment!

Galère de l’auto entreprise

Je ne sais pas si c’est juste moi ou la population entière, mais j’ai un problème avec l’administratif.

J’ai rempli les formalités au mois de juillet 2010 pour créer ma micro entreprise. Mon but initial était de pouvoir vendre des produits achetés sur internet dans la région où je réside, tout en restant salarié. Sorte de petit bonus en fait. A l’époque, j’avais une super opportunité, qui malheureusement n’en était pas une.

La micro entreprise est donc restée dans un état opérationnelle mais non utilisée. Au pire, je la gardais sous la main pour pouvoir faire légalement des sites web.  Chose qui est largement dans mes compétences, et les clients parmi les amis ne manquent pas.

L’affaire stagne donc jusqu’à LA galère administrative.
Je décide de me faire opérer du genou, suite à un accident datant de quelques années. Tout s’engage dans la bonne voie, un bon chirurgien trouvé, une opération qui se déroule bien, et je rentre chez moi, en arrêt maladie de mon activité de salarié. Jusque là, j’avais oublié ma micro entreprise. Sauf que…

Bien que dans ma déclaration de micro entreprise, il est écrit noir sur blanc que :

Vous restez simultanément : Salarié
lieu d'exercice : dept : 06

Je fus, je ne sais pas pourquoi, rattaché au régime social des indépendants, i.e. régime non salarié. Point capital de tout cela : en tant qu’indépendant, je ne touche pas d’indemnisation journalière de la CPAM pendant mon immobilisation, alors que je devrais, car je suis salarié.

La galère expliquée totalement : le RSI (régime social des indépendants) a récupéré mon dossier à la CPAM, m’a ouvert des droits chez lui, et fait fermé les droits de salarié que j’avais à la CPAM.

Pour rectifier tout ça, je dois donc faire fermer mon affiliation et mes droits au RSI en fournissant des pièces justificatives de mon activité de salarié, et tout faire réouvrir à la CPAM, en fournissant d’autres pièces justificatives.

Étant en arrêt maladie,  heureusement que je n’ai que ça à faire…

To be continued…

Leave a comment!

I am an entrepreneur now.

I created my own company !

By the end of November, I will be available to work freelance for you, all around the world !

Hire me, get a professional web Engineer for your online projects. Get the French touch !

Don’t hesitate to contact me to tell me about your project and I’ll be happy to help you !

4 Comments, add yours!

Coordinates when there is an offset in the page

How to get an object real coordinates when there is a zoom or an scroll bar on the page ?

var scrOfX = 0, scrOfY = 0;
if (typeof(window.pageYOffset) == 'number' ) {
//Netscape compliant
scrOfY = window.pageYOffset;
scrOfX = window.pageXOffset;
} else if (document.body && (document.body.scrollLeft || document.body.scrollTop)) {
//DOM compliant
scrOfY = document.body.scrollTop;
scrOfX = document.body.scrollLeft;
} else if (document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) {
//IE6 standards compliant mode
scrOfY = document.documentElement.scrollTop;
scrOfX = document.documentElement.scrollLeft;
}

myObject.Coord.x += scrOfX;
myObject.Coord.y += scrOfY;

via infos-du-net board

Leave a comment!

CSS3 Smashing Magazine Contest

I participated a while ago in Smashing Magazine CSS3 Contest.

The aim was to play with CSS3. So I used my non-talent to design a menu enabling actions on a content, without Javascript. I used the general sibling selector ~, pseudo class :active,  and some other well know stuff, such as border-radius and transform.

CSS3 Rabbit

Demo Here and on Smashing Magazine here

Results of the contest : I’m in !
http://www.smashingmagazine.com/2010/07/12/css3-design-contest-results/

1 Comment, add yours!

Gmail Group Chat conference in Pidgin

Because you would like to use Pidgin as Gtalk for group chat…

This is how to create a conference into Pidgin with multiple persons and a Gmail account. I assume people you want to talk to have also a Gmail account.

Start a new discussion. And then, it’s just configuration :

Room: private-chat-87654321-abba-dada-cede-aaaaaa987111 (random hexadecimal characters formatted like this)
Server: groupchat.google.com
ID: your nickname/login (it will be anyway your Gmail address)
Password: if you want to set a password (not tested)

And click on save !

Pidgin Configuration for Gtchat

Yay! It’s working ! You can now invite people (right click -> invite) or by drag’n'dropping them into the GroupChat conference.

Leave a comment!

Old News Paper WordPress Theme

Just released a first wordpress theme :  Old News Paper

Designed by Agathe !

Feel free to comment :)

Leave a comment!

Web 3.0

It’s all about Semantic…

Web 3.0 from Kate Ray on Vimeo.

Leave a comment!

Dotclear to WordPress Rewrite rule

I hate rewrite rules, and they hate me too.

So I used a PHP file.

<?php
$sRadNewAdress='/wp';

if (isset($_SERVER['QUERY_STRING'])&&($_SERVER['QUERY_STRING']!='')) {
	$sQstring = $_SERVER['QUERY_STRING'];
	$aString = explode('/', $sQstring);
	$sNewAdress = $sRadNewAdress."/".$aString[1]."/".$aString[2]."/".strtolower ($aString[4]);
}
else {
	$sNewAdress = $sRadNewAdress;
}

header('Location: '.$sNewAdress); //Redirection HTTP
header('HTTP/1.1 301 Moved Permanently');
header('Status: 301 Moved Permanently');
header('Content-Type: text/html; charset=UTF-8');
1 Comment, add yours!

May WordPress be with you

After some weeks of designing, coding, not sleeping and running, I finally took the time this week end to switch my blog from Dotclear to WordPress.

I’m sure I hate Apache Rewrite Rules now.

Leave a comment!