Skip to content

Instantly share code, notes, and snippets.

View iwebroot's full-sized avatar
💻
Hard Work

Iaina Randrianarivony iwebroot

💻
Hard Work
View GitHub Profile
@iwebroot
iwebroot / Scrapping Python.py
Last active April 7, 2020 09:58
Script - Scrapping Stage Bafa
"""
Created on Tue Jul 30 12:05:36 2019
@author: 6066305
"""
from urllib import request
from datetime import datetime
from bs4 import BeautifulSoup
import csv
from selenium.webdriver.support.ui import Select
@iwebroot
iwebroot / Fix Error 404 - Laravel 5.8 in local domain - php v7.x - httpd-vhosts.conf
Last active April 17, 2019 19:56
Fix Error 404 - Laravel 5.8 in local domain - php v7.x
...
<Directory "Your Public Laravel Directory">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
...
@iwebroot
iwebroot / laravel-[.htaccess]
Last active February 10, 2019 14:47
[Fix error : 500] : Multiple laravel projects in shared hosting
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
### Add two lines for fix error 500 ###
Options -Indexes
php_flag xcache.cacher 0