tokens
sequence
ner_tags
sequence
[ "Though", "when", "we", "install", "it", "on", "the", "client", "Win8", "server", "it", "does", "not", "work", "anymore", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "B-Operating_System", "B-Application", "O", "O", "O", "O", "O", "O" ]
[ "The", "client-side", "is", "validating", "numbers", "properly", "for", "the", "de-CH", "culture", "'", "0.00", "'", ",", "but", "the", "server", "rejects", "them", "as", "invalid", "." ]
[ "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Value", "O", "B-Value", "I-Value", "I-Value", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O" ]
[ "The", "Date", "formats", "ARE", "however", "working", ",", "which", "just", "adds", "to", "the", "confusion", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "where", "I", "wonder", "if", "it", "is", "somehow", "falling", "back", "to", "de-DE", "where", "the", "date", "formats", "are", "the", "same", "but", "the", "number", "format", "is", "'", "0", ",", "00", "'", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "B-Value", "O" ]
[ "Does", "a", "server", "have", "to", "have", "a", "specific", "culture", "enabled/installed", "?" ]
[ "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Or", "any", "other", "ideas", "to", "check", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Finally", "we", "figured", "out", "the", "problem", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Apparently", "there", "are", "registry", "settings", "for", "the", "culture", "on", "the", "server", "that", "were", "set", "to", "de-AT", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "B-Value", "O" ]
[ "These", "somehow", "were", "being", "honored", "above", "the", "Web.Config", "settings", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "O" ]
[ "I", "need", "to", "somehow", "extract", "plain", "HTTP", "request", "message", "from", "a", "Request", "object", "in", "Scrapy", "(", "so", "that", "I", "could", ",", "for", "example", ",", "copy/paste", "this", "request", "and", "run", "from", "Burp", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "So", "given", "a", "scrapy.http.Request", "object", ",", "I", "would", "like", "to", "get", "the", "corresponding", "request", "message", ",", "such", "as", "e.g", "." ]
[ "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Clearly", "I", "have", "all", "the", "information", "I", "need", "in", "the", "Request", "object", ",", "however", "trying", "to", "reconstruct", "the", "message", "manually", "is", "error-prone", "as", "I", "could", "miss", "some", "edge", "cases", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "My", "understanding", "is", "that", "Scrapy", "first", "converts", "this", "Request", "into", "Twisted", "object", ",", "which", "then", "writes", "headers", "and", "body", "into", "a", "TCP", "transport", "." ]
[ "O", "O", "O", "O", "B-Library", "O", "O", "O", "B-Class", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "maybe", "there", "'s", "away", "to", "do", "something", "similar", ",", "but", "write", "to", "a", "string", "instead", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O" ]
[ "UPDATE" ]
[ "O" ]
[ "I", "could", "use", "the", "following", "code", "to", "get", "HTTP", "1.0", "request", "message", ",", "which", "is", "based", "on", "http.py", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Version", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Is", "there", "a", "way", "to", "do", "something", "similar", "with", "HTTP", "1.1", "requests", "/", "http11.py", ",", "which", "is", "what", "'s", "actually", "being", "sent", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Version", "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "would", "obviously", "like", "to", "avoid", "duplicating", "code", "from", "Scrapy/Twisted", "frameworks", "as", "much", "as", "possible", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O" ]
[ "As", "scrapy", "is", "open", "source", "and", "also", "has", "plenty", "of", "extension", "points", ",", "this", "should", "be", "doable", "." ]
[ "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "requests", "are", "finally", "assembled", "and", "sent", "out", "in", "scrapy/core/downloader/handlers/http11.py", "in", "ScrapyAgent.download_request", "(", "https://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "B-Function", "O", "O", "O" ]
[ "If", "you", "place", "your", "hook", "there", "you", "can", "dump", "the", "request", "type", ",", "request", "headers", ",", "and", "request", "body", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "To", "place", "your", "code", "there", "you", "can", "either", "try", "monkey", "patching", "ScrapyAgent.download_request", "or", "to", "subclass", "ScrapyAgent", "to", "do", "the", "request", "logging", ",", "then", "subclass", "HTTP11DownloadHandler", "to", "use", "your", "Scrapy", "Agent", "and", "then", "set", "HTTP11DownloadHandler", "as", "new", "DOWNLOAD_HANDLER", "for", "http", "/", "https", "requests", "in", "your", "project", "'s", "settings.py", "(", "for", "details", "see", ":", "https://doc.scrapy.org/en/latest/topics/settings.html#download-handlers", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Library", "O", "O", "O", "O", "B-Class", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "my", "opinion", "this", "is", "the", "closest", "you", "can", "get", "to", "logging", "the", "requests", "going", "out", "without", "using", "a", "packet", "sniffer", "or", "a", "logging", "proxy", "(", "which", "might", "be", "a", "bit", "overkill", "for", "your", "scenario", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "From", "the", "documentation", ":" ]
[ "O", "O", "O", "O" ]
[ "\"", "Assigning", "to", "size", ",", "width", "or", "height", "changes", "the", "dimensions", "of", "the", "rectangle", "\"", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "the", "following", "circle", ",", "assign", "a", "new", "attribute", "but", "no", "changes", "can", "be", "seen", "in", "circle", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "What", "am", "i", "doing", "wrong", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "You", "draw", "the", "circle", "on", "the", "screen", "surface", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-User_Interface_Element", "O", "O" ]
[ "Every", "drawing", "function", "then", "returns", "a", "Rect", ",", "but", ":" ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O" ]
[ "To", "actually", "change", "the", "circle", "on", "the", "screen", ",", "you", "have", "to", "erase", "it", "first", "(", "draw", "something", "above", "it", ")", ",", "then", "draw", "a", "new", "circle", "in", "the", "size", "you", "want", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O" ]
[ "Here", "'s", "a", "simple", "example", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "attempting", "to", "up-sample", "an", "icosahedron", "in", "MATLAB", "by", "adding", "new", "vertices", "at", "the", "mid-points", "of", "each", "edge", "and", "recomputing", "the", "faces", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "managed", "to", "place", "the", "new", "vertices", ",", "but", "I", "ca", "n't", "figure", "out", "how", "to", "recompute", "the", "new", "faces", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "each", "vertex", "to", "connect", "to", "its", "closest", "neighbours", "to", "form", "a", "new", ",", "up-sampled", "icosahedron", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Sample", "data", ":" ]
[ "O", "O", "O" ]
[ "Code", ":" ]
[ "O", "O" ]
[ "For", "a", "triangle", "{", "1", ",", "2", ",", "3}", ",", "subdividing", "will", "create", "3", "new", "vertices", "{", "a", ",", "b", ",", "c}", ":" ]
[ "O", "O", "O", "O", "B-Value", "O", "B-Value", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "B-Variable", "O" ]
[ "It", "will", "also", "create", "4", "new", "faces", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Your", "code", "creates", "the", "coordinates", "of", "the", "new", "vertices", "in", "V", "such", "that", "the", "a", "vertices", "for", "all", "of", "the", "triangles", "come", "first", ",", "followed", "by", "the", "c", "vertices", ",", "and", "then", "the", "b", "vertices", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O", "O" ]
[ "First", "let", "'s", "generate", "the", "indices", "of", "these", "vertices", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "new", "indices", "start", "from", "size(S.vertices)+1", "and", "there", "are", "a", "total", "of", "3*size(S.faces)", "of", "them", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O" ]
[ "Let", "'s", "also", "group", "the", "new", "vertices", "for", "a", "each", "existing", "face", "together", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "gives", "us", "all", "of", "the", "new", "[", "a", "b", "c", "]", "faces", "(", "actually", ",", "in", "[", "a", "c", "b", "]", "order", ")", "in", "Vx(f,:)", "with", "the", "a", "vertices", "in", "Vx(:,1)", ",", "the", "b", "vertices", "in", "Vx(:,3)<-", "-", "not", "2", "!", ",", "and", "the", "c", "vertices", "in", "Vx(:,2)", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "B-Code_Block", "O", "O", "B-Variable", "O", "O", "B-Code_Block", "O", "O", "B-Variable", "O", "O", "B-Code_Block", "O", "O", "B-Value", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Code_Block", "O" ]
[ "Now", "we", "need", "to", "create", "the", "other", "3", "new", "faces", "for", "each", "existing", "face", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "do", "this", "using", "cat", ",", "permute", "and", "reshape", ",", "but", "it", "gets", "really", "ugly", "and", "incomprehensible", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Since", "we", "'ve", "only", "got", "9", "vertices", "that", "go", "into", "these", "faces", ",", "it", "'s", "easier", "to", "just", "plug", "them", "in", "manually", "to", "create", "a", "m", "x", "9", "matrix", "and", "then", "reshape", "into", "m*3", "x", "3", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "B-Data_Structure", "O", "O", "B-Function", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "O" ]
[ "Now", "all", "that", "'s", "left", "is", "updating", "S", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "So", "at", "this", "point", "I", "am", "running", "the", "app", "by", "the", "command", ":", "nodemon", "server.js", ",", "I", "did", "not", "deploy", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "I", "created", "a", "Bitnami", "powered", "compute", "engine", "machine", "that", "has", "MongoDB", "installed", ",", "and", "it", "works", "when", "I", "log", "in", "to", "it", "." ]
[ "O", "O", "O", "B-Library", "O", "B-Device", "I-Device", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "From", "my", "nodejs", "App", "engine", "I", "connect", "like", "this", ":" ]
[ "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "error", "I", "get", "is", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "tried", "ssh-ing", "into", "the", "compute", "engine", "and", "I", "did", "the", "following", ":" ]
[ "O", "O", "O", "O", "O", "B-Device", "I-Device", "O", "O", "O", "O", "O", "O" ]
[ "adding", "perimision", "for", "port", "27017", ":" ]
[ "O", "O", "O", "B-Device", "O", "O" ]
[ "gcloud", "compute", "firewall-rules", "create", "allow-mongodb", "--allow", "tcp:27017" ]
[ "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "It", "said", "it", "already", "exist", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "changed", "in", "mongodb.config", "in", "bind_ip", "to", "0.0.0.0", "." ]
[ "O", "O", "O", "B-File_Name", "O", "B-Variable", "O", "B-Value", "O" ]
[ "Still", "nothing", "." ]
[ "O", "O", "O" ]
[ "This", "is", "very", "frustating", ",", "if", "you", "have", "any", "idea", "I", "would", "very", "much", "apreciate", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "a", "mention", ",", "I", "do", "not", "have", "a", "lot", "of", "experience", "with", "this", ",", "so", "please", "be", "explicit", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "usually", "do", "this", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "hope", "helped", "." ]
[ "O", "O", "O", "O" ]
[ "I", "need", "to", "create", "a", "virtual", "printer", "that", "'", "shreds", "'" ]
[ "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O" ]
[ "Basically", "here", "is", "my", "problem", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "software", "program", "that", "needs", "to", "'", "print", "'", "a", "file", "before", "it", "will", "save", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "to", "be", "able", "to", "print", "to", "my", "shredder", "so", "that", "it", "saves", "the", "document", ",", "but", "I", "do", "n't", "actually", "want", "the", "document", "printed", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "I", "need", "to", "print", "to", "a", "program", "that", "securely", "deletes", "the", "document", "and", "shows", "as", "a", "driver", "in", "Windows", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "B-Operating_System", "O" ]
[ "How", "would", "I", "go", "about", "doing", "this", "in", "C#", "of", "VB.Net", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O" ]
[ "No", "need", "to", "write", "code", "for", "this", "just", "print", "to", "nul", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "This", "has", "worked", "since", "DOS", "." ]
[ "O", "O", "O", "O", "B-Operating_System", "O" ]
[ "Just", "create", "a", "new", "printer", ",", "printing", "to", "a", "local", "port", ",", "and", "put", "nul", "in", "there", "for", "the", "port", "name", "." ]
[ "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "B-Value", "O", "O", "O", "O", "B-Device", "O", "O" ]
[ "http://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html" ]
[ "O" ]
[ "I", "'m", "generating", "PDF", "files", "using", "an", "old", "library", "of", "iText", "on", "Unix", "." ]
[ "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "B-Library", "O", "B-Operating_System", "O" ]
[ "Everything", "is", "going", "fine", ",", "but", "my", "exploitation", "team", "has", "just", "contacted", "me", "telling", "they", "are", "having", "storage", "troubles", "with", "some", "temp", "files", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "After", "a", "discussion", ",", "they", "indicate", "me", "a", "lot", "of", "\"", "Acroaxxxxx", "\"", "files", "are", "created", "under", "/tmp", "folder", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "I-File_Name", "I-File_Name", "O", "O", "O", "O", "B-File_Name", "O", "O" ]
[ "I", "'m", "checking", "it", "and", "the", "files", "are", "the", "same", "I", "generate", "with", "my", "application", ",", "but", "my", "code", "is", "not", "handling", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "My", "question", "is", "quite", "simple", ":", "can", "I", "modify", "or", "add", "something", "to", "my", "code", "to", "indicate", "to", "iText", "to", "delete", "the", "tmp", "file", "created", "during", "the", "process", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O" ]
[ "Thnks", "!" ]
[ "O", "O" ]
[ "This", "works" ]
[ "O", "O" ]
[ "apache_setenv", "(", "'sessionID'", ",", "session_id()", ",", "TRUE", ")" ]
[ "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "BUT" ]
[ "O" ]
[ "it", "only", "makes", "sessionID", "appear", "on", "GETs", "of", "PHP", "files", "which", "set", "the", "variable", "." ]
[ "O", "O", "O", "B-Variable", "O", "O", "B-Code_Block", "O", "B-File_Type", "O", "O", "O", "O", "O", "O" ]
[ "I", "would", "like", "the", "sessionID", "to", "appear", "on", "all", "GETs", "including", "js", ",", "jpg", ",", "gif", "etc", "referred", "from", "the", "PHP", "file", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "B-Code_Block", "O", "B-File_Type", "O", "B-File_Type", "O", "B-File_Type", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "i.e", ".", "all", "the", "files", "in", "the", "PHP", "file", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "I", "thought", "that", "by", "setting", "an", "apache", "environment", "variable", "the", "variable", "scope", "would", "make", "it", "available", "for", "every", "GET", "from", "the", "PHP", "file", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "B-File_Type", "O", "O" ]
[ "Is", "there", "any", "way", "to", "do", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "p.s", ".", "I", "tried", "setting", "apache", "note", "first", "and", "that", "returns", "exactly", "the", "same", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Getting", "\"", "Gateway", "error", ":", "Unable", "to", "read", "response", "or", "response", "is", "empty", "\"", "when", "I", "try", "to", "post", "payments", "to", "authorize.net", "." ]
[ "O", "O", "B-Error_Name", "I-Error_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Authorize.net", "cannot", "see", "anything", "coming", "through", ",", "host", "provider", "says", "no", "issues", "on", "their", "end", "." ]
[ "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "using", "the", "Authorize.net", "payment", "type" ]
[ "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "I", "have", "verified", "my", "API", "login", "and", "trans", "ID", "in", "default", ",", "website", ",", "and", "store", "view" ]
[ "O", "O", "O", "O", "B-Variable", "I-Variable", "O", "B-Variable", "I-Variable", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "installed", "cURL", "SSL" ]
[ "O", "O", "O", "B-Application", "I-Application" ]
[ "I", "have", "verified", "no", "firewalls", "are", "blocking", "connections", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O" ]
[ "I", "am", "not", "in", "testmode" ]
[ "O", "O", "O", "O", "O" ]
[ "debugging", "is", "on", ",", "and", "results", "are", "below", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Below", "is", "the", "output", "from", "the", "exception.log", "file" ]
[ "O", "O", "O", "O", "O", "O", "B-File_Name", "O" ]
[ "i", "think", "you", "enabled", "Test", "Mode", "in", "System->Configuration->PaymentMethods" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application" ]
[ "Turns", "out", "there", "was", "an", "issue", "with", "my", "nameservers", "at", "my", "host", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O" ]
[ "I", "figured", "this", "out", "using", "information", "here", ":", "http://www.magentocommerce.com/boards/viewthread/50611/", "(", "the", "referenced", "thread", "can", "be", "viewed", "in", "the", "internet", "archive", ",", "here", "https://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "After", "that", "I", "received", "an", "error", "message", "associated", "with", "a", "blocked", "IP", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "added", "my", "new", "ip", "at", "accounts.authorize.net", "in", "Tools", "(", "top", "menu", ")", ">", "Fraud", "Suite", "(", "left", "menu", ")", ">", "Authorized", "AIM", "ip", "addresses", "(", "body", ",", "second", "to", "last", "item", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]