This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks | |
RewriteEngine on | |
RewriteRule ^(.*)$ https://ioads.rurl.me/$1 [r=301,nc] | |
<Files .htaccess> | |
order allow,deny | |
deny from all | |
</Files> | |
Options All -Indexes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks | |
RewriteEngine on | |
RewriteRule ^(.*)$ http://ioads.linktrackr.com/$1 [r=301,nc] | |
<Files .htaccess> | |
order allow,deny | |
deny from all | |
</Files> | |
Options All -Indexes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Item> | |
<ASIN>B013XJHGH4</ASIN> | |
<ParentASIN>B010283OG6</ParentASIN> | |
<SmallImage> | |
<URL>http://ecx.images-amazon.com/images/I/41HhdML54fL._SL75_.jpg</URL> | |
<Height Units="pixels">75</Height> | |
<Width Units="pixels">58</Width> | |
</SmallImage> | |
<MediumImage> | |
<URL>http://ecx.images-amazon.com/images/I/41HhdML54fL._SL160_.jpg</URL> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function beli() { | |
dataLayer.push({ | |
'event': 'GTM.beli', | |
'ecommerce': { | |
'purchase': { | |
'actionField': { | |
'id': 'T12345', // Transaction ID. Required for purchases and refunds. | |
'affiliation': 'Online Store', | |
'revenue': '35.43', // Total transaction value (incl. tax and shipping) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function GCD($a, $b) | |
{ | |
while ( $b != 0) | |
{ | |
$remainder = $a % $b; | |
$a = $b; | |
$b = $remainder; | |
} | |
return abs ($a); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pusingan_tawaf = array( | |
array('no pusingan'=>1,'disunatkan'=>'Berlari-lari anak dan ittiba (sopan)', 'bacaan'=>'اللهم اجعله حجاً مبروراً وذنباً مغفوراً وسعياً مشكورا'), | |
array('no pusingan'=>2,'disunatkan'=>'Berlari-lari anak dan ittiba (sopan)', 'bacaan'=>'اللهم اجعله حجاً مبروراً وذنباً مغفوراً وسعياً مشكورا'), | |
array('no pusingan'=>3,'disunatkan'=>'Berlari-lari anak dan ittiba (sopan)', 'bacaan'=>'اللهم اجعله حجاً مبروراً وذنباً مغفوراً وسعياً مشكورا'), | |
array('no pusingan'=>4,'disunatkan'=>'ittiba (sopan)','bacaan'=>'اللهم اغفر وارحم واعف وتكرم، وتجاوز عما تعلم, إنك أنت الأعز الأكرم' ), | |
array('no pusingan'=>5,'disunatkan'=>'ittiba (sopan)','bacaan'=>'اللهم اغفر وارحم واعف وتكرم، وتجاوز عما تعلم, إنك أنت الأعز الأكرم' ), | |
array('no pusingan'=>6,'disunatkan'=>'ittiba (sopan)','bacaan'=>'اللهم اغفر وارحم واعف وتكرم، وتجاوز عما تعلم, إنك أنت الأعز الأكرم' ), | |
array('no pusingan'=>7,'disunatkan'=>'ittiba (sopan)','bacaan'=>'اللهم اغفر وارحم واعف وتكرم، وتجاوز عما تعلم, إنك أنت الأعز الأكرم' ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$input_lines = '<option value="All">All</option> | |
<option value="Apparel">Apparel</option> | |
<option value="Appliances">Appliances</option> | |
<option value="ArtsAndCrafts">ArtsAndCrafts</option> | |
<option value="Automotive">Automotive</option> | |
<option value="Baby">Baby</option> | |
<option value="Beauty">Beauty</option> | |
<option value="Blended">Blended</option> | |
<option value="Books">Books</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot "/Volumes/projects/projects/LinkTrackr/public_html" | |
ServerName linktrackr.local | |
ServerAlias *.linktrackr.local | |
<Directory "/Volumes/projects/projects/LinkTrackr/public_html"> | |
Allow from all | |
Require all granted | |
Options Indexes FollowSymLinks | |
AllowOverride All |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO mysql.user | |
SET user = 'root', | |
host = 'localhost', | |
password = '', --jika ingin masukkan password, password = Password('password_anda') | |
Select_priv = 'y', | |
Insert_priv = 'y', | |
Update_priv = 'y', | |
Delete_priv = 'y', | |
Create_priv = 'y', | |
Drop_priv = 'y', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mysqld] | |
skip-grant-tables |