Bitcoin Forum
December 13, 2024, 02:36:57 AM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Should a portion of the unclaimed coins be made available for those that missed the swap?
Yes - We have enough to spare, even for late-comers.
No - Sufficient notice and time to complete the swap was given. It wouldn't be fair to those that were punctual.

Pages: « 1 ... 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 [153] 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 ... 207 »
  Print  
Author Topic: [ANN][CFC2]Coffeecoin | This coin is under the RevivalCoinGroup management  (Read 252961 times)
1MCoin
Full Member
***
Offline Offline

Activity: 123
Merit: 100


View Profile
May 18, 2014, 01:53:50 AM
 #3041

i love coffee,
coffee is my second blood
coffee to the moon

Free Distribution 50,000,000 VPNCOIN !!!
Vv8RxzrEWDdhF4mvKCDUdKY9offQtjpR82
dminer69
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
May 18, 2014, 02:08:50 AM
 #3042

voted on mintpal #450


lol who did you voted #450 if i just voted for #556
fritzi
Full Member
***
Offline Offline

Activity: 198
Merit: 100


View Profile
May 18, 2014, 03:02:48 AM
 #3043

voted on mintpal #450


lol who did you voted #450 if i just voted for #556

The guy loves Coffeecoin so much but voted for another coin.  Grin
Watercooler
Sr. Member
****
Offline Offline

Activity: 334
Merit: 250



View Profile
May 18, 2014, 06:12:34 AM
 #3044

Trying to compile the latest wallet under linux. But I just get this:

Code:
src/qt/overviewpage.cpp:16:33: fatal error: QNetworkAccessManager: File or directory not found
 #include <QNetworkAccessManager>
                                 ^
compilation terminated.
make: *** [build/overviewpage.o] Error 1
Any help on this please?

Open the coffeecoin-qt.pro file and remove the first character on the first line where it says: 'QT += core gui network',
this should do the trick

You mean the first line should read "T += core gui network"? That doesn't work either (and also makes no sense imho Wink). But thanks.
Other suggestions?

No before the 'Q' there was a strange a character in my case, after removing this it was OK so the line
should read : QT += core gui network

Ah ok. No, my file was already ok on this point. It seems like the file of a class cannot be found. If I grep over the sources I only find instanciations of the class but never a definition.

This class is part of the Qt libraries ( QtNetwork ), are you building a Qt4 or a Qt5 version? Make sure you have the devel packages of Qt installed
I'm using qmake-qt4.

I also compiled dozens of other wallets which also use "QT += network" in their .pro file. So I doubt I'm missing anything, do I?

A quick grep on other wallets shows no usage of the QNetworkAccessManager class, I had exactly the same problem yesterday and here it was simply solved by
removing the character which was in front of the 'QT += core gui network' line. I also compiled the Qt4 version

Do you have a '/usr/include/QtNetwork' directory?  The QNetworkAccessManager header file should be in there
There's a /usr/include/qt4/QtNetwork directory with the header file in it (qnetworkaccessmanager.h).
So I appended this path to line 5 of the .pro file and now it seems to compile (still running).

Thanks a lot! Smiley


edit: cheered to soon lol. I'll investigate later as I have to leave now.
Code:
build/overviewpage.o: In Funktion `OverviewPage::handleAdvsTimerUpdate()':
overviewpage.cpp:(.text+0x1648): Nicht definierter Verweis auf `QNetworkRequest::QNetworkRequest(QUrl const&)'
overviewpage.cpp:(.text+0x1654): Nicht definierter Verweis auf `QNetworkAccessManager::get(QNetworkRequest const&)'
overviewpage.cpp:(.text+0x165c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()'
overviewpage.cpp:(.text+0x1a5c): Nicht definierter Verweis auf `QNetworkRequest::~QNetworkRequest()'
build/overviewpage.o: In Funktion `OverviewPage::handleLoadAdvsFinished(QNetworkReply*)':
overviewpage.cpp:(.text+0x1d66): Nicht definierter Verweis auf `QNetworkReply::error() const'
build/overviewpage.o: In Funktion `OverviewPage::OverviewPage(QWidget*)':
overviewpage.cpp:(.text+0x2777): Nicht definierter Verweis auf `QNetworkAccessManager::QNetworkAccessManager(QObject*)'
collect2: error: ld returned 1 exit status
make: *** [coffeecoin-qt] Fehler 1

Try this before running make:

qmake "Qt+=network"

That's it! Thank you very much!  Kiss

You're welcome, but it means that there is something wrong with the 'coffeecoin-qt.pro' file, the first line in this file
should take care of enabling the network module of Qt. Most likely the problem is caused by the byte-order mark which
is in front of the 'QT += core gui network' line.


