Comments for Zuziko https://zuziko.com Wed, 07 Oct 2020 19:17:18 +0000 hourly 1 Comment on How to Access WAMP 3.2.0 in Your Local Area Network by IT Manager https://zuziko.com/tutorials/how-to-access-wamp-server-in-local-area-network/#comment-2262 Wed, 07 Oct 2020 19:17:18 +0000 https://zuziko.com/?p=348#comment-2262 This is how I solved the problem, and it is obvious if you think about it. In Wampserver 3.2 there is a wizard to create your virtual host. However, it only used the name of the virtual host folder as the name of the virtual host server. When you access the server remotely you use the fully qualified domain name, but there is no configuration for that yet in Wampserver httpd-Vhost.conf file. Get to this file from the Wampserver->Apache menu. Copy the current vhost you want to access and paste that config into the file. Change the servername to the fully qualified domain name of the vhost. This also assumes you have a DNS CNAME entry for your vhost.

]]>
Comment on How to Access WAMP 3.2.0 in Your Local Area Network by topee https://zuziko.com/tutorials/how-to-access-wamp-server-in-local-area-network/#comment-2244 Mon, 05 Oct 2020 05:38:20 +0000 https://zuziko.com/?p=348#comment-2244 thanks it works 🙂

]]>
Comment on How to Enable HTTPS / SSL on WAMP Server 3.2.0 by Dima https://zuziko.com/tutorials/how-to-enable-https-ssl-on-wamp-server/#comment-2228 Fri, 02 Oct 2020 05:59:09 +0000 https://zuziko.com/?p=341#comment-2228 Realy helpful! Thx!

]]>
Comment on How to Change the Default WordPress Database Prefix by Al https://zuziko.com/tutorials/how-to-change-the-default-wordpress-database-prefix/#comment-2159 Fri, 18 Sep 2020 20:40:51 +0000 https://zuziko.com/?p=2829#comment-2159 Thanks, this was great, but now wp-admin is not working haha. What should be used instead ? Let’s say my new prefix is “ted_rTU87Ey_”

Thanks,
Al

]]>
Comment on How to Minify HTML in WordPress Without a Plugin by Martin https://zuziko.com/tutorials/how-to-minify-html-in-wordpress-without-a-plugin/#comment-2148 Tue, 15 Sep 2020 16:57:04 +0000 https://zuziko.com/?p=2487#comment-2148 After some more time I run into further issues with my early fix. Here is the updated fix.

Replace:

function flhm_wp_html_compression_start()
{
ob_start(‘flhm_wp_html_compression_finish’);
}
add_action(‘get_header’, ‘flhm_wp_html_compression_start’);

With:

function flhm_wp_html_compression_start()
{
// don’t minify HTML on this domain or part of the domain
$blacklist_domain = ‘.localdev’;

// if the function is called on a blacklisted domain, don’t minify HTML
if (false !== strpos(site_url(), $blacklist_domain) || is_user_logged_in()) {
return;
}

ob_start(‘flhm_wp_html_compression_finish’);
}
add_action(‘init’, ‘flhm_wp_html_compression_start’, 1);

]]>
Comment on How to Enable HTTPS / SSL on WAMP Server 3.2.0 by J.F. HAAS https://zuziko.com/tutorials/how-to-enable-https-ssl-on-wamp-server/#comment-2128 Sat, 05 Sep 2020 15:14:06 +0000 https://zuziko.com/?p=341#comment-2128 Perfectly clear. Done in 3 minutes. Thank you !

]]>
Comment on How to Access WAMP 3.2.0 in Your Local Area Network by Xavier https://zuziko.com/tutorials/how-to-access-wamp-server-in-local-area-network/#comment-2107 Wed, 26 Aug 2020 21:34:31 +0000 https://zuziko.com/?p=348#comment-2107 Thanks to you.
I now can access my web server based on Wamp from my PC on local network and on the internet !

]]>
Comment on How to Access WAMP 3.2.0 in Your Local Area Network by David https://zuziko.com/tutorials/how-to-access-wamp-server-in-local-area-network/#comment-2099 Tue, 18 Aug 2020 08:48:59 +0000 https://zuziko.com/?p=348#comment-2099 This is my file, it does not work

# Virtual Hosts
#

ServerName localhost
ServerAlias localhost
DocumentRoot “${INSTALL_DIR}/www”

Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted

]]>
Comment on How to Enable HTTPS / SSL on WAMP Server 3.2.0 by Julio https://zuziko.com/tutorials/how-to-enable-https-ssl-on-wamp-server/#comment-2089 Thu, 13 Aug 2020 12:41:35 +0000 https://zuziko.com/?p=341#comment-2089 Hello, I followed the steps, but when I go to https: // localhost, and decide to continue despite the warning, I don’t have the padlock, and the https is crossed out, what should I do?

]]>
Comment on How to Install WordPress on Windows using WAMP Server by Ali https://zuziko.com/tutorials/how-to-install-wordpress-on-windows-using-wamp-server/#comment-2075 Sun, 09 Aug 2020 14:02:40 +0000 https://zuziko.com/?p=160#comment-2075 it was really helpful, thanks

]]>