Skip to content

Instantly share code, notes, and snippets.

View robertosanval's full-sized avatar

Roberto Santana robertosanval

  • Spain
View GitHub Profile
@ma2thieu
ma2thieu / cc.php
Created February 29, 2012 17:20
script to delete Symfony2 cache folder from the browser
<?php
// --- cache location
$cache_dir = dirname(__FILE__) . '/../app/cache';
echo "<b>cache_dir : $cache_dir</b>";
// ---
function rrmdir($dir) {
if (is_dir($dir)) {
@Integralist
Integralist / remote-git.md
Created February 21, 2012 09:51
Basic set-up of remote git repository on a standard server

Set-up remote git repository on a standard server

The first thing to do is to install Git on the remote server.

Once you do that the rest of the process is split into three sections:

  1. Server set-up
  2. Local set-up (push commits)
  3. Server (pull commits)
@ziadoz
ziadoz / awesome-php.md
Last active May 10, 2024 15:06
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.