███████████████████████████████████████
███████████████████████████████████████
█████████████████████████████
██████████████████████████
████████████████████████
███████████████████████
█████████████████▐████
███████████████████████
████████████████████████
██████████████████████████
█████████████████████████████
███████████████████████████████████████
███████████████████████████████████████
DECENT
FOUNDATION



██
██
██
██
██
██
██
██
██

██
██
██


[D]ecentralized application
[E]liminated third parties
[C]ontent distribution



██
██
██
██
██
██
██
██
██

██
██
██


[E]ncrypted & secure
[N]o borders
[T]imeless reputation



██
██
██
██
██
██
██
██
██

██
██
██



██
██
██
██
██
██
██
██
██

██
██
██


▓▓▓ BITMIXER.IO ▓▓▓▓▓▓ High Volume Bitcoin MIXER ▓▓▓
wood7
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
May 18, 2014, 06:20:40 AM
 #3045

a good coin,i like,but the price is too low these days
amiryaqot
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
May 18, 2014, 06:24:32 AM
 #3046

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.
it sounds great
BEECoinfan
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
May 18, 2014, 06:25:16 AM
 #3047

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

Fantastic news, Being able to spend our coffee coins for COFFEE!

fedmahnkassad
Hero Member
*****
Offline Offline

Activity: 840
Merit: 500


Twitter: @FedKassad


View Profile
May 18, 2014, 07:01:20 AM
 #3048

Guys, don't get discouraged that Mintpal voting is getting a bit slow and please be persistent. We will get their eventually and when we do the coin will get a lot of value.
lanbo
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
May 18, 2014, 07:07:36 AM
 #3049

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

Fantastic news, Being able to spend our coffee coins for COFFEE!

That's a perfect merchant for CoffeeCoin. We need to find more merchant selling coffeee related products.
lordoliver
Legendary
*
Offline Offline

Activity: 1666
Merit: 1020

expect(brain).toHaveBeenUsed()


View Profile
May 18, 2014, 07:28:33 AM
 #3050

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

no website?
worldhello
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 18, 2014, 07:33:19 AM
 #3051

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

nice!! CFC FTW

the dev is so nice and wonderful.. awesome  and cool man

Get Daily Free SignatureCoins.T8B9oeLHEs2sSaJn4fvG359NEUyi7daAuJ
worldhello
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
May 18, 2014, 07:35:38 AM
 #3052

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

no website?

yeal, we need a official website, and it will attract more people to join the coin...


now the community is much stronger and stronger, we should do more work to promote the coin, now, come on.

Get Daily Free SignatureCoins.T8B9oeLHEs2sSaJn4fvG359NEUyi7daAuJ
luuupooo
Member
**
Offline Offline

Activity: 90
Merit: 10


View Profile
May 18, 2014, 07:50:54 AM
 #3053

Need to talk with Dev.
I can accept CFC as Payment here soon https://bitcointalk.org/index.php?topic=597287
Thanks.

no website?

yeal, we need a official website, and it will attract more people to join the coin...


now the community is much stronger and stronger, we should do more work to promote the coin, now, come on.

i guess that makes sense. the homepage needs a new face
go coffeecoin
lanbo
Full Member
***
Offline Offline

Activity: 203
Merit: 100


View Profile
May 18, 2014, 07:56:30 AM
 #3054

Keep on voting on Mintpal my fellow community members.
marti
Full Member
***
Offline Offline

Activity: 206
Merit: 100


View Profile
May 18, 2014, 08:48:50 AM
 #3055

voted on mintpal #569

www.CoinsSource.com | Your Alternative-Currency Information Source
marti
Full Member
***
Offline Offline

Activity: 206
Merit: 100


View Profile
May 18, 2014, 10:12:53 AM
 #3056

voted on mintpal #574

so basicaly, it's 4 hits by hour  Sad

come on, we must do better

www.CoinsSource.com | Your Alternative-Currency Information Source
amiryaqot
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
May 18, 2014, 10:32:01 AM
 #3057

https://www.mintpal.com/voting
575

show your love to Coffee Kiss
mahuateng
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
May 18, 2014, 10:53:44 AM
 #3058

voted on mintpal #569

well done, bro, the coin needs you and needs what you have done,

what you have done can contirbute the coin to develop so well.,.
mahuateng
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
May 18, 2014, 10:54:51 AM
 #3059

https://www.mintpal.com/voting
575

show your love to Coffee Kiss

I am late to get the coin, I am so sad for missing the nice coin..
marti
Full Member
***
Offline Offline

Activity: 206
Merit: 100


View Profile
May 18, 2014, 10:59:59 AM
 #3060

https://www.mintpal.com/voting
575

show your love to Coffee Kiss

I am late to get the coin, I am so sad for missing the nice coin..

i just can say: put a wallet address in your sig, vote on mintpal and report it here

no guarantees but who know
we need community efforts on mintpal voting

www.CoinsSource.com | Your Alternative-Currency Information Source
Pages: « 1 ... 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 [153] 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 ... 207 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!