This file contains 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
rem @echo off | |
set TABLEAU_SVR_DIR="C:\Program Files\Tableau\Tableau Server\8.1" | |
set TABLEAU_TWBX_DIR="C:\Users\Administrator\Documents\tableau docs" | |
pushd %TABLEAU_SVR_DIR%\bin | |
tabcmd.exe login -u user -p password -s http://localhost | |
for %%X in (%TABLEAU_TWBX_DIR%\*) do tabcmd.exe publish "%%X" | |
popd | |
pause |
This file contains 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
# handler for .php file | |
LoadModule php5_module "c:/php54/php5apache2_4.dll" | |
<FilesMatch \.php$> | |
SetHandler application/x-httpd-php | |
</FilesMatch> | |
# configure the path to php.ini | |
PHPIniDir "C:/php54" |
This file contains 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
LoadModule proxy_module modules/mod_proxy.so | |
LoadModule proxy_http_module modules/mod_proxy_http.so | |
ProxyRequests Off | |
ProxyPreserveHost On | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> |
This file contains 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
time 1:00:00 PM | |
date 12/7/2013 |
This file contains 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
set TABLEAU_SVR_DIR="C:\Program Files\Tableau\Tableau Server\8.1" | |
pushd %TABLEAU_SVR_DIR%\bin | |
rem stop tableau server | |
tabadmin stop | |
rem tabadmin set wgserver.trusted_hosts "ip1, ip2" | |
tabadmin set wgserver.trusted_hosts "127.0.0.1, 192.168.230.129" | |
rem set the log level of log vizqlserver log, set info or debug | |
tabadmin set server.log.level "info" | |
rem config tableau | |
tabadmin config |
This file contains 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
# open tableau server login screen in existing server http://webserver_host/tableau/ | |
# after login url will redisrect to http://webserver_host/ | |
# open again to open tableau server portal http://webserver_host/tableau/ | |
# | |
# clear web browser cache to use or use private browsing mode | |
LoadModule proxy_module modules/mod_proxy.so | |
LoadModule proxy_http_module modules/mod_proxy_http.so | |
ProxyRequests Off |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>Redirect</title> | |
<meta http-equiv="Refresh" content="0; url=/selter"> | |
<!-- If the meta tag doesn't work, try JavaScript to redirect. --> | |
<script type="text/javascript"> | |
window.location.href = "/selter" |
This file contains 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
# Quran.com | |
http://quran.com/ | |
## Quran.com legacy | |
http://legacy.quran.com/ | |
## Quran Android | |
http://android.quran.com/ | |
# Tanzil | |
http://tanzil.net/ |
This file contains 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
http://jsbin.com/ | |
http://cssdeck.com/ | |
https://jsfiddle.net/ | |
http://codepen.io// |
This file contains 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
@echo off | |
set _show_wlan=netsh wlan show drivers | |
rem see if device support hotspot | |
for /f "tokens=2 delims=:" %%a in ('%_show_wlan% ^|find "Hosted network supported"') do @set _hn_support=%%a | |
if "%_hn_support%"==" Yes" ( | |
setlocal EnableDelayedExpansion | |
set _ssid=Windows10Hotspot | |
set _password=Windows10 |
OlderNewer