FAQ

Configuration

NET::ERR_CERT_AUTHORITY_INVALID since Chrome 58

Keyboard Navigation FAQ Book Pro: New Question The currently installed Joomla! version is "‎4.1.5"‎4.1.5 Bearsampp Clean Cache × success Item…
Keyboard Navigation FAQ Book Pro: New Question The currently installed Joomla! version is "‎4.1.5"‎4.1.5 Bearsampp Clean Cache × success Item saved. Title * NET::ERR_CERT_AUTHORITY_INVALID since Chrome 58 Alias Auto-generate from title The Alias will be used as part of the URL. General Custom fields Attachments Options Publishing

Since Chrome 58, self-signed certificates generated with Neard are no longer accepted and you will have the error NET::ERR_CERT_AUTHORITY_INVALID if you go to https://localhost.

Chrome only accepts insecure certificates on localhost by turning the flag chrome://flags/#allow-insecure-localhost on Chrome. Or you can add the certificate to the Trusted Root Certification Authorities with the certutil command :

certutil.exe -addstore -user root "C:\bearsampp\ssl\localhost.crt"

Then restart Chrome.

0 answersPosted 1 year ago

Ruby : MSYS2 could not be found

Since Ruby 2.4, RubyInstaller is based on MSYS2 toolchain. If you want to compile C based ruby gems, you will…
Since Ruby 2.4, RubyInstaller is based on MSYS2 toolchain. If you want to compile C based ruby gems, you will have to download and install all necessary MSYS2 build tools by typing the command ridk install used by the official installer.
0 answersPosted 1 year ago

VMWare service uses port 80 and 443

According to VMWare Knowledge base article, connection to VMware Workstation Server (the shared virtual machines) is administered by the VMware…

According to VMWare Knowledge base article, connection to VMware Workstation Server (the shared virtual machines) is administered by the VMware Host Agent service. The service uses TCP ports 80 and 443. This service is also used by other VMware products, including VMware Server and vSphere, and provides additional capabilities.

This will block the execution of the Apache service on Bearsampp.

You can change the VMware Workstation Server ports when you install Workstation and after Workstation is installed.
To connect from a second instance of Workstation to Workstation Server:

  • Go to File > Connect to Server.
  • Enter the host name or IP address of the host machine running Workstation Server.
  • When prompted, login with the username and password of a local administrator on the remote host.

Note: If the VMware Workstation Server service running on the remote server is not using the default port, you must specify the port number. For example, remotehost:444.

With the Shared VMs Workstation preferences, you can also disable the server. To access the Shared VMs Workstation preferences:

  • Go to Edit > Preferences.
  • Click the Shared VMs tab.
0 answersPosted 1 year ago

How to stop IIS conflict port 80 and 443

Open a CMD prompt (as Admin) and type iisreset /stop Or you can change the port number of IIS by…
Open a CMD prompt (as Admin) and type iisreset /stop
 
Or you can change the port number of IIS by following the official Microsoft documentation.
0 answersPosted 1 year ago

How to prevent Skype conflict of port 80 and 443

To turn off and disable Skype usage of and listening on port 80 and port 443, open the Skype window,…
To turn off and disable Skype usage of and listening on port 80 and port 443, open the Skype window, then click on the Tools menu and select Options. Click on the Advanced tab, and go to the Connection sub-tab. Untick or uncheck the checkbox for Use port 80 and 443 as an alternative for additional incoming connections option. Click on the Save button and then restart Skype to make the change effective. 
0 answersPosted 1 year ago

How do you change import file size limit in phpMyAdmin

The changes have to be done in the alias configuration in alias\phpmyadmin.conf : <Directory "C:/neard/apps/phpmyadmin/phpmyadmin4p3/4.4.15.6/"> Options Indexes FollowSymLinks MultiViews AllowOverride…
The changes have to be done in the alias configuration in alias\phpmyadmin.conf :
<Directory "C:/neard/apps/phpmyadmin/phpmyadmin4p3/4.4.15.6/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    # START switchOnline tag - Do not replace!
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1 ::1
    # END switchOnline tag - Do not replace!
    
    <IfModule php5_module>
        php_admin_value upload_max_filesize 128M
        php_admin_value post_max_size 128M
        php_admin_value max_execution_time 360
        php_admin_value max_input_time 360
    </IfModule>
    <IfModule php7_module>
        php_admin_value upload_max_filesize 128M
        php_admin_value post_max_size 128M
        php_admin_value max_execution_time 360
        php_admin_value max_input_time 360
    </IfModule>
</Directory>
0 answersPosted 1 year ago

How to disable some services to launch on startup?

There are two ways to disable some services to launch on startup. First you can edit the neard.conf file and…

There are two ways to disable some services to launch on startup.

First you can edit the neard.conf file and change the value to 0 for keys ending with enable = "1" below BINS.
Example: filezillaEnable = "0"

Or you can go to the Neard menu.
Example: Bearsampp tray menu > FileZilla > Enable / Disable

 
0 answersPosted 1 year ago

How to use MySQL and MariaDB simultaneously with PHP?

By default MySQL is started on port 3306 and MariaDB on port 3307.Here is an example using PDO to access…
By default MySQL is started on port 3306 and MariaDB on port 3307.
Here is an example using PDO to access a database named wordpress installed on MySQL and MariaDB :
$mysql = new PDO('mysql:host=127.0.0.1;port=3306;dbname=wordpress', 'root', '');
$mysqlStmt = $mysql->query("SELECT * FROM wp_comments");
var_dump($mysqlStmt->fetchAll(PDO::FETCH_ASSOC));

$mariadb = new PDO('mysql:host=127.0.0.1;port=3307;dbname=wordpress', 'root', '');
$mariadbStmt = $mariadb->query("SELECT * FROM wp_comments");
var_dump($mariadbStmt->fetchAll(PDO::FETCH_ASSOC));
0 answersPosted 1 year ago

What is the default user / password on PostgreSQL

The user is postgres and there is no password for this user.
The user is postgres and there is no password for this user.
0 answersPosted 1 year ago

What is the default password for root user on MySQL / MariaDB?

By default, there is no password for root user.
By default, there is no password for root user.
0 answersPosted 1 year ago

What is the default user / password for FileZilla Server?

The user is root and there is no password for this user.
The user is root and there is no password for this user.
0 answersPosted 1 year ago

How do you upgrade from a previous release

Bearsampp is a portable application therefore there is nothing to install except the prerequisites package. This provides the various Microsoft…
Bearsampp is a portable application therefore there is nothing to install except the prerequisites package.  This provides the various Microsoft code libraries that are used.  If you already have them installed, and its possible you already do,  they will not be installed again.

For each release there are "Upgrade notes" provided to guide you on how to upgrade.
0 answersPosted 1 year ago

Sorry, this website uses features that your browser doesn’t support. Upgrade to a newer version of Firefox, Chrome, Safari, or Edge and you’ll be all set.