MLM everything works except registration forms

stanbusk

Administrator
Staff member
Can you tell me what doesn't work? I speak English but also Spanish and French so go ahead in french if you prefer.
 

booster

New Member
Bonjour merci de votre retour de reponse
ce qui ne marche pas son les formulaires pour les inscriptions

quelle sont les modifications a faire ? impossible enregister un contact via les formulaires en inscription sur la base de donnée
voir les liens

http://email.jingle-djs.com/lm/lm/html/upload_list.php
http://email.jingle-djs.com/lm/lm/html/ ... _fixed.php
http://email.jingle-djs.com/lm/lm/html/ ... ection.php
http://email.jingle-djs.com/lm/lm/html/ ... ltiple.php
http://email.jingle-djs.com/lm/lm/html/ ... single.php
http://email.jingle-djs.com/lm/lm/html/ ... ltiple.php

merci de votre aide
Fabrice
 

stanbusk

Administrator
Staff member
I believe I have responde to that several times so far, it is because your PHP interpreter has trouble getting info from the server to construct the URL to call. Look for the following line:
Code:
$script_name = $script_path[ count( $script_path ) - 1 ];
replace it with this:
Code:
$script_name = "http://email.jingle-djs.com/lm/lm/html/subscribe_single_fixed.php";
This is for subscribe_single_fixed.php, for the other files update the end of the URL to call the right file. The file calls itself.
 
Top