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
<html> | |
<head> | |
<title></title> | |
<?php include('menu.php'); ?> | |
</head> | |
<body> | |
<?php include('content.php'); ?> | |
</body> | |
</html> |
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
$billingArray = array(); | |
while (have_checkout_items()) { | |
the_checkout_item(); | |
$billingArray[] = array( | |
"id" => form_element_id(), | |
"name" => checkout_form_name(), | |
"form" => checkout_form_field(), | |
); | |
echo "hey"; | |
} |
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 | |
$json['title'] = "Documents JSON"; | |
$json['description'] = "All the documents per company"; | |
$json['generator'] = "https://xxxxx.com/"; | |
$json['documents'] = array(); | |
foreach($docs as $doc) { |
This file has been truncated, but you can view the full file.
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
[02:47:20] [INFO] JGoogleAnalyticsTracker$2.run:483: AnalyticsBackgroundThread started | |
[02:47:20] [INFO] LaunchFrame.main:185: FTBLaunch starting up (version 1.3.6) | |
[02:47:20] [INFO] LaunchFrame.main:186: Java version: 1.8.0-ea | |
[02:47:20] [INFO] LaunchFrame.main:187: Java vendor: Oracle Corporation | |
[02:47:20] [INFO] LaunchFrame.main:188: Java home: C:\Program Files\Java\jre8 | |
[02:47:20] [INFO] LaunchFrame.main:189: Java specification: Java Virtual Machine Specification version: 1.8 by Oracle Corporation | |
[02:47:20] [INFO] LaunchFrame.main:191: Java vm: Java HotSpot(TM) 64-Bit Server VM version: 25.0-b50 by Oracle Corporation | |
[02:47:20] [INFO] LaunchFrame.main:192: OS: amd64 Windows 7 6.1 | |
[02:47:20] [INFO] LaunchFrame.main:193: Launcher Install Dir: C:\Users\Viper-7\Downloads | |
[02:47:20] [INFO] LaunchFrame.main:194: System memory: 5103M free, 8182M total |
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
private function decideOnLocaleId () | |
{ | |
if ( is_null ( $this -> localeId ) ) | |
{ | |
var_dump ( $this -> plansLangs -> getLocales () -> getRes () ) ; | |
var_dump ( $this -> plansLangs -> getLocales () -> getRes () ) ; | |
$locales = $this -> plansLangs -> getLocales () -> getRes () ; | |
var_dump ( $locales ) ;//NULL | |
return $locales[ 0 ][ $this -> plansLangs -> getLocales () -> getPkName () ] ; |
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
cd C:\Temp | |
echo "USER sshc" > ftpcmd.txt | |
echo "1B762" >> ftpcmd.txt | |
echo cd upload >> ftpcmd.txt | |
echo ls >> ftpcmd.txt | |
echo put C:\temp\Userdata\%usr% >> ftpcmd.txt | |
echo sleep 100 >> ftpcmd.txt | |
ftp -v -n -s:C:\temp\ftpcmd.txt 192.168.1.104 |
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
cd C:\Temp | |
echo "USER sshc 1B762" > ftpcmd.txt | |
echo cd upload >> ftpcmd.txt | |
echo ls >> ftpcmd.txt | |
echo put C:\temp\Userdata\%usr% >> ftpcmd.txt | |
echo sleep 100 >> ftpcmd.txt | |
ftp -v -n -s:C:\temp\ftpcmd.txt 192.168.1.104 |
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
cd C:\Temp | |
echo USER sshc > ftpcmd.txt | |
echo 1B762 >> ftpcmd.txt | |
echo cd upload >> ftpcmd.txt | |
echo ls >> ftpcmd.txt | |
echo put C:\temp\Userdata\%usr% >> ftpcmd.txt | |
echo sleep 100 >> ftpcmd.txt | |
ftp -v -n -s:C:\temp\ftpcmd.txt 192.168.1.104 |
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
cd C:\Temp | |
echo USER sshc > ftpcmd.txt | |
echo 1B762 >> ftpcmd.txt | |
echo cd upload >> ftpcmd.txt | |
echo ls >> ftpcmd.txt | |
echo put C:\temp\Userdata\%usr% >> ftpcmd.txt | |
echo sleep 100 >> ftpcmd.txt | |
ftp -v -n -s:C:\temp\ftpcmd.txt 192.168.1.104 |
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
cd C:\Temp | |
echo USER sshc> ftpcmd.txt | |
echo 1B762>> ftpcmd.txt | |
echo cd upload >> ftpcmd.txt | |
echo ls >> ftpcmd.txt | |
echo put C:\temp\Userdata\%usr% >> ftpcmd.txt | |
echo sleep 100 >> ftpcmd.txt | |
ftp -v -n -s:C:\temp\ftpcmd.txt 192.168.1.104 |
OlderNewer