Research & Development

https://www.pingplotter.com/download/windows

Graph ping and traceroute over time. Find the source of network problems and fuel solutions with evidence.
PROS: Easy to use. Can see the graph to know where exactly is the problem.
CONS: Trial Version. If you like the software you need to buy it.


What is the default password for phpmyadmin with Wamp?

username : root, password: <Blank>

More: https://stackoverflow.com/questions/4420894/wamp-server-mysql-user-id-and-password


CodeIgniter: Controller not found

There should be 2 .htaccess files placed in the project.

First, in the root folder:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>

And also inside the application folder:

<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>

When you need to access the website from another computer wamp server

https://instructobit.com/tutorial/81/Remotely-accessing-your-Windows-WAMP-server-sites-over-the-internet


$config = Array(
    'protocol' => 'smtp',
    'smtp_host' => 'ssl://smtp.googlemail.com',
    'smtp_port' => 465,
    'smtp_user' => 'xxx',
    'smtp_pass' => 'xxx',
    'mailtype'  => 'html', 
    'charset'   => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

Leave a comment