Pages: 1 [2] 3 4 5 :: one page |
|
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

diabeteman
ICE is Coming to EVE
11
|
Posted - 2012.05.02 01:08:00 -
[31] - Quote
Maratha Secda wrote:Labrena wrote:diabeteman wrote:2.0.4.1 is out, it should solve these two problems  I did the upgrade to 2.0.4.2 and it now works. Only thing i'm having an issue with now, is the cron jobs. Under 1.4.9 it was working fine. Updated it to the new cron url in the instructions, but it does not run. If i goto the url via browser, it runs all of the scheduled tasks though. My cron jobs are not running either, although manually running them via the browser works. :ahhh:
ok there are a lot of problems with this scheduler thing. I may have to tear this down soon(tm) Initiator and CTO of Eve Corp. Management |

Controller Vrelk
New Eden Regimental Navy Rebel Alliance of New Eden
3
|
Posted - 2012.05.02 02:47:00 -
[32] - Quote
Ajurna Jakar wrote:Controller Vrelk wrote:I have 2 questions: First of all, I am using shared web hosting (dreamhost), and have a lot of freedom, so I can install whatever to my home directory, such as the custom install of python I'm using. 1) Can I run this as fastcgi or cgi since I can't add apache mods? 2) http://pastebin.com/LHMpUWdR(i get a "we were ganked" error when pasting here. already put in a bug report for it. you are getting this error because when you compiled python you didnt have libbz2-dev on the system. get this installed and then recompile python and this will solve your issue :) as for your fastcgi issue it seems that django supports this. havent done it myself but the docs are here. https://docs.djangoproject.com/en/1.4/howto/deployment/fastcgi/ Thanks, that helped. Apparently when you compile bzip2 it doesn't automatically compile libbz2.so as well. Actually, now that I looked up django on the dreamhost wiki, looks like I will be running it through passenger. |

Ajurna Jakar
Jian Products Engineering Group Nulli Secunda
8
|
Posted - 2012.05.02 08:01:00 -
[33] - Quote
seems that it doesnt have the project in the path. print out hte python path in the script and see if you can find out if what you need is missing. or if something is wrong. eg. i see in your path its '/home/compuwiz/ecm.redshift-gaming.net/oisecm', but if hte import is saying oisecm.settings then it wont find it becasue it will be looking for '/home/compuwiz/ecm.redshift-gaming.net/oisecm/oisecm/settings' http://eve-corp-management.org/-á |

Controller Vrelk
New Eden Regimental Navy Rebel Alliance of New Eden
3
|
Posted - 2012.05.02 17:53:00 -
[34] - Quote
Ajurna Jakar wrote:seems that it doesnt have the project in the path. print out hte python path in the script and see if you can find out if what you need is missing. or if something is wrong. eg. i see in your path its '/home/compuwiz/ecm.redshift-gaming.net/oisecm', but if hte import is saying oisecm.settings then it wont find it becasue it will be looking for '/home/compuwiz/ecm.redshift-gaming.net/oisecm/oisecm/settings' I believe a better understanding of python would help, I'll have to add that to my todo list. Actually the path also includes '/home/compuwiz/ecm.redshift-gaming.net' (last line, missed that myself until you mentioned it actually). The '/home/compuwiz/ecm.redshift-gaming.net/oisecm' path is so it can import 'paste' so we can see this debug info. Dir list: http://pastebin.com/ZCnYuxkD |

Tash Rockski
STAHLSTURM
0
|
Posted - 2012.05.02 22:24:00 -
[35] - Quote
Edit: I could use a little help, do you know what I should put in the first code box listed here? http://wiki.dreamhost.com/Django#Migrating_an_existing_FastCGI_site
Maybe this might help: http://www.djangobook.com/en/2.0/chapter12/ http://eve-corp-management.org |

Ajurna Jakar
Jian Products Engineering Group Nulli Secunda
8
|
Posted - 2012.05.03 07:59:00 -
[36] - Quote
Controller Vrelk wrote:Ajurna Jakar wrote:seems that it doesnt have the project in the path. print out hte python path in the script and see if you can find out if what you need is missing. or if something is wrong. eg. i see in your path its '/home/compuwiz/ecm.redshift-gaming.net/oisecm', but if hte import is saying oisecm.settings then it wont find it becasue it will be looking for '/home/compuwiz/ecm.redshift-gaming.net/oisecm/oisecm/settings' I believe a better understanding of python would help, I'll have to add that to my todo list. Actually the path also includes '/home/compuwiz/ecm.redshift-gaming.net' (last line, missed that myself until you mentioned it actually). The '/home/compuwiz/ecm.redshift-gaming.net/oisecm' path is so it can import 'paste' so we can see this debug info. Dir list: http://pastebin.com/ZCnYuxkDIf we figure this out, I will look into writing you a mod_passenger setup guide for you if you want.
not sure what passenger is. but here is my wsgi config file. compare it with yours. http://pastebin.com/q1MBvAqV http://eve-corp-management.org/-á |

