INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
<?php | |
/* | |
(2014) Main source -> http://lancenewman.me/posting-a-photo-to-instagram-without-a-phone/ | |
I just managed to sniff Instagram traffic and fixed the code | |
-- Have fun - batuhan.org - Batuhan Katırcı | |
--- for your questions, comment @ http://batuhan.org/instagram-photo-upload-with-php/ | |
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Rule" stopProcessing="true"> | |
<match url="^(.*)$" ignoreCase="false" /> | |
<conditions> | |
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> | |
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> |
/*determine th file extension | |
$file_name = $_FILES['image']['name']; | |
$file_extn = end(explode(".", strtolower($_FILES['image']['name']))); | |
if($file_extn == "doc" || $file_extn == "docx"){ | |
}elseif($file_extn == "rtf"){ | |
} | |
*/ |
<?php (defined('BASEPATH')) OR exit('No direct script access allowed'); | |
/** | |
* Router Class | |
* | |
* Parses URIs and determines routing | |
* | |
* @package CodeIgniter | |
* @subpackage Libraries | |
* @author ashokmhrj |
<?php | |
/** | |
* Class to handle job execution | |
*/ | |
class Jobs extends Onecore_Controller | |
{ | |
const STATUS_DONE = 'done'; | |
const STATUS_QUEUED = 'queued'; | |
const STATUS_RUNNING = 'running'; |
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
<!-- Don't forget to include the Tailwind css file --> | |
<div class="flex w-full"> | |
<div class="bg-grey-darkest h-screen"> | |
<img src="https://jeroen.github.io/erum2018/logo.png" alt="Random Logo" class="block w-16 p-2 mx-auto mb-5"> | |
<div class="w-64 navigationMenu"> | |
<div class="mb-5"> | |
<div class="flex text-white"> | |
<div class="w-12 ml-1 text-center"><i class="fas fa-tachometer-alt"></i></div> | |
<div class="navItem"><a href="javascript:void(0)" class="relative no-underline text-grey-light hover:text-grey-lightest hover:border-4 border-brand">Link 1</a></div> |