Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43295
Total Topics: 7523
Most Online Today: 344
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 202
Total: 202

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Darkshadow

Pages: 1 2 [3] 4
31
Bugs / Re: Categorie Image - no upload anymore
« on: July 26, 2009, 09:53:33 am »
Stupid error from me... Sorry, you are right, since i moved to a new root server, some dirs are not write enabled...

Solved!

Darkshadow


32
Support / Re: No Lightbox function
« on: July 26, 2009, 09:12:11 am »
@Hacks:Thanks

Can you also confirm the not shown description in this screen ?

@treasurenet:Thanks

Darkshadow


33
Support / Re: No Lightbox function
« on: July 26, 2009, 08:58:15 am »
ok, i fixed this issue, the javascripts for the right click mod now apear inside the header and nothing else is injected before doctype...

But the download pro issue is not fixed with this...

Darkshadow


34
Support / Re: No Lightbox function
« on: July 26, 2009, 06:09:42 am »
hmmm...

the doctype is inserted, look at my index.template attached...???

The errors come from the huge mods i implemented, (i will try to fix these errors in the feature to be validated, but first all functions have to be implemented, there are coming so much updates and new functions so i have no time to implement them all in the proper way it should be...) but it seems to me thaht is not the problem for the behavior of the download pro system.After a quick look,  I dont find any code in the download system for use of lightbox...

By the way, if you found some strange error in the index template, please let my know, so i can fix it...

Thanks for your effort...

The right click mod works without errors for me... i looked to the original install script of the right click mod and i noticed the programmer of this mod will not insert his javascript in the header area...

Darkshadow



35
Support / Re: No Lightbox function
« on: July 26, 2009, 04:10:12 am »
Thank for fast reply, but

i have not this probs in the gallery, this issue is in the downloads pro mod...

Darkshadow

36
Support / No Lightbox function
« on: July 26, 2009, 04:03:40 am »
If you click on the thumbnail picture of a download, a new site will be loaded with the fullsize image and the description, now:

1. the description will not be shown anymore
2. if you click on the image, a new white site with only the fullsize image in the top left corner will be shown


example 1: http://www.dark-mysterious-worlds.com/Deutsch/German_Forum/index.php?action=downloads;sa=view;id=22

As you can see... Description is shown, now click on the thumbnail

example 2: http://www.dark-mysterious-worlds.com/Deutsch/German_Forum/index.php?action=downloads;sa=viewpic&id=16

As you can see... Description is gone, now click on the thumbnail

result: ugly page will appear, my suggestion: use lightbox function

Sorry for posting in wron board, this should be in bugs

Darkshadow

37
Bugs / Categorie Image - no upload anymore
« on: July 26, 2009, 03:39:18 am »
I use version 1.2.25, now i noticed the following: new categories will be created, categorieimage numbers will be added to the database (e.g. 41.gif) but will not be uploaded to the classifieds/catimgs/ folder, if i do upload my catimage manuel and rename it to its autoincrement value, everthing works.

Please confirm

Darkshadow

38
Feature Requests / Re: Top ads in infocenter
« on: June 07, 2009, 12:20:46 pm »
That will be very kind from you, waiting for this...

Darkshadow


39
Feature Requests / Top ads in infocenter
« on: June 06, 2009, 04:17:16 am »
Display the top ads inside the infocenter under users onlinestats, look the manipulated picture please...


ok, i know it can't implemented dircet into classifieds because you have to edit the boardindex.php,  boardindex.template.php and the modsettings.php and so it will break your standalone moduled install system for classifieds (many trobles will occur if your customers will have different mods installed...).

But  a Mod todo so will solve this problem and is very usefull...


Darkshadow


40
Bugs / Re: No E-Mail for Seller...
« on: June 04, 2009, 01:54:58 pm »
Ok, now it works.

Thanks...



Darkshadow

41
Bugs / Re: No E-Mail for Seller...
« on: June 02, 2009, 08:12:08 am »
In "function AcceptBidByID($id, $autoAccept = false)", there is a bug...

Fatal error: Function name must be a string /Sources/classifieds.php on line 6963

the error occurs if classifieds try to send the new mail to seller


Status:
-----------

+Email now sent to the seller if the bid is auto accepted                       <--------------- Not working
!Fix display of private bids to the listing owner on the view bids page      <--------------- i currently check this
!Do not auto accept bid if reserve price is greater than the bid amount   <--------------- i currently check this