Controller Vrelk
New Eden Regimental Navy Rebel Alliance of New Eden
3
|
Posted - 2012.05.03 23:09:00 -
[37] - Quote
Ajurna Jakar wrote:Controller Vrelk wrote:Ajurna Jakar wrote:seems that it doesnt have the project in the path. print out hte python path in the script and see if you can find out if what you need is missing. or if something is wrong. eg. i see in your path its '/home/compuwiz/ecm.redshift-gaming.net/oisecm', but if hte import is saying oisecm.settings then it wont find it becasue it will be looking for '/home/compuwiz/ecm.redshift-gaming.net/oisecm/oisecm/settings' I believe a better understanding of python would help, I'll have to add that to my todo list. Actually the path also includes '/home/compuwiz/ecm.redshift-gaming.net' (last line, missed that myself until you mentioned it actually). The '/home/compuwiz/ecm.redshift-gaming.net/oisecm' path is so it can import 'paste' so we can see this debug info. Dir list: http://pastebin.com/ZCnYuxkDIf we figure this out, I will look into writing you a mod_passenger setup guide for you if you want. not sure what passenger is. but here is my wsgi config file. compare it with yours. http://pastebin.com/q1MBvAqV
Thank you very much, that worked! Sorta... How do you change the mysql host? It is looking for it on the local machine, I tried changing it using "ecm_host = mysql.redshift-gaming.net" under [database] in settings.ini but it is still looking for it locally.
This is passenger by the way ( http://www.modrails.com/ ), it also runs python via wsgi, not just ruby. |

diabeteman
ICE is Coming to EVE
11
|
Posted - 2012.05.04 01:17:00 -
[38] - Quote
Yop controller,
I need to add the handling of the database server host. It is not yet taken into account. I was presuming that people would have the server running in local 
About the bootstrap WSGI script, there is one example in the "apache" folder of your ecm instance normally. It should work with mod_passenger if it behaves the same way than mod_wsgi. Be careful with the ordering of your apache directives. Look at the apache_mod_wsgi httpd config file into the "examples" folder for more info.
o/ Initiator and CTO of Eve Corp. Management |

Controller Vrelk
New Eden Regimental Navy Rebel Alliance of New Eden
3
|
Posted - 2012.05.04 01:45:00 -
[39] - Quote
I'm going to have to say this is a pain in the ass.
(can't get it to use my python install.) I copied the dependencies to the folder, and it is loading ecm from there as I have renamed the folder to make sure, but it won't load staticfiles from there. Any idea why? I checked, I copied the right folder & structure (actually, I downloaded staticfiles as it wasn't in my python installs site-packages folder. (just an fyi, I'm usually pretty good at figuring these things out on my own without asking questions, though I am new to python and this is driving me nuts)
http://pastebin.com/0UgEZ0Yx |

Ajurna Jakar
Jian Products Engineering Group Nulli Secunda
8
|
Posted - 2012.05.04 08:07:00 -
[40] - Quote
you need something the equivilent of the following in your vhost config. should be pretty high up on the directives list.
alias "/static" "/var/www/test-instance/static" http://eve-corp-management.org/-á |
|

Controller Vrelk
New Eden Regimental Navy Rebel Alliance of New Eden
3
|
Posted - 2012.05.05 07:28:00 -
[41] - Quote
Is there an alternative? I have shared hosting, so I can't use alias as it isn't allowed in .htaccess. |

Ajurna Jakar
Jian Products Engineering Group Nulli Secunda
8
|
Posted - 2012.05.05 13:37:00 -
[42] - Quote
well you need to make the static files available somehow. otherwise this isn't going to work. http://eve-corp-management.org/-á |

diabeteman
ICE is Coming to EVE
11
|
Posted - 2012.05.10 14:41:00 -
[43] - Quote
bump :cuir: Initiator and CTO of Eve Corp. Management |

Peter Powers
Terrorists of Dimensions Free 2 Play
81
|
Posted - 2012.06.18 11:02:00 -
[44] - Quote
two things
a) i noticed that the activation mail allways links to https, no matter if your using it or not
b) are you planning on extending this to an alliance level?
regards, PP |

Peter Powers
Terrorists of Dimensions Free 2 Play
81
|
Posted - 2012.06.18 11:05:00 -
[45] - Quote
Controller Vrelk wrote:Is there an alternative? I have shared hosting, so I can't use alias as it isn't allowed in .htaccess. probably this wont work for you either (shared hosting is a *****) in my setup i'm running varnish in front of everything and have varnish actually pull the static files from a different webserver (lighttpd which has only the static files) |

snipereagle1
White Star Line 2010 The Retirement Club
1
|
Posted - 2012.06.24 22:59:00 -
[46] - Quote
I'm getting a 500 Internal Server Error when I try to visit the site. Here's my error log: http://pastebin.com/Z4a8w5Xg |

Turk Fezzik
Merkhan Industries Rebel Alliance of New Eden
1
|
Posted - 2012.06.30 15:21:00 -
[47] - Quote
Controller Vrelk and I were able to get this working on dreamhost with passenger WSGI. It was quite a pain but it's working mostly. I'm finding bugs as I go and filing bug reports. Most of what I've seen so far are template problems.
The latest bug I'm seeing is that the site won't render properly on my machine at home but renders fine from work. It's almost like none of the Javascript is executing. I've tried both Firefox and IE and they both do it. I'm baffled by this problem. I guess I need to wait until Monday to try it from work before I can determine if my site broke.
EDIT: One of my corp members is reporting the same problem so I guess the site broke. Doesn't seem to be serving up static content any more. Will let you all know what I find. |

