Show Posts
|
|
Pages: 1 [2] 3 4 ... 33
|
|
16
|
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.
|
|
|
|
|
18
|
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.
|
|
|
|
|
19
|
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.
|
|
|
|
|
20
|
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>
|
|
|
|
|
21
|
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%">
|
|
|
|
|
22
|
Themes / Themes General / Re: Need help with modfying theme
|
on: December 24, 2009, 08:02:41 AM
|
Not a problem. In your CSS file (bubble/css/template_css.css), there is a #page_bg area (Line 6) that looks like this: #page_bg { height: 100%; background: #999999; padding: 0; margin-bottom: 1px; }
You can do one of two things with that, remove the "background: #999999;" line or change it to "background: #fff;"
|
|
|
|
|
26
|
Development / Help and Support / Re: Treasury not recording transactions
|
on: November 25, 2009, 08:46:31 AM
|
|
Looked at a few things and not positive, but you may want to add an item number for the paypal transaction. When creating the string, paypal may be confused with the missing item number.
If it is, then I can make a modification to the code to force a value there. Please let me know if that works. If not, then please pm me some contact information and we can work it out.
|
|
|
|
|
27
|
Development / Help and Support / Re: Vent hyperlink not working.
|
on: November 03, 2009, 08:14:58 AM
|
|
Issue: Not bringing up the program Solution: It seems the the file association is messed up. Each browser's file associations are somewhere different. I do not have IE8 installed, but I am sure it is in the Internet Options area as the older versions are.
Issue: Not connecting to Vent Solution: It seems that Ventrilo has made some changes that directly affect that function. The program is sending the correct string, but it seems that Ventrilo is ignoring it. I am not sure if this will be corrected in future versions, but they may be better able to answer that.
|
|
|
|
|
28
|
Development / Help and Support / Re: Vent hyperlink not working.
|
on: November 02, 2009, 05:43:58 PM
|
|
First off --- what is the URL? Second, it seems that Firefox is allowing you to associate the link with a program -- which is the correct operation. Once selected, IE may operate as intended. The link requires the operating system to know the association.
What version of IE are you running?
|
|
|
|
|