iDEV Forums

Please login or register.

Login with username, password and session length
Advanced search  

News:

IDEVSPOT COMMUNITY FORUMS. -----( ( ( NOT FOR OFFICIAL TECH SUPPORT ) ) )-----

Author Topic: I found two bugs / faults in 2.05  (Read 3614 times)

0 Members and 1 Guest are viewing this topic.

SachenPaul3

  • Newbie
  • *
  • Posts: 4
    • View Profile
I found two bugs / faults in 2.05
« on: February 18, 2009, 04:13:10 AM »
1. On the logout- page (http://www.idevspot.com/demo/textads_2/library/cp_logout.php) four wrong corner picture extensions. Example:
 http://www.idevspot.com/demo/textads_2/images/bx_1.png need to replaced to http://www.idevspot.com/demo/textads_2/images/bx_1.gif

Relief: Can be fixed manually in cp_logout.php

2. In settings (http://www.idevspot.com/demo/textads_2/admin/index.php?page=settings) the last two forms (text areas) bit crazy. Meaning if I write something in the second last one (Email Template : Subscription Cancellation) and go to save it wont safe the input. If I go to the last one (Email Template : Subscription End of Term) and write something it will be saved in this area and in the Email Template : Subscription Cancellation text area as well.

Relief: ???

Logged

SachenPaul3

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: I found two bugs / faults in 2.05
« Reply #1 on: February 18, 2009, 05:06:20 AM »
Ha! Found a third one...

3. If you look in sales history (http://www.idevspot.com/demo/textads_2/admin/index.php?page=sales_history) on the bottom you will find a link called "Listing ( #3".

If you click that (http://www.idevspot.com/demo/textads_2/index.php?page=detail&get_id=3) one u get a lovely error message: 

Quote
Warning: main(/home/idevcom/public_html/demo/textads_2/detail.php) [function.main]: failed to open stream: No such file or directory in /home/idevcom/public_html/demo/textads_2/index.php on line 59

Warning: main(/home/idevcom/public_html/demo/textads_2/detail.php) [function.main]: failed to open stream: No such file or directory in /home/idevcom/public_html/demo/textads_2/index.php on line 59

Warning: main() [function.include]: Failed opening '/home/idevcom/public_html/demo/textads_2/detail.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/idevcom/public_html/demo/textads_2/index.php on line 59

The problem is a "detail.php" doesn't exist at all in the script package I received. Can somebody explain what this link does normally?
Logged

arron

  • iDevSpot
  • Administrator
  • Hero Member
  • *****
  • Gender: Male
  • Posts: 1202
    • View Profile
    • WWW
Re: I found two bugs / faults in 2.05
« Reply #2 on: February 19, 2009, 10:00:52 PM »
Thanks for reporting these, they will be patched soon.
Logged

Join our Facebook Fan Page to receive special offers & update information : http://www.facebook.com/pages/iDevSpot/157097554841

SachenPaul3

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: I found two bugs / faults in 2.05
« Reply #3 on: February 23, 2009, 03:44:20 PM »
Thanks.

In this case you write everyone a mail that we can download the fixed package or how it works?
Logged

SachenPaul3

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: I found two bugs / faults in 2.05
« Reply #4 on: March 14, 2009, 05:52:49 PM »
Hello? Why I don't get a answer of my question?

And anyway not all problems fixed with the new 2.06, how come?
Logged

saka

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: I found two bugs / faults in 2.05
« Reply #5 on: February 13, 2010, 11:39:14 PM »
2. In settings (http://www.idevspot.com/demo/textads_2/admin/index.php?page=settings) the last two forms (text areas) bit crazy. Meaning if I write something in the second last one (Email Template : Subscription Cancellation) and go to save it wont safe the input. If I go to the last one (Email Template : Subscription End of Term) and write something it will be saved in this area and in the Email Template : Subscription Cancellation text area as well.

Relief: ???
I just buy 2.0.8 and still same errors. To fix this,
Open admin/settings.php
Find
Code: [Select]
    <tr>
      <td class="tdmenu" width="50%">Email Template : Subscription Cancellation</td>
      <td class="tdmenu" width="50%">
        <textarea name="MESSAGECANCEL" cols="50" rows="5"><?php echo $row[MESSAGEEOT]; ?></textarea>
      </td>
    </tr>

Replace with
Code: [Select]
    <tr>
      <td class="tdmenu" width="50%">Email Template : Subscription Cancellation</td>
      <td class="tdmenu" width="50%">
        <textarea name="MESSAGECANCEL" cols="50" rows="5"><?php echo $row[MESSAGECANCEL]; ?></textarea>
      </td>
    </tr>
« Last Edit: February 13, 2010, 11:50:12 PM by saka »
Logged