Code Monkey home page Code Monkey logo

webid's People

Contributors

bushstar avatar dansanti avatar david62311 avatar festprint avatar iwalpola avatar jnvsor avatar laughingpain avatar lod121 avatar mesweb avatar mrinc avatar nay27uk avatar nozlaf avatar pani100 avatar presh606 avatar renlok avatar robberteggermont avatar scarabmonkey avatar shaman1977 avatar superst avatar telecomgeek avatar timw255 avatar ubidzz avatar webhp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

webid's Issues

email error

16-03-2016, 09:41:37: My NOTICE [1024] ---->PHPMailer error: SMTP connect() failed. on class_email_handler.php line 451

countries.inc.php

The countries.inc.php seems to be missing, effects tables in admin and also dropdown in register.php etc

Reverse Auctions not working

New to WeBid i want to help debug and fix issues.

First thing i recognize is that the reverse auctions are not working.

The price should tick down on basis of fixed or customizable vars.

Can anyone give me a hind where i can start digging for the problem?

Error is relativly clean.

issue with class_db_handle.php

after loading current version from github into existing system site does not load and this error appears in apache log.

PHP Fatal error: Call to a member function query() on null in /includes/class_db_handle.php on line 48

Search function not working

Function of search.php and adsearch.php not working for finding any auction by id auction. If i type 1 and search the results show me two auctions = 1 and 4 id. Search function should be separated for ID and description auction because if You search string "1" then result displays auction ID1 and every auctions with 1 in description or title. Good solution should be to make if statement for string "#{AUCTION_ID}" if somebody wants find auction by ID he should search by add # to number of ID.

Pay Now button not working

I used updated WeBid github files.
I already put paypal address of buyer, seller and admin.

When the buyer clicks the Pay Now button, it does not go to other page, instead, will just proceed to itself as if nothing happens when clicking.
error

Please help.

support for mysql 5.5 ?

I've noticed that you are using

default CURRENT_TIMESTAMP

but mysql 5.5 doesnt support it I believe this is only on 5.6 and above

mysql 5.5 supports timestamp datatypes with the default of CURRENT_TIMESTAMP but not datetime data types with a default of CURRENT_TIMESTAMP

so effectively at the moment this is broken on mysql 5.5 which could be a big issue as 5.5 is pretty much standard

functions_ajax.php checks array for $fileName but writes $final_file_name

I have found a related problem in functions_ajax.php;

My scenario is uploading a 14MB picture to an auction with the name "testimage.JPG". As the image is uploaded and "chunked" out in 1MB chunks, functions_ajax.php was adding each chunk to the $_SESSION['UPLOADED_PICTURES']. So after uploading this image, my auction would show 14 instances of this picture because the filename was written to $_SESSION['UPLOADED_PICTURES'] as each "chunk" was written out. Here is the problem code in functions_ajax.php:

// resize picture
$uploader->resizeThumbnailImage($targetDir . '/' . $fileName, $system->SETTINGS['gallery_max_width_height']);
if (!in_array($fileName, $_SESSION['UPLOADED_PICTURES']))
{
$final_file_name = strtolower($fileName);
array_push($_SESSION['UPLOADED_PICTURES'], $final_file_name);
if (count($_SESSION['UPLOADED_PICTURES']) == 1)
{
$_SESSION['SELL_pict_url_temp'] = $_SESSION['SELL_pict_url'] = $final_file_name;
}
}

The problem is the code looks for $fileName in the array but then writes $final_file_name to the array if $fileName is not found. Obviously if $fileName does not equal $final_file_name this is a problem, and in fact in my case the $fileName ends with JPG and $final_file_name ends with jpg. So after each chunk, $final_file_name is added to the array. Here is the updated fixed code:

// resize picture
$uploader->resizeThumbnailImage($targetDir . '/' . $fileName, $system->SETTINGS['gallery_max_width_height']);
$final_file_name = strtolower($fileName);
if (!in_array($final_file_name, $_SESSION['UPLOADED_PICTURES']))
{
array_push($_SESSION['UPLOADED_PICTURES'], $final_file_name);
if (count($_SESSION['UPLOADED_PICTURES']) == 1)
{
$_SESSION['SELL_pict_url_temp'] = $_SESSION['SELL_pict_url'] = $final_file_name;
}
}

Error keeps appearing in error log

Unknown error type: [4096] Object of class DateTime could not be converted to string on /hermes/bosnaweb07a/b1189/ipg.aucstacom/includes/database/DatabasePDO.php line 79

installer not working

installer fails with a "access denied" which is being generated by class_db_handle.php

Invalid coloring of /yourbids.php

