Search found 98 matches

by bitfreak
Sat Mar 19, 2016 6:59 am
Forum: Technical Support
Topic: Status: require_once(Mail.php) [solved]
Replies: 15
Views: 43060

Re: Status: require_once(Mail.php)

Well at least one person has lost more than that due to this same issue. I thought I had mostly solved it because I added javascript which should select the entire key when you click on the text box, but it looks like that didn't work for you. I will add some more warnings to tell people to send a s...
by bitfreak
Sat Mar 19, 2016 6:39 am
Forum: Technical Support
Topic: Status: require_once(Mail.php) [solved]
Replies: 15
Views: 43060

Re: Status: require_once(Mail.php)

Unfortunately if you don't have the correct RSA key then there is no way to decrypt the bitcoin private key. You can generate a new RSA keypair from the settings area so it works correctly in the future.
by bitfreak
Sat Mar 19, 2016 6:16 am
Forum: Technical Support
Topic: Status: require_once(Mail.php) [solved]
Replies: 15
Views: 43060

Re: Status: require_once(Mail.php)

Answer is in the FAQ: My private keys wont decrypt! If you get an *** Invalid Ciphertext *** error this probably means you didn't copy one or both of the RSA keys properly. Some web browsers have a weird quirk when double clicking a text box to highlight the text, in which they fail to select the wh...
by bitfreak
Sat Mar 19, 2016 5:52 am
Forum: Technical Support
Topic: Status: require_once(Mail.php) [solved]
Replies: 15
Views: 43060

Re: Status: require_once(Mail.php)

I just realized I may have enabled SMTP by default, which I didn't mean to do. I will fix that in the next release.
by bitfreak
Sat Mar 19, 2016 5:48 am
Forum: Technical Support
Topic: Cron error
Replies: 1
Views: 9227

Re: Cron error

What exactly do you mean by "on cron job email"? If you set the cron job up manually via command line then the error may have something to do with the user executing the command. crontab -u www-data -e should allow you to set up a cron job for the apache user.
by bitfreak
Sat Mar 19, 2016 5:26 am
Forum: Technical Support
Topic: Cron error [solved]
Replies: 15
Views: 46995

Re: Cron error [solved]

@johnny508: take a look at the /cron/tick_update.php file, the data returned is saved to $json_result and then a quick check is done to make sure it returned valid data.
by bitfreak
Sat Mar 19, 2016 5:18 am
Forum: Technical Support
Topic: Status: require_once(Mail.php) [solved]
Replies: 15
Views: 43060

Re: Status: require_once(Mail.php)

If you're trying to use SMTP for emails, then you need to make sure that PEAR and the PEAR::Mail package are both installed, otherwise the Mail.php file will not be found and you'll get errors when ever BitShop tries to send an email. If you're sure they are both installed and you still have the sam...
by bitfreak
Thu Jan 28, 2016 12:31 pm
Forum: Technical Support
Topic: Cron error [solved]
Replies: 15
Views: 46995

Re: Cron error

That error probably means you're running on a server without a host name. Replace the $_SERVER['HTTP_HOST'] variable with the server IP and it should work. And I think the -q parameter means quiet mode, should stop the email notifications or something like that.
by bitfreak
Sun Jan 03, 2016 9:01 am
Forum: Announcements
Topic: Moved to a new server
Replies: 0
Views: 24403

Moved to a new server

Just want to let you guys know I have moved bitfreak.info over to a new server. Hopefully it runs a bit smoother but if you notice any problems that weren't there before let me know. In case you're wondering our new web host is hosterbox.com, a Canadian based company. They are pretty cool because th...
by bitfreak
Sun Jan 03, 2016 8:44 am
Forum: Technical Support
Topic: New Products section [solved]
Replies: 4
Views: 15701

Re: New Products section

I still think the product creation times aren't being saved into the database properly. Run the following queries on your BitShop database to make sure the necessary triggers are created: DROP TRIGGER IF EXISTS Products_OnInsert; CREATE TRIGGER Products_OnInsert BEFORE INSERT ON `Products` FOR EACH ...