News:

Click here for Toll-Free Service for your business starting at $2.00 per month

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - webzone (archived)

#31
Support Requests / Re: PHP mail() problems
March 30, 2006, 10:48:44 PM
QuoteYou -may- have to change nameservers on the domains for them to be moved, I'm not sure if Plesk uses the same nameservers as the main server does

Plesk and the main server use different nameservers and IP addresses, so the change will be necessary.
#32
The complete instructions are located there.
#33
Support Requests / Re: PHP mail() problems
March 29, 2006, 11:40:32 PM
The mail function is still enabled on the main server.

It would probably be a good idea to move all your stuff anyway to the main server (because it is more flexible and up-to-date).
#34
Support Requests / Re: How do i make a domain?
March 28, 2006, 08:28:27 PM
You know, it would have been simpler to just write http://lvcs.net/dreg.php
#35
Support Requests / Re: PHP mail() problems
March 28, 2006, 05:20:49 AM
QuoteProbably the old members can get the name of the new path each time it is changed by subscribing to a mailing list?

Would work for Perl users, but not for PHP users. In PHP, the sendmail path is hard-coded in the serverwide configuration file (php.ini).
#36
Support Requests / Re: PHP mail() problems
March 27, 2006, 02:40:39 AM
QuoteEither way, if theres much more problem with spamming, you won't have to worry at all because mail() will be a disabled function, like on the plesk server.

That would be sad. Some people like me rely on this function.
#37
You need to use mysql_connect() to connect to the database server first. If you are already using it, verify that you are providing your database username and password properly. It should look like:

mysql_connect('localhost', 'my-db-username', 'my-db-password');

Note: You need to create a database before using it, if you have not already done so. You can add a database to your account using your account control panel.
#38
Support Requests / Re: PHP mail() problems
March 26, 2006, 08:36:28 PM
It looks like the path to sendmail recently changed. This might be your problem (though I don't know, I never used Perl).

Try to use /usr/sbin/sendm2 to send e-mails.
#39
Support Requests / Re: PHP mail() problems
March 25, 2006, 08:13:17 PM
Quote from: cEmail is not working for me either, I am not using Plesk.

Please provide more information. mail() is working fine for me.
#40
Support Requests / Re: problem in mysql database
March 22, 2006, 12:04:48 AM
Have you tried to log in manually to phpMyAdmin using your new database's username and password?
#41
QuoteAnyhow, do you have any suggestion on Rewrite tutorial website.  I read one from apache it's awesome but hard to undersatand.

Well, I started by learning how the PHP regular expressions work. Then, I learned the rest from the documentation on apache.org. It is mostly technical, but I got to understand how it worked with a lot of trial-and-error.
#42
I guess you could also try this one. It should combine rules 1 to 3.

RewriteRule ^([^/]+)?miku([^/]+)?\.html$ doc/int_miku/$1miku$2.html [L]
#43
If you are using Internet Explorer, its cache might be corrupted or stuck with old versions of pages.

Check with another browser, like Firefox or Opera. (Avant Browser and Maxthon are only a hidden IE.)
#44
Support Requests / Re: URL Rewriting problems...
March 20, 2006, 08:51:31 PM
The RewriteRule is not applied because the request doesn't match the pattern. Patterns never match if they start with a /.

This one should work, however:
RewriteRule ^cours/(PHP)/([^/]*)\.php$ index.php?cours=$1&id=$2 [L]
#45
There is a 500 error because your rule causes an infinite loop:

1. Rewrite /internet-miku-yoyo.html to /doc/int_miku/internet-miku-yoyo.html
2. Rewrite /doc/int_miku/internet-miku-yoyo.html to the same thing (and it keeps doing this forever).

The easy way to fix the problem is to rename your directory and files to not use the word "miku" (ie. use /doc/int/internet--yoyo.html).

The other way to do it would be to change your RewriteRule to:
RewriteRule ^([^/]+)miku([^/]+)\.html$ doc/int_miku/$1miku$2.html [L]