AzAkiR NaLDa
Real Simple Construction Elemental Tide
6
|
Posted - 2012.09.23 18:38:00 -
[48] - Quote
okay i got ECM to work but i have ran into a strange issue.
members try to register but get a internal server error.
when they try to re-register they get the notification that they allready did and should look for a mail. but the mail is never send out?
what could be the problem?
running ECM on ubuntu server 11.10 |

Ryaath Stormbringer
Slackerz United
1
|
Posted - 2012.10.03 13:46:00 -
[49] - Quote
if you need non shared web hosting or a dedicated server to run your ECM or other servers/ services on take a look at my thread here
Been operating for about 6 months, changed from individual person managing this in game business, into a corp buisness so i can keep up with supply and demand demand, and offer promt 24/7 trouble shooting etc. |

Lulu Pires
Shadow Enclave Industries
0
|
Posted - 2012.10.15 21:11:00 -
[50] - Quote
I'm facing a problem with my installation.
I guess the static files won't load at all as my instance is fully function but doesn't show any pictures or any kind of formatting.
I've gone through all the steps in the installation guide carefully.
|
|

Jack Lagoon
Northstar Cabal Fatal Ascension
3
|
Posted - 2012.10.15 22:08:00 -
[51] - Quote
Any one try running this on Godaddy hosting and if so what steps did you take? Thanks! |

Lulu Pires
Shadow Enclave Industries
0
|
Posted - 2012.10.16 19:51:00 -
[52] - Quote
Jack Lagoon wrote:Any one try running this on Godaddy hosting and if so what steps did you take? Thanks!
I'm running this on apache server in localhost.
|

AzAkiR NaLDa
Real Simple Construction Yulai Federation
6
|
Posted - 2012.10.19 17:45:00 -
[53] - Quote
Make sure the permissions are set correctly and that the instance can access and write to the cm.log file. Any errors that occur during loading or what ever get logged in there |

Isaphras
Ponies Love Napalm
5
|
Posted - 2012.10.26 11:52:00 -
[54] - Quote
Seemed like a great idea until I saw django.
I love Python as much as the next guy, but everyone knows how badly django turned out.
--
Considering the code is GPL I might have a look and see what I can do about a PHP/MySQL version; love the work you've done here, just unfortunate that django was the way you chose to go.
--
Back on hand, I don't see why you didn't go with WSGI or something that goes straight into the Apache server and can run as a CGI without having to suck so hard (again, django.) Hope you guys could consider switching to server software behind this wonderful application to something sane for v3 :P. |

Dukandreas
The Legion of Spoon Curatores Veritatis Alliance
1
|
Posted - 2012.11.06 20:52:00 -
[55] - Quote
does the use_https do anything? I am trying to proxy using nginx and when ever ECM redirects to another page it uses http. |

Amallya Trueshot
Dirt Nap Squad Dirt Nap Squad.
8
|
Posted - 2012.11.11 15:42:00 -
[56] - Quote
this is a great app!
i've started to config my vps with ecm. in this week i'll be doing tests using a friendly corporation.
then, i'll might go start hosting ecm instances. (have to figure out how much i'll be charging for that)
evemail me if u got anything on mind.
best regards from Portugal |

Brain Gehirn
Vera Cruz. Nulli Secunda
8
|
Posted - 2012.12.03 19:33:00 -
[57] - Quote
Hello,
I got it working locally but with a sad issue: - The ecm doesnt load images and/or css.
I already managed to set the static folder inside the ini file but doesnt seen to works.
Am I missing something? Btw, im using latest version
Thanks!
What is a signature? |

Ajurna Jakar
Jian Products Engineering Group CORE Alliance
9
|
Posted - 2012.12.04 08:26:00 -
[58] - Quote
you need to serve the static files seprately. for instance in apache you would need to alias the static directory to example.com/static. then the images and js will load properly. http://eve-corp-management.org/-á |

Brain Gehirn
Vera Cruz. Nulli Secunda
8
|
Posted - 2012.12.04 11:48:00 -
[59] - Quote
Im not using domain, just locally. I didnt realize yet how to serve it since the url http://127.0.0.1:8888/static/ecm/img/logo.png says that the thing doesnt exist and also the code just use relative references.
Setting anything in static patch doesnt solve a thing (or even leaving it blank).
What is a signature? |

Ajurna Jakar
Jian Products Engineering Group CORE Alliance
9
|
Posted - 2012.12.04 12:56:00 -
[60] - Quote
well the httpd you are using has to transfer the files cause otherwise its trying to run them as a script. there needs to be a change to this effect. pop on irc if you want more real time help. http://eve-corp-management.org/-á |
|
|
|
|
Pages: 1 [2] 3 4 5 :: one page |
First page | Previous page | Next page | Last page |