![]() |
|
| |||||||
| Notices |
| mySQL & PHP Discussions, information and help with mySQL and PHP. |
![]() |
| | Thread Tools |
|
#1
| |||
| |||
|
Is it possible to change the PHP config core. I have a few things migrated from another server to my vodahost account and now some PHP stuff doesn't work. If it is possible to change settings in the PHP core, please let me know how. Thanks. the setting I need chainging is register_globals to set to On, which is currently Off I see. Thanks |
|
#2
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#4
| ||||
| ||||
|
No, it's on. Get in your CP, then just leave on the address bar the www.70.......:2083/ part (2083 might be different for you) and add after the slash: phpinfo.php press enter, and you will get all the information.: System Linux voda3.vodahost.com 2.4.21-37.0.1.ELsmp #1 SMP Wed Jan 11 18:44:17 EST 2006 i686 Configuration PHP Core Directive Local ValueMaster Value precision 14 14 register_argc_argv On On register_globals On On report_memleaks On On
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#5
| |||
| |||
|
Thanks very much for trying to help but I could get the config to show. putting in phpinfo/php after the address:port/ results in a 'page not found' Anyways, here's my PHP config: http://www.oxidesigns.com/serops06/phpinfo.php |
|
#6
| |||
| |||
|
ok, thx for the correction, now i see it as on, very strange, because in this link it shows as off .. LOL http://www.oxidesigns.com/serops06/phpinfo.php Anyways, I have now worked around it and recoded. Thanks very much for your help, much appreciated. |
|
#8
| ||||
| ||||
|
You must make sure all your scripts are sending mail with smtp authentication.
__________________ VodaHost Your Website People! 1-302-283-3777 North America / International 07092887580 / United Kingdom Military Ranking System Explained Click Here to take the royal VodaHost Tour Click Here for the VodaHost Help Centre & Tutorials Got a question? - Try a forum search! Available at the top of every page! |
|
#10
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#11
| |||
| |||
|
thanks mate... you guys have been great and now just one last thing (hopefully) :D for the SMTP details what do I put in? I'm using PHPMailer class and here what I put in my php. Code: $mail->IsSMTP(); $mail->Host = "mail.oxidesigns.com"; $mail->SMTPAuth = true; $mail->Username = "username+oxidesigns.com"; $mail->Password = "password"; |
|
#12
| ||||
| ||||
|
$mail->IsSMTP(); $mail->Host = "localhost"; $mail->SMTPAuth = true; $mail->Username = "username+oxidesigns.com"; Put your CP username $mail->Password = "password"; Put your CP password [/code] You must have uploaded the class.phpmailer.php and class.smtp.php in your site. Have you configured port 25 in class.smto.php ?
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#14
| |||
| |||
|
currently using this to no avail .. .still no emails going out :( please help if you can. PHP Code: |
|
#15
| ||||
| ||||
|
Have you defined the $addr ?
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#16
| |||
| |||
|
yup, the $addr is a session variable that picks up the 'email' field from the table. I thought it might be the problem but I did and echo $addr; after the mail command and it outputs the correct email address every time. Do you know about PHPMailer and if I needed to confiure anything in the class file? |
|
#17
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#18
| |||
| |||
|
Ah!! Thanks to that now atleast I know the messages are not being sent. here's what I get, any idea what could be causing it? Warning: fsockopen(): unable to connect to localhost:25 in /home/topetiq/public_html/oxidesigns/rops_test/class.smtp.php on line 105 Message was not sent Mailer Error: Language string failed to load: connect_host |
|
#20
| ||||
| ||||
| Quote:
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#21
| |||
| |||
|
some real weird happenings here, and im beginning to be more inclined to think something is acting up server side? Now the error has changed, with no change in code: Mailer Error: Language string failed to load: from_failedserealops@ntlworld.com That's the address I want to show as coming from in my script. Thought how come the error has changed now? |
|
#22
| |||
| |||
| Quote:
|
|
#23
| |||
| |||
|
Sorry navaldesign, I've been busy lately. I just wanted to thank you for you instantaneous support on the situation. Unfortunately I had only found this out in the dying moments of the deadline and it had to be moved to another server. I still appreciate the awesome support I received. Thank you very much!! |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |