אוג' 20

ראשית, נושא ה SVN הוא מאוד רחב, ולכן לא ניתן יהיה לכסותו בפוסט אחד בלבד. בפוסט זה אני אעבור בקצרה על מספר דברים בנוגע ל SVN. בכתיבת מדריך זה אני עובד עם  MacBook Pro, ואני עובד מול Versions שהוא ה SVN CLIENT שלי. השרת הוא שרת...

Read More

HipHop PHP – לזוז מהר?

פבר' 07

אז מה זה HIPHOP PHP? HipHop PHP היא לא קומפיילר בעצמו. אלה בעצם מתרגם קוד PHP. זאת אומרת ש HIPHOP מתרגם את קוד ה PHP שנכתב לקוד הכתוב ב C++ בצורה אופטימלית מאוד ואז משתמש ב G++ כדי לקמפל אותו. HIPHOP מריץ את קוד המקור בסדר סמנטי...

Read More

HipHop for PHP: Move Fast

פבר' 03

One of the key values at Facebook is to move fast. For the past six years, we have been able to accomplish a lot thanks to rapid pace of development that PHP offers. As a programming language, PHP is simple. Simple to learn, simple to write, simple to read, and simple to debug. We are able to get new engineers ramped up at Facebook a lot faster with PHP than with...

Read More

צפייה באתר תחת SSL – להכריח את המשתמש – Apache Mod Rewrite

ספט' 24

לפעמים אתה צריך לוודא שהמשתמש צופה באתר תחת SSL ישנה דרך פשוטה לבצע פעולה זו על ידי הכרחת המשתמש לצפות באתר תחת הקידומת HTTPS ולא HTTP בכדי לבצע זאת כל מה שליכם לעשות הוא להוסיף את השורות הבאות לקובץ ה .htaccess...

Read More

Apache rewrite rules – Http to Https – Force SSL

ספט' 24

Sometimes you may need to make sure that the user is browsing your site over securte connection. An easy to way to always redirect the user to secure connection (https://) can be accomplished with a .htaccess file containing the following lines: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] Please, note that...

Read More

Mod_Rewrite Tips and Tricks are lot of .htaccess rewrite examples

אוג' 05

Mod_Rewrite Tips and Tricks are lot of .htaccess rewrite examples that show specific uses for creating .htaccess rewrites to do all kinds of cool and profitable stuff for your site. Htaccess Rewrites are enabled by using the Apache module mod_rewrite, which is one of the most powerful Apache modules and features availale. Htaccess Rewrites through mod_rewrite...

Read More

תחסוך לעצמך זמן, CACHE IT!

פבר' 05

היו כמה וכמה בקשות/שאלות לגבי Chacing , איך בידיוק משתמשים בזה, איך זה עובד, האם זה שימושי, האם כל אחד יכול/צריך להשתמש בזה? ובכן אני אנסה לענות על כמה שיותר שאלות כאן שנשאלו ויכולות לצוץ פתאום ואנסה להציג דרך...

Read More