Status 2:
-------------

+Email now sent to the seller if the bid is auto accepted                       <--------------- working only partly with a little fix
!Fix display of private bids to the listing owner on the view bids page      <--------------- working
!Do not auto accept bid if reserve price is greater than the bid amount   <--------------- will check this

Little Fix
------------

Original Code: $pm_title = $smcFunc['db_escape_string']($row['title'] . $txt['class_text_listing_completed']);

Modified Code: $pm_title = $row['title'] . $txt['class_text_listing_completed'];

But the link created inside the mail (to the buyers profile) will not work... builds an wrong url...


Status 3:
-------------

+Email now sent to the seller if the bid is auto accepted                       <--------------- seems to working with this two little fixes
!Fix display of private bids to the listing owner on the view bids page      <--------------- working
!Do not auto accept bid if reserve price is greater than the bid amount   <--------------- will check this

Little Fix 1
--------------

Original Code: $pm_title = $smcFunc['db_escape_string']($row['title'] . $txt['class_text_listing_completed']);

Modified Code: $pm_title = $row['title'] . $txt['class_text_listing_completed'];


Little Fix 2
--------------

Original Code:

Code: [Select]
$accepted_body .= "[url=' . $scripturl . '?action=profile;u=" . $row['BIDMEMBER'] . "]" . $row['realName']. "[/url] " . $txt['class_text_listing_completed2']  . $row['amount'] ;
Modified Code:
Code: [Select]
$accepted_body .= "[url=" . $scripturl . '?action=profile;u=' . $row['BIDMEMBER'] . "]" . $row['realName']. "[/url] " . $txt['class_text_listing_completed2']  . $row['amount']. $txt['class_text_listing_completed3'] ;
I added an extra string for some texts like the "EUR" sign... ($txt['class_text_listing_completed3'] ) the german sentence are more complicated and need more customizable strings...


Thanks for your fast reply this time...

Maybe you implement my color change code and mail (if bid was to low (reserve price not met)) to last bid member if auction was ended, in your official update ?

Darkshadow


42
Bugs / No E-Mail for Seller...
« on: June 01, 2009, 01:56:24 am »
If the auto accept with auto delete option is set, the seller will not receive a final e-mail with the info who buyed his ad, only a message that a bid was made.

It is verry helping when a final mail will send with info which member and what price are finaly happend to the ad.

Because it is impossible to list the ad in the bid history since it is auto deleted and the seller have no list manage rights... He never can see this infos anymore...

It is not a good workflow if he has to check all mails or pms to check who have won the auction. When he have multiple ads, its really frustrating to do so...

Its not a bug, but a missing funktion...

I have implemented a mail send for the buyer, but i cant insert a mail for the seller, please lock my attached classified.php file (funktion CheckForExpiredListings) i added a else to do so...

I also have implemented some improvements:

No autoaccept occurs if reserve price not met, send the buyer a mail -> bid to low
Not allowed the option to add more days anymore,  if a bid is made for that listing
Inserted a back to listing link in option section
Listing is green color if more than 24 h
Listing is yellow color if less 24 h but more than 5 min
Listing is red color if less 5 min


i will be really happy if you can it insert in the official updates, so i can sure everything is fine...


Annother big error is following:

If option private bid is possible for a category, it is unable for the seller to see who has made a bid for his listing, if the buyer used private bid option, so members can do joke bids and the seller have no chance to get this members.
It is a must option for the seller to see what members have placed a bid, all time...
If private bid is used, only other members dont see the buyer...

The seller cant contact the buyer because its unknown ???????



Darkshadow

43
Bugs / Re: Messagebody not send in buy it now option
« on: June 01, 2009, 01:49:38 am »
It works now...

Thanks

44
Support / Re: Listing Credits
« on: June 01, 2009, 01:49:18 am »
It works now...

Thanks

45
Bugs / Re: Multiple Qty with shipping
« on: May 17, 2009, 02:51:46 am »
We currently have shipping conditions which allows you to set the total shipping based on the order total range.

But this wont work if the buyer have bought a item witch only change the membergroup, it is neccessary that no shipping cost will added when buying that kind of items, because no need to physicale ship this products???

An option in the product definations like "Apply Shipping rule ? yes / no" can solve this problem...

Darkshadow

Pages: 1 2 [3] 4

+- Recent Topics

Please Help! by SMFHacks
April 17, 2024, 08:04:55 am

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal