i want some one tell me about Webmail script because i want it to install on the server to make users enter to thier mails i want to know this script or download it please help me
i download it and setup on server but give me this ERROR: Config file "config/config.php" not found. You need to configure SquirrelMail before you can use it.
Check the link in the include or require which ever they used. There may be a ../ in there which could throw it off if you are not using the script on the root domain. Common mistake people make, and I call bad programming as you should work out the path in the script to prevent users from getting problems like that.
it gives me this error on config file Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /config/config.php on line 3147 Parse error: syntax error, unexpected T_STRING in /config/config.php on line 3147
And what is line 3147? Can you post the code here please? Dont just post that line, post the ones around it aswell.
3142 sub save_data { 3143 $tab = " "; 3144 if ( open( CF, ">config.php" ) ) { 3145 print CF "<?php\n?>"; 3146 print CF "\n"; 3147 3148 print CF "/**\n"; 3149 print CF " * SquirrelMail Configuration File\n"; print CF " * Created using the configure script, conf.pl\n"; print CF " */\n"; print CF "\n"; print CF "global \$version;\n"; if ($print_config_version) { print CF "\$config_version = '$print_config_version';\n"; }
What is the CF deinfed as? Add in the script echo CR; exit(0); and let me know what the value is. Place that just above the error line.
Look this error, Parse error: syntax error, unexpected T_STRING in /config/config.php on line 3147 This is stating that a string has been called when something has not been closed off. You need to let me know what this CR definition is. Most likely error is that there is a ; missing at the end of a command. Or it is the way the config is being dynamically created.
i want to try other source of webmail but if you try a one working give me the link because i donot know if this source is good or not sunnyverma1984 give me this source but i feel it isnot work
What do you want the script to do? You want a complete web mail system with inbox, outbox etc etc? Or just something where people can send mails to you on your site, and you can send mails from?
Is that ?> perhaps your problem? I've had problems with those in the past, normally I'd do something like echo '?' . '>'; because otherwise it sometimes thinks it's the end of my PHP code.