Posts by Guilherme • 121 points
7 posts
-
0
votes2
answers608
viewsA: Web Service Mail Test - SSL Error
The problem is in the web service certificate. Probably the certificate is self-signed, which causes it to be marked as 'fake' by browsers/applications. Not much to do. You can try to force your…
-
0
votes4
answers179
viewsA: How to display files without underline?
The ideal is not to have spaces and special characters in filenames. You can treat this when uploading the file. In your case, for files that are already on the server you can use the str_replace()…
-
2
votes1
answer44
viewsA: Postgresql PHP query
There at the end of your code, there’s a gap betweenid_ and hitchhiker cc.id_ " . $this Correct code: cc.id_" . $this
-
2
votes3
answers785
viewsA: How can I make a query with LIKE or REGEXP ignoring table words?
I had a similar problem here in my company. Basically, here we use two ways to identify homonyms with typos. The first is the distance Levenshtein and the second is the soundex function().…
-
1
votes1
answer1327
viewsA: using Ajax to seek state - city
First, let’s go to the code of the page where the droplists meet: State droplist code <select name="estados" id="estados"> <option value="0">Selecione o estado</option> <?php…
-
3
votes2
answers108
viewsA: What is the "array" option for in the app/config/Session.php?
"array - Sessions will be stored in a simple PHP array and will not be persisted Across requests." - Taken from the Laravel documentation site (http://laravel.com/docs/4.2/session) In a free…
-
1
votes1
answer62
views