Show Posts
|
|
Pages: [1] 2 3 ... 34
|
|
2
|
Development / Help and Support / Re: MH2 Treasury minimum donation value.
|
on: June 19, 2010, 09:49:06 AM
|
|
Sounds like some good ideas, it takes the component to a different level than my initial intention.
The down side is that it will take some time to be able to get back into the development of this and I am going to fully rewrite it.
Thank you for your ideas, they will come into play when I plan this one!
|
|
|
|
|
4
|
Development / Help and Support / Re: MH2 Treasury translation
|
on: May 15, 2010, 03:35:30 PM
|
Hi, I want to translate MH2 Treasury into German, can you please tell me how can I do this, because there is no language file in the zip.file. I don't want change all files from the modul by hand.
Text configuration in the backend of the component
|
|
|
|
|
10
|
Development / Help and Support / Re: Treasury database or internal error
|
on: February 08, 2010, 11:03:07 AM
|
|
Change the components/com_mh2treasury/ipn directory permissions to: 755 Change all the file permissions in that directory to: 644 (or 755) Also, make sure that the file (MH2ipnppd.php) exists in that directory.
The change is probably because of a new cPanel restriction set in place that does not allow for directories or files to be set to 777
If that does not work, please PM me contact information and best times to get ahold of you so that we can get this resolved.
|
|
|
|
|
12
|
Themes / Themes General / Re: Need help with modfying theme
|
on: January 11, 2010, 07:25:19 PM
|
|
It's probably the same as the other one that I already did.
I think it is probably time to find a different base template to work with. I just don't have the time to decode/recode the files for you.
My apologies.
|
|
|
|
|
13
|
Themes / Themes General / Re: Need help with modfying theme
|
on: December 28, 2009, 10:20:07 AM
|
|
As stated, you need to even up the TDs. The issue with the file that you sent is that it is a jacked up index. There should be no reason to hide the code in 74 iterations of eval, gzinflate, str_rot13 and base64_decode functions unless there is something to hide. I decrypted it and posted it back up here. Line 84 is the one that you need to get rid of.
|
|
|
|
|
14
|
Themes / Themes General / Re: Need help with modfying theme
|
on: December 27, 2009, 07:39:34 AM
|
Looks like it is in your index.php Hint about using tables: Each row's (tr) data cell (td) count need to match up throughout the table: Good: <table> <tr> <td>...</td> <td>...</td> <td>...</td> </tr> <tr> <td>...</td> <td>...</td> <td>...</td> </tr> </table>
Bad: <table> <tr> <td>...</td> <td>...</td> <td>...</td> </tr> <tr> <td>...</td> <td>...</td> </tr> </table>
|
|
|
|
|
15
|
Themes / Themes General / Re: Need help with modfying theme
|
on: December 26, 2009, 03:39:59 PM
|
If I understand you correctly, you want the site to be a fluid design. If so, then you need to load up your index.php from the template directory and search for the statement: <table id="main" class="minimal" width="809"> Change it to: <table id="main" class="minimal" width="100%">
|
|
|
|
|