Skip to content

Instantly share code, notes, and snippets.

View slouma2000's full-sized avatar
🐝
Venven

Slim OUICHTATI slouma2000

🐝
Venven
  • MAKE IT DIGITAL TUNISIA
  • TUNISIA
View GitHub Profile
@slouma2000
slouma2000 / jsAddSlashes
Created April 16, 2013 22:07
jsAddSlashes
function jsAddSlashes($str) {
$pattern = array(
"/\\\\/" , "/\n/" , "/\r/" , "/\"/" ,
"/\'/" , "/&/" , "/</" , "/>/"
);
$replace = array(
"\\\\\\\\", "\\n" , "\\r" , "\\\"" ,
"\\'" , "\\x26" , "\\x3C" , "\\x3E"
);
return preg_replace($pattern, $replace, $str);
ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
error_reporting(E_ALL);
#-----------------------
# robots.txt
#-----------------------
user-agent: *
disallow: /img/
disallow: /css/
disallow: /js/
disallow: /integ/
disallow: /captcha/
disallow: /admin/
(function(){
})()
@slouma2000
slouma2000 / install_ruby_1.9.3
Last active May 14, 2019 20:27
Install Ruby 1.9.3 on CentOS, RedHat using RVM
Step 1: Upgrade Packages
# yum update
# yum groupinstall "Development Tools"
Step 2: Installing Recommended Packages
# yum install gcc-c++ patch readline readline-devel zlib zlib-devel
# yum install libyaml-devel libffi-devel openssl-devel make
# yum install bzip2 autoconf automake libtool bison iconv-devel
Step 3: Install RVM ( Ruby Version Manager )
Apache logs location on Plesk:
/var/log/httpd/access_log
/var/log/httpd/error_log
Apache Suexec logs location on Plesk:
/var/log/httpd/suexec_log
Access and Error logs for a specific account / user / website on Plesk:
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
# For a list of vagrant boxes visit the site below
# http://www.vagrantbox.es/
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
@slouma2000
slouma2000 / htaccess-laravel
Last active August 29, 2015 14:07
htaccess laravel
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
#Options -MultiViews
</IfModule>
SetEnv LARAVEL_ENV production
RewriteEngine On
# Redirect Trailing Slashes...
@slouma2000
slouma2000 / Ajax Call
Created October 20, 2014 11:03
Ajax jQuery
var url = 'participants/save';
$.ajax({
dataType: 'json',
type: 'POST',
url: url,
cache: false,
data: {
fbid: response.id,
fullname: response.name,
firstname: response.first_name,
@slouma2000
slouma2000 / getFriends
Created November 1, 2014 08:27
getFriends
<script>
if (typeof jQuery === "undefined") { throw new Error("This application requires jQuery"); }
window.fbAsyncInit = function() {
FB.init({
appId: 'xxxxxxx',
status: true, // check login status
xfbml: true,
version: 'v2.1'
});