When two users sets same bid value (eg 1100) then given auction isn't yellow on both users yourbids screen.

Only one has green "You are the current highest bidder" message on item page although.

version number is incorrect

from my testing when installing from the git respository the version number is 1.1.0 which is "older" than the 1.1.2p2 which is avaliable via sourceforge

"upgrading" to the github version results in the installation saying that the version is out of date.

the github version should have a larger version number, also the script to upgrade crashes (although actually fixed my login issues, it should be looked at)

Cant use DateInterval due to float

On line 99 of sell.php, we have a problem . DataInterval only allow integers but for the auction duration we use floats to get parts of a day.

This does work, a simple fix is to change this
$start_datetime->add(new DateInterval('P' . $duration . 'D'));

To this
$start_datetime->add(new DateInterval('P' . intval($duration) . 'D'));

Issue with settings -> cust_increment

After installing webid, I have found a persistent issue with settings->cust_increment . Although the dump sql specifies cust_increment INT(1) NOT NULL DEFAULT '2', the value I end up with is 0. This causes further problems in the admin>>SETTINGS >> AUCTION SETTINGS as Allow Custom Increments is neither yes or no (value 1 or 2 in database).
If left with yes or no unselected any saving of other changes cause an error of Undefined index: cust_increment.
There must be a reason why the database setting is not '2' as the initial dump requests it to be.

duplicate code could be optimized

quite a lot of code is duplicated throughout webid
I think it would be good to remove this duplicated code in the interest of making things easier to improve on and develop moving forward
i understand its a big job, ive been on holidays for 2 weeks considering tackling it now but would be interested if others see this as an issue

Recaptcha upgrade

I see the old captcha has been removed. Now when i go into register page etc, i get blank page, until i change the setting in admin from 'image' to either 'none' or 'recaptcha'

So either the image option needs removing or the old captcha needs reinstating, for that selection to work, so we still have 3 options...or another fix :D

unable to buy anything

So i'm running the current source at the moment and I cant buy anything
bidding works, auction ends or is closed (after applying my fix for listing your own auctions)
and the buyer is notified that the auction has ended and they have won the auction but the table listing the winners is never populated

issue with "selling" from My control panel

when accessing the "selling" tab on my control panel and then selecting "active auctions" often the page will load but be empty
clicking between tabs will eventually make it load
not sure as to the reason but I will investigate this in the next few days if no-one else does

luckily it does produce some log data

03-09-2015, 16:42:00: Unknown error type: [8] Undefined index: ca_ord on /var/www/html/WeBid/yourauctions.php line 141
03-09-2015, 16:42:00: Unknown error type: [8] Undefined index: ca_type on /var/www/html/WeBid/yourauctions.php line 141
03-09-2015, 16:42:05: Unknown error type: [8] Undefined index: ca_ord on /var/www/html/WeBid/yourauctions.php line 141
03-09-2015, 16:42:05: Unknown error type: [8] Undefined index: ca_type on /var/www/html/WeBid/yourauctions.php line 141

Can't make new auction

I see error:
Fatal error: Call to undefined function bcsub() in /home/public_html/sell.php on line 565

This version needs major work

This version needs major work, with all the new edits a lot of things has stopped working.
The new genetella admin theme is completely corrupted nothing works whatsoever.
The admin modern and admin classic theme has lots of broken links on sidebar.
This maybe just me but when I try to do a fresh install the installer page throws out a error 500.
When I updated from an old version the main page just shows a blank screen.

Thats all I've managed to get to as I've done a fresh install but the installer isn't working for me.

Error with Password Hash

PHP 7.0.6
Unknown error type: [8192] Methods with the same name as their class will not be constructors in a future version of PHP; PasswordHash has a deprecated constructor on C:\xampp\htdocs\aukcje\includes\packages\PasswordHash.php line 27

payment method not saving when registering

when I fill in the registration form and enter my PayPal details, it doesn't save them so I have to enter them again under my account. Also when I select this payment type as required, on my register page it says PayPal addresschecked, how do I get rid of the checked bit

Converting gateways nad payment methods into single table

new table: payment_options
Todo:

  1. convert all references of gateways table to payment_options table
  2. convert all references of payment_options setting to payment_options table
  3. payment_options setting where stored in auction table as a number, add script to installed to convert this to string matching payment_options table

Error with registration

PHP 7.0.8
03-07-2016, 07:53:04: Unknown error type: [8] Array to string conversion on C:\xampp\htdocs\aukcje\register.php line 431
03-07-2016, 07:53:05: Unknown error type: [2] Illegal string offset 'country' on C:\xampp\htdocs\aukcje\register.php line 433
03-07-2016, 07:53:05: Unknown error type: [2] Illegal string offset 'country' on C:\xampp\htdocs\aukcje\register.php line 437
03-07-2016, 07:53:05: Unknown error type: [2] Illegal string offset 'country' on C:\xampp\htdocs\aukcje\register.php line 441

