 | Re: [Solved] How do i do this... |  |
Posted: 04/01/2007 7:49 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 6:41 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
The logos are fine. Thanks.
Just one thing though rd2d2 could you possibly link to http://www.djpassions.com/portal.php or even just http://www.djpassions.com/ for the djpassions.com logo instead rather than linking to a full session which it's showing as at the moment?
| Quote:
|
|
http://www.djpassions.com/portal.php sid=dfb1915ac309360ea5ee7577dd731c84
|
Thanks! |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/01/2007 7:58 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:41 AM
Location: Texas
|

|
|
|
|
 |
OK check it out, how is that?
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/01/2007 8:11 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:41 AM
Location: Texas
|

|
|
|
|
 |
Check again. I put the .com URL on a blue background like the .uk one.
Be sure to Refresh the page to see the changs.
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] How do i do this... |  |
Posted: 04/02/2007 12:19 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:41 PM
Location: St Pete, FL
|

|
|
|
|
 |
| abdulbasit wrote:
|
You know Chris what i did. This was the original one
index.php = $page_title = $lang['Index'];
And i did this
index.php = $page_title = $lang[''];
You try this, hope it works with you
|
This really isn't the right way to handle this. What you did was remove the name of a variable from the lang array. You would typically leave the array alone and edit the Text assignment in your lang_main.php file instead. What you have above is a syntax error that might come back to haunt you some day...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] How do i do this... |  |
Posted: 04/02/2007 4:03 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 9:41 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
| Ohhh!! So what should i do. Can you give me the right code so that i may replace it with the current one |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/02/2007 4:44 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:41 PM
Location: St Pete, FL
|

|
|
|
|
 |
In your index.php, you should change this code back to this:
| Code:
|
|
$page_title = $lang['Index'];
|
Then in your lang_main.php file, you can make this change:
OPEN
lang_main.php (in all your lang_xxx folders)
FIND
| Code:
|
|
$lang['Index'] = 'Index';
|
REPLACE WITH
| Code:
|
|
$lang['Index'] = '';
|
Save and upload back to all of your language folders. Be sure to create good backups before overwritng any files that you are manually modifying...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] How do i do this... |  |
Posted: 04/02/2007 4:47 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 9:41 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
I didn't change for index.php earlier. I changed for lang_main.php only and I just check again and all is same what you said now
Thanks brother  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/02/2007 4:49 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 1:41 PM
Location: St Pete, FL
|

|
|
|
|
 |
Good deal. I would hate for you to battle a strange error down the road because of that syntax error. I'm glad it's all corrected now...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/02/2007 7:53 AM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 6:41 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
| rb2d2 wrote:
|
OK check it out, how is that?
|
laughing @ binky
cheeky
cheers though much better. thanks.  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: How do i do this... |  |
Posted: 04/02/2007 1:37 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:41 AM
Location: Texas
|

|
|
|
|
 |
You're welcome!
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|