OVH démarre l'alpha-test en Amérique du Nord
1 000 serveurs livrés en 24h
« OVH veut mettre tout en oeuvre pour s'attaquer, vite et bien, au marché américain », nous avait confirmé en fin d'année dernière le directeur Marketing d'OVH.
L'implantation sur le marché américain semble se concrétiser pour la société. Après la mise en route de son premier datacentre nord-américain fin mars, l'hébergeur lance la phase d'Alpha test de ses services.
1 000 serveurs dédiés ont donc été mis à la disposition des testeurs jusqu'au 31 juillet 2012, le temps pour OVH.com d'affiner les réglages du réseau et d'optimiser le routage. Il faut noter que les 1000 serveurs ont été c...
I have a dynamic site and from .htaccess file creating clean URLs:
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp)$
RewriteRule ^([a-zA-Z0-9_\-\+\ ]+)$ flight.php?flights=$1&slug=$1
This code worked fine for me but when I created a new type of page and trying to get clean URLs with the same code i.e.:
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp)$
RewriteRule ^([a-zA-Z0-9_\-\+\ ]+)$ manual-page.php?url=$1&slug=$1
it's not working and if I comment the previous two lines then its is working fine.
Only one code is working at a time.
For first I have a URL domain.com/flight.php?flight-san-fransisco-london-flights and I want this being redirect to domain.com/san-fransisco-london-flights & from the second one I have domain.com/manual-page.php?url=my-new-page and I want this being redirect to domain.com/my-new-page.
Is these any way to get both working together?
L'authentification forte par Token compromise ?
La société RSA victime d'une cyber-attaque se fait dérober des informations sur sa technologie
La société RSA est bien connue dans le monde de la sécurité d'entreprise. Elle fournit les fameux « Token », ces petits récepteurs qui permettent une authentification forte.
[IMG]http://ftp-developpez.com/gordon-fowler/Token.gif[/IMG]
Le principe est simple. Une identification « classique » repose sur un identifiant et un mot de passe. Une authentification forte repose, en plus, sur un numéro changeant en permanence (au moins une fois par minute). Ce numéro est envoyé en continue sur ...
Possible Duplicate:
How should I structure my urls for both SEO and localization?
I have a Question and Answer site about immigration. now I divided it into 2 sites:
mysite.co.uk
about immigration to UK
mysite.com
with sub domains for every country, Like: australia.mysite.com , sweden.mysite.com , ...
now I had moved All the content from my first site into .co.uk and .com site and it's sub domains to fill theme.
I now that Google will detect my new 2 sites as duplicate of first on and it is very bad for SEO. and I don't think Google webmaster tools has a tool for it.
so Please Guide me how to fix this problem.
I'm trying to redirect a subdomain to a subfolder e.g. forums.domain.com to www.domain.com/forums
Note that I started the forums in the subfolder format but worried that members might mistakenly try to access the forums using the subdomain format.
RewriteCond %{HTTP_HOST} ^(www\.)?forums\.domain\.com
RewriteRule .* /forums [L]
From what I read the codes above should work through .htaccess, but do I still need to create a DNS A record to point to the IP address of the server?
Socl : le projet de réseau social de Microsoft pour concurrencer Google+
en bêta test privé
Microsoft travaille sur son propre réseau social qui pourrait concurrencer Google+.
Selon un article du magazine The Verge, la firme serait en train de tester un nouveau réseau social baptisé « Socl ».
Le service dont une ébauche avait été momentanément accessible à l'adresse socl.com l'été dernier sous le nom de « Tulalip », avait pour slogan « trouver ce que vous cherchez et partagez ce que vous savez plus facilement que jamais ». Il permettait aux utilisateurs de s'inscrire en utilisant leur compte Facebook ou Twitter.
Microsoft avait présenté le service pen...
Les chercheurs en sécurité ont quelques réserves vis à vis du système de vote par Email mis en place au New Jersey suite à l'ouragan Sandy.
[IMG]http://resources1.news.com.au/images/2012/11/06/1226511/153101-new-jersey-email-vote.jpg[/IMG]
La décision du New Jersey afin de permettre aux électeurs bloqués par la tempête de vote par E-mail lors de l'élection de mardi peut être une réponse innovante suite à une catastrophe naturelle. Mais les chercheurs en sécurité ont prévenu que cette décision sans précédent pourrait être le déclenchement d'une autre tempête mais cette fois ci d'ordre politique.
Au cours du weekend, le gouverneur Kim Guadano a annoncé que les électeurs touchés par la tempête pourrait demander par E-mail un bulletin de vote, le re...
Setting ACLs on Windows Server 2008 via the command line is giving me some problems. As per http://web2.minasi.com/forum/topic.asp?TOPIC%5FID=26907 I've tried all sorts of variations:
C:\Windows\system32icacls "D:\Websites\site.com\Web\bin*" /grant 'NT A
uthority\NETWORK SERVICE: (OI) (CI)M'
C:\Windows\system32icacls "D:\Websites\site.com\Web\bin*" /grant "NETWORK SERVICE": (OI) (CI)M
And all variations in between. However, each try leads to i.e. "Invalid parameter "'NETWORK'"" depending on the variation above.
As per http://technet.microsoft.com/en-us/library/cc753525%28WS.10%29.aspx (see in comments), it appears that others have experienced the same issue where the same command works on Windows 7/Vista/etc., but not on Windows Server 2008.
What's the best way to apply permissions to Network Service account on a directory and/or files via the command line in Windows Server 2008? Especially as there's no way to do multiple file permissions at once via the GUI (see http://serverfault.com/questions/30991/windows-server-2008-change-security-settings-for-multiple-files-at-once).
I use this redirect rule to redirect users from www.domain.com/admin to www.domain.com/wp-admin on a Wordpress site.
RedirectMatch 301 \@admin http://www.domain.com/wp-admin
The problem is that instead redirecting to wp-admin/, it redirects to an article called Administrators are awesome people (slug : administrators-are-awesome-people)
I can guess what is going on, WP sees that there is an article slug starting with "admin", and redirects to it, overruling my own rule.
Is there a way to be more specific, like saying "redirect urls that end with exactly admin ?
On a CentOS server running Plesk, new users are added for each new domain. The users' home directories are in /var/www/vhosts/. New users' home directories are owned by root, and need to have an admin with root access come in and chown them:
dotan@sh2:~$ echo $HOME
/var/www/vhosts/someDomain.com
dotan@sh2:~$ pwd
/var/www/vhosts/someDomain.com
dotan@sh2:~$ touch testFile
touch: cannot touch `testFile': Permission denied
dotan@sh2:~$ ls -la ../ | grep someDomain
drwxr-xr-x 13 root root 4096 2012-08-07 19:47 someDomain.com
dotan@sh2:~$ whoami
dotan
dotan@sh2:~$ chown dotan /var/www/vhosts/someDomain.com
chown: changing ownership of `/var/www/vhosts/someDomain.com': Operation not permitted
dotan@sh2:~$
Why might the new users' directories be owned by root, and how might we fix this?
Thanks.
Oracle has just released Security Alert CVE-2012-4681
to address 3 distinct but related vulnerabilities and one
security-in-depth issue affecting Java running in desktop browsers.
These vulnerabilities are: CVE-2012-4681, CVE-2012-1682, CVE-2012-3136,
and CVE-2012-0547. These vulnerabilities are not applicable to
standalone Java desktop applications or Java running on servers, i.e.
these vulnerabilities do not affect any Oracle server based software."
(Read more at https://blogs.oracle.com/security/entry/security_alert_for_cve_20121) Updates are available at http://www.oracle.com/technetwork/java/javase/overview/index.html or Check your Java version online: http://www.java.com/de/download/testjava.jsp
WebLogic Partner Community
For regular information become a member in the WebLogic Partner Community please visit: http://www.oracle.com/partners/goto/wls-emea ( OPN account required). If you need support with your account please contact the Oracle Partner Business Center.
Blog Twitter LinkedIn Mix Forum Wiki
Technorati Tags: Java,Java Security,Java update,WebLogic,WebLogic Community,Oracle,OPN,Jürgen Kress
Tout savoir sur la Wii U
Les caractéristiques, les jeux, les détails et le reste
À l'occasion de l'E3, nous avons pu apprendre beaucoup sur la Wii U, la prochaine console de Nintendo.
Commençons tout d'abord par les caractéristiques de la machine :
Machine :[IMG]http://jeux.developpez.com/news/images/WiiU.jpg[/IMG] 4.57 cm de hauteur sur 26.67cm en longueur sur 17.2cm de large ;
1.5kg ;
le processeur est basé sur un IBM Power ayant plusieurs coeurs ;
la carte graphique est basée sur AMD Radeon HD
mémoire flash, supporte aussi les cartes SD et possède quatre ports USB (deux à l'avant et deux à l'arrière) ;
lec...
Hi all members
I have a programme generator code for c#
It gen by 3tier and include MS SQL to Linq, MS SQL, and
Access.
You can use it and give idia to I can do it better.
Links down is below:
http://depositfiles.com/files/38hcd9xf8
ho?c
http://www.easy-share.com/1910377507/Ge
... artent.rarThanks you for using it!
record include example and Guide you can down in page
dofactory.com
or Links below:
http://www.easy-share.com/1910377763/Guide
Do Patterns In Action 3.5.pdf
http://depo...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
I have setup the following virtual host
ServerAdmin user@mysite.com
ServerName mysite.com
ServerAlias www.mysite.com
DocumentRoot /var/www/homepage/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
When I hit my url Apache still shows the default page. Not the index Ive created in the give Document root.
In my Domain i have set the A Record to the Ip of my VPS:
apache2ctl -S:
output:
VirtualHost configuration:
*:80 is a NameVirtualHost
default server xxxxxx.stratoserver.net (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost xxxxxxx.stratoserver.net (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost mysite.com (/etc/apache2/sites-enabled/homepage.conf:1)
alias www.mysite.com
ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/lock/apache2" mechanism=fcntl
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33 not_used
Group: name="www-data" id=33 not_used
How would I need to setup my Virtual host so that apache shows the correct site depending on the Domain im redirecting from.
I want to tell if we are running in 32 bit or 64 bit mode. thanks dave david@at at [email protected] Windward Reports http://www.WindwardReports.com me http://dave.thielen.com Cubicle Wars http://www.windwardreports.com/film.htm
www.oracle.com/goto/dropinandlearn
Az Oracle felhasználóknak 2013. július 3-án délelott ismét Support szeminárium lesz az Oracle Hungary-ban, ahol az eloadások közben és után mindent meg lehet kérdezni a support szolgáltatásokról. Ugorj be egy tájékoztatóra, mennyi mindent magában foglal az Oracle Support, demó a support.oracle.com használatáról. www.oracle.com/goto/dropinandlearn
Hungary
Wed 5th June
09:00
Oracle Office, Budapest
I plan to attend
Wed 3rd July
09:00
Oracle Office, Budapest
I plan to attend
I have a blog http://foo.tumblr.com. I sometimes go to Site Content - All Pages on Google Analytics and then navigate to page listing and then click the icon to take me to that page on my blog. However, instead of opening http://foo.tumblr.com/post/1234/blah.html Google Analytics is opening http://foo.tumblr.com//post/1234/blah.html (i.e., it is adding a second slash between the domain the page specific component of the URL).
How can I stop Google Analytics from doing this?
Mise à jour du 30/03/10 (Djug)
Microsoft publiera cette après midi une mise à jour urgente pour internet explorer, qui corrigera plusieurs failles de sécurité.
Microsoft a annoncé hier la mise en ligne cette après midi d'une mise à jour urgente pour les versions 6 et 7 d'internet explorer.
[IMG]http://djug.developpez.com/rsc/IE_browser_bandaid.jpg[/IMG]
Ce patch proposé hors cycle du patch Tuesday (un ensemble de correctifs diffusés le deuxième mardi de chaque mois), consiste à corriger des failles qui concernent toutes les versions d'internet Explorer y compris IE8, et sur tous les systèmes d'exploitation y compris Windows 7 et Windows server 2008 R2.
Aujourd'hui, Apple a confirmé, malgré le fait qu'il semble bien que l'iPad soit difficilement trouvable aux Etats-Unis, que l'iPad sera disponible dès le 28 mai dans 9 autres pays, dont France, le Canada et la Suisse. (mais aussi l'Australie, l'Allemagne, l'Italie, l'Espagne, le Royaume-Unis et le Japon).
Les prix seront dévoilé ce lundi 10 mai sur l'Apple Store, où il sera également possible de les pré-commander.
Dans cette même annonce, Apple annonce que l'iPad sera également lancé dans 9 autres pays, dont la Belgique. Mais ceux-ci devront patienter jusqu'au mois de Juillet pour cela.
Source : http://www.apple.com/pr/library/2010/05/07ipad.html...
I have three sites running under the main domain example.com/en/ example.com/ar/ example.com/ur/
And there is a main HTML landing page example.com which have some introduction in three languages and links to three sites.
Now i want this landing page to have a good SEO. and i want this page to appear in search in three languages.
if someone searchs Arabic it should be in results with Arabic title and description, if someone searches in English it should response in English.
Is it possible? or suggest me other way to make a landing page for these sites.
Forte croissance des utilisateurs de l'application Facebook Windows Phone
près de 600 000 nouveaux terminaux sous l'OS vendus en deux semaines
Les ventes des terminaux sous le système d'exploitation mobile de Microsoft Windows Phone semblent être sur la bonne voie.
En effet, selon le site WMPowerUser, le nombre d'utilisateurs par mois de l'application Microsoft Windows Phone Facebook aurait augmenté de près de 100 000 en seulement deux semaines. Le nombre d'utilisateurs actifs par mois serait passé de 1 000 000 le 11 novembre à 1 100 000 le 25 novembre.
[IMG]http://wmpoweruser.speedymirror.com/wp-content/uploads/2011/11/wp7fbusers.jpg?9d7bd4[/IMG]
Ces chiffres bas...
Dynamics CRM Online : le retour en force du CRM de Microsoft
Microsoft propose une version d'essai gratuite de 30 jours
Les TechDays 2011 ont été l'occasion pour Développez.com de retrouver Sophie Jacquet, Chef de produit Microsoft, pour faire le point sur Dynamics CRM.
Microsoft Dynamics CRM s'offre en effet une nouvelle jeunesse avec la sortie de sa version 2011 et surtout une version SaaS, baptisée « Dynamics CRM Online », lancée avant la version sur site. Une chronologie qui confirme le virage stratégique Cloud Computing pris par Microsoft et affiché lors de ces TechDays.
Destinée à améliorer la productivité des services commerciaux, la nouvelle versio...
En cette fin d'année, la communauté de Developpez.com s'est alliée avec Microsoft France pour relayer une série de questions / réponses sur le développement Windows 7.
A partir d'aujourd'hui, nous poserons une question chaque lundi sur une fonctionnalité propre au développement d'applications Windows 7. La bonne réponse de la question de la semaine sera ensuite dévoilée la semaine suivante avec un exemple de mise en pratique.
Êtes-vous prêt à relever le défi ?
Pensez-vous bien connaître les possibilités que proposent les API Windows 7 ?
C'est ce que nous allons voir dès aujourd'hui, nous attendons vos propositions !
La réponse de la semaine :
Quel est le nom de l'API .NET qui...