Icy Phoenix

     
 

I Want To Change The Terms Of Conditions, May I Use HTML In This File?

I Want To Change The Terms Of Conditions, May I Use HTML In This File?

Article
Reply with quote    Download Post  
Post I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
I have some rules in my previous forum, and I'd like to add them in this forum.

But the rules are in HTML, could I use HTML in the lang_main.php file?

Spoiler: [ Show ]


My question is because a while ago I changed some text in this file, just a few changes:

From:
Quote:
'Agree_under_13' => 'Estoy de acuerdo con estos términos y condiciones y tengo menos de 13 años de edad',
    'Agree_over_13' => 'Estoy de acuerdo con estos términos y condiciones y tengo más de o exactamente 13 años de edad',

To:
Quote:
'Agree_under_13' => 'Estoy de acuerdo con estos términos y condiciones
    'Agree_over_13' => 'Estoy de acuerdo con estos términos y condiciones',


And from:
Quote:
// These replace the %s in the above strings
    'Auth_Anonymous_Users' => '<b>Usuarios invitados</b>',
    'Auth_Registered_Users' => '<b>Usuarios registrados</b>',
    'Auth_Self_Users' => '<b>Usuarios específicos</b>',
    'Auth_Users_granted_access' => '<b>Usuarios con permisos especiales</b>',
    'Auth_Moderators' => '<b>Moderadores</b>',
    'Auth_Administrators' => '<b>Administradores</b>',

To:
Quote:
// These replace the %s in the above strings
    'Auth_Anonymous_Users' => '<b>Usuarios invitados</b>',
    'Auth_Registered_Users' => '<b>Usuarios registrados</b>',
    'Auth_Self_Users' => '<b>Usuarios específicos</b>',
    'Auth_Users_granted_access' => '<b>Usuarios con permisos </b>',
    'Auth_Moderators' => '<b>Moderadores</b>',
    'Auth_Administrators' => '<b>Administradores</b>',


And inmediately my forum shows this message at the top:
4645387004

I had to reset the changes and upload again this file... Maybe I don't know how to use FTP in the correct way. Or maybe I have to change this file from ACP... I don't know  

My forum:
Spoiler: [ Show ]




 
Cristianita - View user's profile Send private message  
Cristianita [ Fri 15 Sep, 2017 20:26 ]
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us


I Want To Change The Terms Of Conditions, May I Use HTML In This File?

Comments
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Hi;

It seems you added a blank line before "<?php" at the beginning of the file, and that's where the error stems from.



 
Informpro - View user's profile Send private message  
Informpro [ Sun 17 Sep, 2017 19:15 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Informpro wrote: [View Post]
Hi;

It seems you added a blank line before "<?php" at the beginning of the file, and that's where the error stems from.
Really? I didn't write anything in the file, just in those areas...

But I have to wait because I am moving my forum of hosting...



 
Cristianita - View user's profile Send private message  
Cristianita [ Sun 17 Sep, 2017 23:11 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
What program did you use to edit the file?



 
Informpro - View user's profile Send private message  
Informpro [ Tue 19 Sep, 2017 10:48 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Informpro wrote: [View Post]
What program did you use to edit the file?
I'll use some online program to edit HTML. I have Dreamweaver in my laptop, but it is sick   I'm using my tablet  



 
Cristianita - View user's profile Send private message  
Cristianita [ Tue 19 Sep, 2017 21:53 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
It is possible the program added a newline at the beginning of the file.
Or it is possible it saved it with a "marker" (we call it "BOM" in programming), which is invisible but still present.

if you can change encoding, you need to pick "UTF8 without BOM".



 
Informpro - View user's profile Send private message  
Informpro [ Wed 20 Sep, 2017 14:30 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Informpro wrote: [View Post]
It is possible the program added a newline at the beginning of the file.
Or it is possible it saved it with a "marker" (we call it "BOM" in programming), which is invisible but still present.

if you can change encoding, you need to pick "UTF8 without BOM".
Well, I didn't understand anything that you've said   So sorry! My English is really bad, and don't understand technical words or something like that  



 
Cristianita - View user's profile Send private message  
Cristianita [ Thu 21 Sep, 2017 00:23 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Basically: Try to use a different program to edit language files.



 
Informpro - View user's profile Send private message  
Informpro [ Thu 21 Sep, 2017 20:47 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
Informpro wrote: [View Post]
Basically: Try to use a different program to edit language files.
You mean it will be better if I use different program than Dreamweaver, is it correct?



 
Cristianita - View user's profile Send private message  
Cristianita [ Wed 27 Sep, 2017 20:10 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
I don't know if Dreamweaver lets you edit PHP files correctly.

But do not use word / wordpad / program that have formatting. That breaks PHP.



 
Informpro - View user's profile Send private message  
Informpro [ Thu 28 Sep, 2017 15:41 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
I use Notepad++ and Dreamweaver both. It happens so rarely to me (white space) that when it does happen, it takes me by surprise.

And I agree, that is a white space add before the opening php tag or after the closing tag.



 
MWE_001 - View user's profile Send private message  
MWE_001 [ Thu 05 Oct, 2017 11:45 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
I've noticed that there are some blocks of the rules at ACP, right? Maybe I could make some changes through this area, not in the PHP files, what do you think?



 
Cristianita - View user's profile Send private message  
Cristianita [ Thu 05 Oct, 2017 20:51 ]
Reply with quote    Download Post  
Post Re: I Want To Change The Terms Of Conditions, May I Use HTML In This File? 
 
I can try that too and see what happens. I have a local host server setup with like 5 IP installs on it. If I tear one up by trying something it is no big loss.

I'm adding this to my to do list today.



 
MWE_001 - View user's profile Send private message  
MWE_001 [ Thu 05 Oct, 2017 22:48 ]
Display posts from previous:    

HideWas this topic useful?

Post new topic  Reply to topic  Page 1 of 1
 
 




 


 

  cron