Posts by Alessandro • 141 points
7 posts
-
1
votes1
answer1934
viewsA: Always redirect to HTTPS with Codeigniter
Oops. It is safer for you to redirect to . htaccess and also Codeigniter. Htaccess 01 - Create a file named ". htaccess" 02 - And put in it Rewriteengine On Rewritecond %{SERVER_PORT} 80 Rewriterule…
-
1
votes0
answers604
viewsQ: Changing WWW on Wampserver 3
Good Afternoon, I already changed the httpd.conf file on the lines Documentroot "d:/var/www" But when I ask to open the www is still targeting the previous one. D: wamp64 www Does anyone have any…
wampasked Alessandro 141 -
2
votes2
answers1187
viewsQ: Delphi 7 Ado Dataset not in Edit or Insert mode
I’m doing a program on Delphi 7 with Access (I know it’s old stuff). But it’s making the mistake when I try to record in a very simple thing. tblPerguntas.Open; tblPerguntas.Insert;…
-
0
votes2
answers1937
viewsA: Error: "PHP Startup: sqlsrv: Unable to initialize module"
Summing up everything we’ve written. The solution is to use the unofficial http://robsphp.blogspot.co.uk/2012/06/unofficial-microsoft-sql-server-driver.html But just in case I’m using the old one.…
-
4
votes2
answers1937
viewsQ: Error: "PHP Startup: sqlsrv: Unable to initialize module"
I’m trying to access SQL Server through XAMPP on Windows 7 64 bits, but I’m not getting, I already followed step by step the tutorials, but when starting Apache gives the error in the line below:…
-
1
votes2
answers225
viewsA: Shell_exec(): How to keep process active when restarting apache?
I believe that there is no way, because the Apache user who started the process. Run an exec shell with another non-apache user. http://phpseclib.sourceforge.net/ see this lib that can solve your…
-
4
votes1
answer1925
viewsQ: Cake PHP Relationship - 3 Tables
I have the following 3 tables: Table State: id nomeEstado Table City: id idEstado //(que busca da tabela estado) nomeCidade Participating Table: id Nome idCidade Now I want to put on the page Nome,…