Pages: PreviousFirst...1516171819...LastNext
Current Page: 17 of 20
Results 481 - 510 of 577
16 years ago
toivo
Hi, If you just want to run an FTP server on the Windows box, FileZilla works all right. You can download it from . Regards,
Forum: WampServer English
16 years ago
toivo
Oops, you are right: Even though you may be able to generate passwords using CRYPT in htpasswd.exe, Apache under Windows does not seem to be able to do the same. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Is some other service already using TCP port 3306? Go to the command prompt and do: 'netstat -an | more Look for the combination of a hostname and port 3306. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If you are accessing the MySQL database from a web application, it does not matter where the browser client is, the username your application is using for the MySQL connection always accesses the database from the host 'localhost'. Therefore, if the username and password are valid for the host 'localhost', your application should be able to access the database. However, if you are tryi
Forum: WampServer English
16 years ago
toivo
Hi, You can use the option -d with htpasswd.exe in c:\wamp\apache2\bin to generate the password and it will force the CRYPT encryption. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, I am using WAMP for production in a business environment. You need to make sure that your application is secure, for example by using rewrite rules in the .htaccess file like Joomla to check the HTTP requests for SQL injection attempts and other nasty things hackers and scriptkids try every day to check if they can find vulnerabilities in unpatched applications. There are lots of securit
Forum: WampServer English
16 years ago
toivo
Hi, Here are my notes how I managed to get HTTPS working on Wamp5 in my test environment, meaning my laptop. Those of you who know more about the topic are likely to find numerous grey areas, omissions and inaccuracies, but please point them out :-) The credits go to the guys at . OPENSSL_CONF ENVIRONMENT VARIABLE Go to Control Panel – System – Advanced – Environment Variables Ad
Forum: WampServer English
16 years ago
toivo
Hi, Can you see mod_ssl.so in the subfolder modules or not? According to the error message, it does not seem to be there at all. If you re-install , start Apache, go to the command prompt and do the command: httpd -t -D DUMP_MODULES it should show, among all the other modules, the text: ssl_module (shared) Possibly the instructions you googled managed somehow to get rid of c:\w
Forum: WampServer English
16 years ago
toivo
Hi, You can probably also get away with entering a partial IP address like 10.0.0 to allow access from the subnet (I have not tested this). If the Apache 'allow from' formats are available, you can find out more from . Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Make sure the IP address bound to the Windows workstation or server on which your MySQL server and WAMP run is a valid internal IP address in the subnet controlled by the router or firewall through which the requests from the internet come into your network and are then forwarded to the box running the MySQL server. If you can connect to MySQL server using that IP address from inside th
Forum: WampServer English
16 years ago
toivo
Hi, There are a couple of things you need to do: If your WAMP server runs Windows Firewall, open the TCP port 3306. You may want to change the scope to limit the connections to the local subnet or to a particular IP address only. If you are planning to connect to the MySQL service from outside your network, you need to open TCP port 3306 in the firewall router which connects your netwo
Forum: WampServer English
16 years ago
toivo
Hi, The content of the dynamic webpages created by a PHP application is a product of the PHP application code but also by any bugs that have slipped through during testing, rather than something in WAMP itself. I assume the other webservers you were running your website were not WAMP. One possibility that comes to mind is the version of PHP supported by the other webservers. If they were
Forum: WampServer English
16 years ago
toivo
Hi, Your example works all right in a PHP command line interface (CLI) script. If you use a browser to run your script, it should first create a HTML/XHTML document with the header and body tags and then print something like this: print "<p>apples<br />oranges<br />pears<br />pineapples</p>"; Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If you are creating a new database, I assume your user does not have any access rights to the newly created database. Please note that giving users universal access rights to all the databases is not very secure. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, You will see the results if you click the link 'Click here to return to the search screen'. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Click 'Return to search screen' and you will have the results there :-) Regards,
Forum: WampServer English
16 years ago
toivo
Hi, What your example shows as "URL" is usually "localhost". "DATABASE" is the name of the database schema you want to connect to. "USERNAME" is the name of the user you have set up and added a host from which you want to connect, with access rights to the schema. "PASSWORD" is the password you have assigned to the user. You can cre
Forum: WampServer English
16 years ago
toivo
Hi, Look for the following lines in httpd.conf: # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses (0.0.0.0) # #Listen 12.34.56.78:80 Listen 80 Change the Listen directive to listen to the requests on the particular interface only. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, I manage a commercial website running Joomla and we send emails through the company's SMTP server. Even if your ISP happens to block TCP port 25 to prevent spam, you may still be able to use their STMP server to forward the messages sent from phpmailer or php mail(). In the same way it is possible to set up Sendmail to use the ISP's server as 'smarthost' for totally legitimate forwarding
Forum: WampServer English
16 years ago
toivo
Hi, You need to open TCP port 3306 in the Windows firewall to allow connections from other computers. You can allow the connection from the specific PC or the subnet, for added security. You should also add the computer you are connecting from as a host underneath the username you are using in MySQL user permissions. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Regarding question 4, I manage a commercial site running Joomla. It is robust and well documented. Joomla has hundreds of extensions, both free and payable, if you need more functionality than just the base system. If you want to change the layouts, you can find free templates or buy commercial ones. Remember to check comments from the extension download site, study the documentatio
Forum: WampServer English
16 years ago
toivo
Hi, Here is the Finnish translation: $w_allServicesRunning = 'Kaikki palvelut toimivat'; $w_oneServiceRunning = '%n %t:sta palvelusta toimii'; $w_allServicesStopped = 'Mikään %t:sta palvelusta ei toimi'; $w_serverOffline = 'palvelin offline-tilassa'; $w_serverOnline = 'palvelin online-tilassa'; $w_about = '&Lisätietoja...'; $w_helpFile = 'Ohje'; $w_exit = 'Poistu';
Forum: WampServer English
16 years ago
toivo
Hi, The simplest way is to use phpMyAdmin, sign in as the default administrator or root user, create a new database and then set up a user and add localhost under the user as a host from where this user connects to the database, assigning all rights to this database/user/host combination. You can also use the MySQL Administrator utility from MySQL to do that. Last, but not least, you can
Forum: WampServer English
16 years ago
toivo
Hi, Locate the following two lines in c:\wamp\apache2\bin\php.ini: ; Maximum size of POST data that PHP will accept. post_max_size = 8M Change the limit to for example 64M and see how you go. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Your syntx looks all right, I have used it for databases up to 30 megs. Have you tried MySQL Administrator from MySQL? It is available as an add-on from this site, plus also from MySQL, look for the Community Edition. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Does your ISP allow you to connect to SMTP port 25? Some ISPs block traffic to port 25 as a measure against spam. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, There is a fix to the Catchable Fatal Error problem at Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If you use PHP, you could just modify the code slightly to make it work: <ul id="nav"><li><?php include "Menu.html" ?></li></ul> Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Your link produces a 404 Not Found error. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Do you mean you use include() statements for the menu and footers? Have you checked that the path is correct? Are there error messages in the log files in c:\wamp\logs? Do the included scripts perhaps use the short open tag <? instead of <?php ? Regards,
Forum: WampServer English
Pages: PreviousFirst...1516171819...LastNext
Current Page: 17 of 20