Posts by robertopc • 61 points
6 posts
-
1
votes1
answer56
viewsA: Domain forwarding
Yes. Use . htaccess. Example: RewriteEngine on RewriteRule (.*) http://www.novosite.com.br/$1 [R=301,L]
-
0
votes2
answers3812
views -
1
votes1
answer483
viewsA: Background with mosaic of photos
If the images are not dynamic, I think it’s best to make a static image and use it as a background. To adjust to the body use the property background-size:100% 100%; of CSS3.
-
1
votes2
answers306
viewsA: Datepicker from Bootstrap
Open the Browser Console, inspect the element, take the classes and use them in a separate CSS by editing the directives and inserting the flag ! Important.
-
1
votes1
answer94
viewsA: Result Mysql query different localhost and production
I solved the problem by adding the following line at the beginning of the query: SET GLOBAL group_concat_max_len = 1024000; Following the orientation of this post:…
-
1
votes1
answer94
viewsQ: Result Mysql query different localhost and production
I have a problem in which the same query executed on the local server and production, return a different result. The production version is coming incomplete in the EVALUATIONS field. I checked the…