All Questions

2
answers

.htaccess with subfolder other than root

I was working with this framework and with this htaccess: structure config/ logs/ www/ app/ bootstrap/ public/ packages/ .htaccess index.php ... vendor/ .htaccess ... htaccess...
asked on 16.01.2014 / 19:23
1
answer

Facebook Binding SDK 3.6 for Android

In my project with Xamarin, I need to use the binding of the Facebook SDK for Android in version 3.6. However, I could only find the binding of version 3.0 , which is out of date. Does anyone know where I can find the Facebook Binding SDK...
asked on 20.01.2014 / 18:19
2
answers

How to solve the SLF4J fault in maven?

Problem with Maven install: When I run in eclipse Run As > Maven install I always get this message: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation...
asked on 18.02.2014 / 19:59
2
answers

How to increase the size of the GET request to place parameters larger than 10KB in NGINX and PHP?

I need to make a very large GET request with NGINX and PHP. Is there any configuration in NGINX or PHP that solves this?     
asked on 25.02.2014 / 16:01
1
answer

How do I add customElements support for Opera 12?

I'm working with customElements, but I've been having a problem with Opera 12. So far the best I've been was to use x-tags but the same as only support document.register and this differs slightly from the W3C API , another drawback...
asked on 31.01.2014 / 06:08
1
answer

Performance on Javascript objects

Through what medium do you get the best performance of Javascript objects. var Objeto = { propriedade:'valorPropriedade', init:function() { //Inicia Objetos } } var obj = Objeto.init(); or: function Objeto() { thi...
asked on 27.02.2014 / 01:30
1
answer

Send data to upload images through ajax

<script type="text/javascript"> $(function(){ $("#oformulario").submit(function(e){ e.preventDefault(); var nome = $("#nome").val(); var email = $("#email").val(); var obs = $("#obs").val();...
asked on 20.08.2014 / 23:54
1
answer

How do I configure .htaccess to accept hyphen in the URL?

I'm customizing the URLs of my site, but .htaccess does not accept URLs with hyphens, for example: postagem/1/criando-efeito-fadeout-com-javascript When I write the title without the hyphens works, but with them not, why? How do I re...
asked on 12.02.2014 / 17:26
2
answers

Is it possible to get any value from the browser that identifies the user's machine?

Problem I'm researching some way to identify and validate workstations, and would like to get some value from the machine that is not changeable, such as IP that can change. I tried to get MAC address , but it does not seem possible bec...
asked on 01.09.2014 / 15:12
3
answers

Practical use of Constant scalar expressions in PHP and other languages

In PHP 5.6 we will have a feature named Constant scalar expressions . The manual provides some examples, but the main focus would be: How to correctly use the feature without undoing an anti-pattern ? Do other languages implemen...
asked on 16.07.2014 / 23:06