Pages: PreviousFirst...1213141516...LastNext
Current Page: 14 of 20
Results 391 - 420 of 577
16 years ago
toivo
Hi badcobra10, From your MySQL log: 080321 18:36:42 Do you already have another mysqld server running on port: 3306 ? Do you? Terv.
Forum: WampServer English
16 years ago
toivo
Hi, It seems to be part of PEAR, and PEAR tells to use the following command to install it: pecl install perl It downloads perl-1.0.0.tgz, then tries to build but reports: ERROR: Did not understand the completion status returned from msdev.exe. This same installation method works in Linux, but unfortunately that does not help you much. Regards,
Forum: WampServer English
16 years ago
toivo
From your description I thought you wanted to give the students the whole database to do what they want. Is the main purpose of the course to teach students how to edit databases or more advanced topics like transactions? Here is possible solution: you do not have to install WAMP to a network drive at all, and students do not need access to the physical folder where the database resides. In
Forum: WampServer English
16 years ago
toivo
This may be useful: If you backed up the database using the Export - SQL options in phpMyAdmin, you can import the database using phpMyAdmin, but you can also do it from the DOS command prompt using the mysql command and the name of the .sql file as the input. Example: mysql -h localhost -u username -p password -D database_name < c:\temp\backup_file.sql Regards,
Forum: WampServer English
16 years ago
toivo
Hi, I am glad it worked out :-) You are just sending mail to your ISP. This means that your WAMP server connects to TCP port 25 in the SMTP server of your ISP. That operation does not open port 25 in your server at all because you are not running a mail server (which listens to incoming connections on port 25). You need to make sure your MX records are all right if you use your own do
Forum: WampServer English
16 years ago
toivo
Hi, According to MySQL's upgrade instructions at , one should always backup the databases before the upgrade. The onus is then on the Database Administrator to make sure that the right measures are taken: . Should there not be a human element factored in in this process? Otherwise any accountant could do our job :-) Regards,
Forum: WampServer English
16 years ago
toivo
Hi, You can simply write a script to backup the database to a file on a network drive. The students can then grab the backup from the network drive and restore it to their local drives. It is not absolutely necessary to stop the MySQL server for this operation. For details, read and . You can use the mysqldump command to do the backup. Sample code below. The mysql command can then be
Forum: WampServer English
16 years ago
toivo
You can run as many domains on WAMP as you want because Apache supports virtual hosts. As long as you know what your IP address is (even if it is dynamic, you can get DNS support from and ) and organise the company hosting your DNS records to point the domain(s) to your IP address. Then you need to forward incoming TCP port 80 packets or HTTP requests from your firewall to the internal IP ad
Forum: WampServer English
16 years ago
toivo
Only very rarely you would run your own DNS server, and definitely not for the same domain as the server which you are hosting the domain name for. That would create a case of the chicken or the egg. If you own a second domain and an old 486 PC, have fun and install Linux with BIND and host your domain, like I do :-) Regards,
Forum: WampServer English
16 years ago
toivo
Do a bit of reading, starting from here: Regards,
Forum: WampServer English
16 years ago
toivo
That sounds strange. Obviously phpMyAdmin does not like your data :-) I always use MySQL Administrator from MySQL and its MySQL Query Browser for importing and running queries. Regards,
Forum: WampServer English
16 years ago
toivo
Cheers, toivo
Forum: WampServer English
16 years ago
toivo
Hi, Edit the php.ini file: c:\wamp\bin\apache\apache2.2.8\bin\php.ini Modify the following lines and increase the size in MB: ; Maximum size of POST data that PHP will accept. post_max_size = 8M ; Maximum allowed size for uploaded files. upload_max_filesize = 2M You may also need to increase the session timeout value and the maximum memory allocation for a session. Rega
Forum: WampServer English
16 years ago
toivo
Does the MySQL error message or error give any clues? The errors would probably be cause by the way the primary key, if any, was defined and the data types of the columns. Regards,
Forum: WampServer English
16 years ago
toivo
This sounds more like a Joomla problem. You could increase the 15 minute Admin Session Lifetime in the Joomla configuration. Did you drop the database before you re-installed Joomla? I am not sure if the re-installation starts the user table from scratch or not. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If you save the Excel file as tab limited file or 'Text (Tab delimited) (*.txt)', you can then import it into an existing MySQL table either through a query in MySQL Query Browser or equivalent, or write a script to do that. Here is an example of the query that does the import from the c:\temp folder of the local workstation, which is not the same as the MySQL server: LOAD DATA LOC
Forum: WampServer English
16 years ago
toivo
Hi, Are you logging into the domain name followed by /administrator ? You should be able to select the option 'Lost Password?' from the login screen and a new password will be sent to your email address - assuming you set up the SMTP / mail server configuration during the installation. I hope you have a second Super Administrator user you can use. Regards,
Forum: WampServer English
16 years ago
toivo
There is no need to discuss the fact that WAMP does not come with a mail server, in other words a mail server is not bundled into WAMP, and I am not suggesting that it should. However, as I said, "Sending emails is an essential part of the functionality of any webserver". That functionality is independent of where the actual mail server is running. The standard PHP implementation
Forum: WampServer English
16 years ago
toivo
Hi yfastud, I thought the idea of this forum is to help people to use WAMP as a webserver. Sending emails is an essential part of the functionality of any webserver. If some of users are not familiar with the intricacies of networking and mail, we should be able to at least point them to the right direction. Regards,
Forum: WampServer English
16 years ago
toivo
Hi Spillage, I just saw your last message: No need to go and hide. The action "processorder.php" works fine, the default location for files is the current working directory and you do not have to include the full path or URL. Using a relative path should work all right and makes it easier to migrate your code to a different server environment. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If order.html file containing your code is run in working WAMP5 system, the form is POSTed to the processorder.php script and it outputs the HTML page all right. Have you modified the default settings in any way? You could try to create the file phpinfo.php with the following contents: <?php phpinfo(); ?> When you run it, it should present the PHP settings nicely for
Forum: WampServer English
16 years ago
toivo
Hi webface, If you ran the go-pear.bat file and installed PEAR, and then installed the Mail package with all its dependencies, you should now have the required files in your system, especially: c:\wamp\bin\php\php5.2.5\PEAR\Mail.php If you cannot find that file but you have PEAR installed, you can just run the following command to install the Mail package: pear install --alldeps mail
Forum: WampServer English
16 years ago
toivo
Hi webface, If your application comes with the program mail.php, why don't you just use the relative path from the current working directory to mail.php? At the moment, if the require function does not find mail.php in the current working directory, it tries the include_path, as defined in the php.ini file. The folders you see in the error message is the default setting after the installatin
Forum: WampServer English
16 years ago
toivo
HIi, The GUI tools like MySQL Administrator work with WAMP5. I have not tried them with the latest version but the name of the service should not matter because the tools use TCP port 3306. If you are into GUI tools, you should try SQLyog, too. Regards,
Forum: WampServer English
16 years ago
toivo
Try this: <?php phpinfo(); ?> You should see the PHP configuration, nicely formatted in an HTML table. Do you how the system was restored? Was it restored from an image of a working system? You may have to go back to the basics or to a clean install of the operation system to get to a known state and then re-install WAMP. Regards,
Forum: WampServer English
16 years ago
toivo
Hi, Your first level of defence is a properly configured firewall appliance which limits the access to your network to the ports which are allowed to be accessed by users from the internet. Ideally the firewall supports a DMZ (Demilitarized Zone) interface so that your webserver is in a separate subnet. Run only the essential services in your webserver. The user under which the Apache ser
Forum: WampServer English
16 years ago
toivo
Hi, Even though your examples are minimal in terms of HTML, both of them produce the greeting all right when run in a working server. Did you change any of the default settings? Regards,
Forum: WampServer English
16 years ago
toivo
Hi, If you search this forum for posts with 'email' in the last 30 days, you will find lots of information. Click the line with the text 'Click here to return to the search screen' to access the results :-) Regards,
Forum: WampServer English
16 years ago
toivo
Please check the PHP documentation for include() and include_path. A good place to start is . Regards,
Forum: WampServer English
16 years ago
toivo
Hi, You may still want to limit the connection to a particular workstation by using its computer name as the host from which the user can connect, for security reasons. Just my 2c worth. Regards,
Forum: WampServer English
Pages: PreviousFirst...1213141516...LastNext
Current Page: 14 of 20