Cant create auction

[Wed Mar 08 12:26:14.377234 2017] [:error] [pid 11509] [client 10.1.10.13:16740] PHP Fatal error: Uncaught exception 'Exception' with message 'DateInterval::__construct(): Unknown or bad format (P1.00D)' in /var/www/webid/sell.php:99\nStack trace:\n#0 /var/www/webid/sell.php(99): DateInterval->__construct('P1.00D')\n#1 {main}\n thrown in /var/www/webid/sell.php on line 99, referer: https://sunibid.sunitafe.edu.au/sell.php

Trying to sell item.
End Date is 1 day, custom start date is turned off.
Dateformat is DD/MM/YYYY
We are version 1.2.2

timezones = :(

I've made a fix for the registration page to include the default timezone but it made me realise how timezones are being handled by WeBid

I think this needs to be completely re-written

WeBid currently cannot support timezones which are + or - .5 of a hour, for example GMT + 9.5 (South Australia and Northern Territory Australia)

currently no support of daylight savings time which means GMT+10 is broken for eastern states in Australia where three states and one territory have DST and one state does not have DST

currently no ability to change timezone definition from the admin interface

As I am using WeBid for something at work and I don't really need this functionality I am reluctant to say I will do the work but hopefully someone else will do it, if not I will come back to it in a few months when I am not so busy

Images doesnt save after upload

Is there someone that can PLEASE help me?! I have been trying to fix this issue for 2 days. Every time I upload an image in photo gallery, it simply doesn't save & also doesn't display in the auction images. I joined www.webidsupport.com but I am unable to even ask a question on the site.

Responsive menu not expanding

I need some help please. I added SSL to my site now the responsive menu on my website doesnt expand. What could be the problem?

Register not working

Package called reCaptcha not working properly. After enter my keys of recaptcha to settings of WebId I can't register any users. Recaptcha was work only few times at the beginning and next stop work. I check reason and I found this code makes this issue

 if ($system->SETTINGS['spam_register'] == 2 && !$resp) {
            $ERR = $MSG['752'];

bug with fees?

spent the whole day fixing issues but have encountered one that I am not inclined to touch as I am not using fees on my site

when accessing the Sell pages these errors are logged

03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: bolditem_fee on /var/www/html/WeBid/includes/functions_sell.php line 449
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: bolditem_fee on /var/www/html/WeBid/includes/functions_sell.php line 451
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: hlitem_fee on /var/www/html/WeBid/includes/functions_sell.php line 454
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: hlitem_fee on /var/www/html/WeBid/includes/functions_sell.php line 456
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: subtitle_fee on /var/www/html/WeBid/includes/functions_sell.php line 459
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: subtitle_fee on /var/www/html/WeBid/includes/functions_sell.php line 461
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: picture_fee on /var/www/html/WeBid/includes/functions_sell.php line 479
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: picture_fee on /var/www/html/WeBid/includes/functions_sell.php line 481
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: excat_fee on /var/www/html/WeBid/includes/functions_sell.php line 484
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: excat_fee on /var/www/html/WeBid/includes/functions_sell.php line 486
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: bolditem_fee on /var/www/html/WeBid/includes/functions_sell.php line 449
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: bolditem_fee on /var/www/html/WeBid/includes/functions_sell.php line 451
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: hlitem_fee on /var/www/html/WeBid/includes/functions_sell.php line 454
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: hlitem_fee on /var/www/html/WeBid/includes/functions_sell.php line 456
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: subtitle_fee on /var/www/html/WeBid/includes/functions_sell.php line 459
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: subtitle_fee on /var/www/html/WeBid/includes/functions_sell.php line 461
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: picture_fee on /var/www/html/WeBid/includes/functions_sell.php line 479
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: picture_fee on /var/www/html/WeBid/includes/functions_sell.php line 481
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: excat_fee on /var/www/html/WeBid/includes/functions_sell.php line 484
03-09-2015, 16:42:13: Unknown error type: [8] Undefined index: excat_fee on /var/www/html/WeBid/includes/functions_sell.php line 486

Forum is out of memorry

Hi renlok the forum is out of free space

Warning: file_put_contents() [function.file-put-contents]: Only 0 of 34063 bytes written, possibly out of free disk space in ..../dbtech/vboptimise_pro/hooks/cache_templates_process.php on line 67

Error with PDO

PHP 7.0.8
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\aukcje\includes\database\DatabasePDO.php on line 82

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.