Quantcast
Channel: BitNami Answers - latest questions
Viewing all 2052 articles
Browse latest View live

Bitnami Wordpress 3.4.1 - featured area images missing

$
0
0

Is anyone experiecning missing images when using Wordpress 3.4.1 ? For example I use a theme which has an image slide / timthumb functionality. I cant get any images to display in the featured area slide. It's worth noting they DO upload successfully as I've checked and they're there.

I'm wondering if anyone has had this issue.

Out of curiosity I tried an earlier version of Wordpress, 3.3.3 and the images displayed as they should? Very weird, but I'd like and answer. I've checked permissions in the wp-content folder and I've set them to 777 (the stack is on vmware image on my own LAN so no security issues to worry about)

Any help appreciated.


Redmine- Intermittent 503 service temporarily unavailable error/Thin services

$
0
0

I am using the BitNami Redmine stack 2.0.1 on Windows Server 2008 and around every two to three hours, Redmine will return a "503 service temporarily unavailable error" when trying to access it. The only way to restore Redmine is to restart the redmineThin1 and redmineThin2 services.

If I try to access Redmine while it's down, these errors appear in \BitNami Redmine Stack\apache2\logs\error.log

[Thu Jun 07 12:10:35 2012] [error] (OS 10061)No connection could be made because the target machine actively refused it.  : proxy: HTTP: attempt to connect to 127.0.0.1:3001 (127.0.0.1) failed
[Thu Jun 07 12:10:35 2012] [error] ap_proxy_connect_backend disabling worker for (127.0.0.1)

It appears that ports 3001 and 3002 correspond to the redmineThin1 and redmineThin2 services. If one service isn't restarted, then it will continue to throw this error even if Redmine is accessible. The Redmine production.log doesn't show anything about this and reconnect is set to true in the database.yml file.

Does anyone know how I can stop these services from failing or locking up? Also, does anyone know what the log files for the redmineThin services are located? Any help with this would be greatly appreciated.

SVN Authentication problem

$
0
0

Hello, I have Installed Bitnami Subversion Server on Windows XP. Also i installed Subersion client to access the repository to commit and upload the files in Subversion Server. I configured the basic authentication method in svn but its not working (not asking for authetication and when try to commit some files or folders then it will not give infomation about Author). My configuration files are:

File: C:Program FilesBitNami Subversion Stackrepositoryconfsvnserve.conf

[general]

anon-access = none

auth-access = write

password-db = passwd

authz-db = authz

realm = My First Repository

File: C:Program FilesBitNami Subversion Stackrepositoryconfauthz

[groups]

4MW = us1,hk1

[/]

@4MW = rw

[http://172.31.198.64:122/subversion/Internal]

@4MW = rw

[http://172.31.198.64:122/subversion/External]

@4MW = rw

File: C:Program FilesBitNami Subversion Stackrepositoryconfpasswd

[users]

us1 = us1

hk1 = hk1


Please let me know what i am missing.

Thanks

Site only loads with /index.php

$
0
0

I cannot access my site without /index.php

My site: http://23.23.159.238/ brings up...

Not Found
The requested URL /joomla.xml/ was not found on this server.

However, http://23.23.159.238/index.php works fine. The rest of my site's directories load fine without the index.php.

In .htaccess I currently have...
RewriteBase /
1. I tried /joomla, but that didn't work and the rest of my pages didn't load either.
2. Commenting it out has the same effect as uncommented RewriteBase /, everything works, but the homepage without /index.php

In httpd.conf I have...

Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all

In joomla.conf I have...

Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all

RewriteEngine On
RewriteRule ^/$ /joomla/ [PT]

I am totally lost. What can I do? Thank you.

Uninstall MySQL Component

$
0
0

Hello,

I'm using RDS Amazon so do not need to have mysql installed on my EC2 instance. How do I uninstall this component BitNami through the command line?

Thanks.

python-ldap review board

$
0
0

When I choose authentication method to Active directory I have following

LDAP authentication requires the python-ldap library, which is not installed.

how can I install it?

how to automate "sudo ntpdate ntp.ubuntu.com" like scheduled task on bitnami ubuntu

$
0
0

I want to automate(like scheduled task)the command following command on ubuntu machine "sudo ntpdate ntp.ubuntu.com" vm version bitnami-trac-0.12.3-0-ubuntu-10.10

Pricing in a Rails AMI


mysql.so php extension installed twice or not at all in resourcespace on rubstack on ubuntu 12.04???

$
0
0

I have successfully installed 32 bit Bitnami RubyStack on an Ubuntu 12.04 VM under VirtualBox. Then I installed ResourceSpace by unzipping it and moving the entire resourcespace directory contents into the apache2/htdocs directory. This works correctly when a browser is pointed to it. When I tried to use a cli tool to import images, I run into an issue where the mysql.so extension module is either not installed, or installed twice, depending on whether I uncomment or comment the relevant line in php.ini.

I cant tell if this is a ResourceSpace issue, or a bitnami/php issue, or an interaction between the two.

ResourceSpace has a cli tool (called staticsync.php) to enable bulk loading of .jpg and other files.

Running staticsync.php, as follows: ....apache2/resourcespace$ php pages/tools/staticsync.php originally gave the error that the extension mysql.so had not been enabled.

I uncommented the "extension=mysql.so line" in the php.ini file. I was not able to locate the "mysql.so" file already in the bitnami rubystack. I installed php5-mysql using apt-get, then copied the /usr/lib/php5/20090626+lfs/mysql.so file into the extension directory pointed to by the php.ini file.

ResourceSpace's internal web status page now showed the mysql extension was installed. Good, it also agreed that the module was not installed when the relevant line in php.ini was commented. So far so good.

However when I then ran the staticsync.php from the commandline, php reported that the mysql module was already loaded.

That is where it got interesting. Either the module is not installed at all, or it is installed twice. Commenting out the line "extension = mysql.so" and the module is not installed. Uncomment it and the module is installed already. (When I run a php script from the command line.)

A bit of googling suggested that the problem was that the mysql.so extension module had been loaded twice perhaps by being referenced multiple times in different files. In one example I found, mysql.so had been referenced both in the php.ini file, and in an mysql.ini file. Commenting one of those solved the issue.

So I searched through all files on my system to see if mysql.so had been referenced more than once. The only file I can find referencing "mysql.so" is /home/vagrant/rubystack-3.2.5-0/php/etc/php.ini There were other references to "mysql.sock" but not "mysql.so"

This is contrary to the data I get when I run phpinfo():

vagrant@lucid32:~/rubystack-3.2.5-0/apache2/htdocs/resourcespace$ php -r "phpinfo();" | grep php.ini PHP Warning: Module 'mysql' already loaded in Unknown on line 0 Configuration File (php.ini) Path => /bitnami/rubystackDev-linux/output/php/lib Loaded Configuration File => /home/vagrant/rubystack-3.2.5-0/php/etc/php.ini

A careful search to find what phpinfo() refers to as "The Configuration File (php.ini) Path" failed to find it. Searching for variations of "rubystackDev-linux/output" didn't find anything similar either. (Could this be something to do with the bitnami rubystack install procedure which is still left over in the running environment?)

I am sshing into the virtual machine with Putty. In case there was a problem with the PATH, I added a line to my .profile which rubyconsole -- and that sets the PATH to what would be expected in the Bitnami environment.

  1. Is it correct and expected that the mysql.so module is not part of the rubystack?
  2. It appears that the bitnami php.ini file is being called twice somehow, but I haven't spotted where. Can anyone shed any light on this?

Redmine Windows email: end of file reached

$
0
0

Using the Bitnami Redmine Windows stack on Windows Server 2008 R2. Trying to configure it to send email through an Exchange server. When clicking on the "Send a test email" button I'm getting the error "An error occurred while sending email (end of file reached)".

configuration.yml

default: email_delivery: delivery_method: :smtp smtp_settings: address: 10.100.0.10 port: 25 open_ssl_verify_mode: none

properties.ini

[SMTP] smtp_host=10.100.0.10 smtp_port=25

Note: At first the error message was "hostname was not match with the server certificate" but after adding "open_ssl_verify_mode: none" the error changed to "end of file reached".

running Cron in Moodle Stack.

$
0
0

Hi

I'm surprised that the Bitnami Moodle image (ubuntu) when set up and running doesn't appear to have the moodle/htdocs/admin/cli/cron.php running automatically.

I had a warning message from Moodle stating that cron had not be excuted for a long time, so I ran it manually from the command line.

Am I missing something here? What should I do? Should I create my own with crontab. Is there any documentation on this?

Thanks /Jason

CopperMine registration confirmation email can't be send

$
0
0

I've sort of got CPG up and running however I cannot get it to send a confirmation email.

Ive tried using sendmail by leaving the fields blank and I've tried my smtp server (smtp.pobox.com) but they both give the same error message 'The registration confirmation email can't be send'.

My emails work, so I can send emails through this smtp server. I've turned on logging but there is nothing in there.

Are there any other settings which need changing?

Thanks

BItnami MAMP Stack 5.4.4-0 on Lion 10.7.4, no xdebug

$
0
0

Hi,

Just wondering what is the best approach to get xdebug setup under bitnami ( Mamp Stack running on Lion ) and have it working. Thanks in advance.

Updating an issue in redmine takes 10 seconds

$
0
0

Hi,

I'm running redmine 1.3.2 in a virtual Windows Server 2008 R2. Updating or creating an issue takes a long time. Here is a snippet from our logs:

Processing IssuesController#create (for xxx.xxx.xxx.xxxx at 2012-04-25 19:39:13) [POST]
  Parameters: {"commit"=>"Create", "project_id"=>"test", "action"=>"create", "authenticity_token"=>"", "issue"=>{"start_date"=>"2012-04-25", "custom_field_values"=>{"1"=>"?"}, "estimated_hours"=>"", "parent_issue_id"=>"", "priority_id"=>"4", "is_private"=>"0", "fixed_version_id"=>"", "done_ratio"=>"0", "assigned_to_id"=>"", "subject"=>"Test 2", "tracker_id"=>"1", "due_date"=>"", "status_id"=>"1", "description"=>""}, "controller"=>"issues", "attachments"=>{"1"=>{"description"=>""}}}
Sending email notification to: xxx@xxx.com
Redirected to http://mysite.com/project/issues/35
Completed in 10483ms (DB: 0) | 302 Found [http://mysite.com/project/projects/test/issues]

I've looked in the database.yml file and see that reconnect is set to true:

production:
  adapter: mysql
  database: bitnami_redmine
  host: localhost
  username: ''
  password: ''
  port: 3306
  reconnect: true
  encoding: utf8

So that can't be it.

Anybody ideas?

Thanks!

Y

LAPPStack remote mysql won't connect

$
0
0

Hello Guys,

I've spawned up a LAPPStack server on the AWS cloud and I need to connect my PHP application to a remote MySQL that we have hosted elsewhere.

However, I get a 'Error establishing a database connection' thrown by PHP.

I have checked the connection from other remote sites and it appears to work just fine. Is there any configuration on the BitNami LAPPStack image which would be blocking this outbound port (3306) for some reason?

Thanks,

Robert


Redmine AMI Error 118 ERR_CONNECTION_TIMED_OUT

$
0
0

Hi, till now we used the linux redmine stack locally and had no problems with it. But now i ve been asked to host a project online to work on it together with an other company.

So i wante to try to deploy redmine in amazons AWS with the help of bitnami. the "one click"-method is great and worked, but it s redmine 1.4 and i would love to install a newer version.

So i installed a new instance with one of the AMI-Images. I took 64bit Redmine 2.0.3-1 EBS, hosted in ireland.

All processes worked and i can connect via ssh, but if i try to open the the public dns i dont get a response and after a while the browsermessage ERR_CONNECTION_TIMED_OUT appears.

I even restarted the instance but it doesnt change anything, also i doublechecked the open ports, but i just took the group settings of my old "bitnami group" that was installed automatically before.

Any tips what my problem could be or how i can find out more?

Thanks in advance.

Christopher

EDIT: Here is the error_log of the apache server:

[Wed Jul 25 08:57:35 2012] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] /opt/bitnami/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.12/helper-scripts/prespawn:95:in read': Connection reset by peer (Errno::ECONNRESET) from /opt/bitnami/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.12/helper-scripts/prespawn:95:inhead_request' from /opt/bitnami/ruby/lib/ruby/gems/1.8/gems/passenger-3.0.12/helper-scripts/prespawn:145

[Wed Jul 25 09:47:42 2012] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]

Bitnami Wordpress with Varnish throws 503 page

$
0
0

Running bitnami wordpress 3.4.1 on AWS but couldn't get varnish to work properly. Configured correctly as per varnish wiki on bitnami, apache on port 81 and varnish on 80. netstat shows the settings are correct too but varnishlog shows 503 service unavailable error, and at some point lots of "too many open files when accepting" lines. Varnish VCL file is from default wordpress template with port 81.

Did I miss out anything?

varnishlog and varnishstat below:

  383 BackendOpen  b default 10.142.73.43 58880 [aws ip] 80
  383 TxRequest    b POST
  383 TxURL        b /wp-admin/admin-ajax.php
  383 TxProtocol   b HTTP/1.1
  383 TxHeader     b Host: [domain]
  383 TxHeader     b Content-Length: 2497
  383 TxHeader     b Origin: http://[domain]
  383 TxHeader     b X-Requested-With: XMLHttpRequest
  383 TxHeader     b User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11
  383 TxHeader     b Content-Type: application/x-www-form-urlencoded; charset=UTF-8
  383 TxHeader     b Accept: */*
  383 TxHeader     b Referer: [url]
  383 TxHeader     b Accept-Language: en-US,en;q=0.8
  383 TxHeader     b Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
  383 TxHeader     b Cookie: wordpress_2a550a8d7393d90c113ea48c426bcdcb=adminusername%7C1343191472%7Cb0cde5cdc1fe566b850fb967a9c978ee; __gads=ID=f29588af44ed6913:T=1303712459:S=ALNI_MY0EjMPUTSoImt6N2wBTpIqWg34XQ; __qca=P0-904217898-1303712460567; __ar_v4=%7CJJIGBE2ISVB2JAHWPNULGA%
  383 TxHeader     b X-Varnish: 1935608958
  383 TxHeader     b X-Varnish: 1935608964
  383 TxHeader     b X-Varnish: 1935608969
  383 TxHeader     b X-Varnish: 1935608979
  383 TxHeader     b X-Varnish: 1935608984
  383 TxHeader     b X-Varnish: 1935608992
  383 TxHeader     b X-Varnish: 1935608999
  383 TxHeader     b X-Varnish: 1935609006
  383 TxHeader     b X-Varnish: 1935609013
  383 TxHeader     b X-Varnish: 1935609018
  383 TxHeader     b X-Varnish: 1935609025
  383 TxHeader     b X-Varnish: 1935609033
  383 TxHeader     b X-Varnish: 1935609040
  383 TxHeader     b X-Varnish: 1935609052
  383 TxHeader     b X-Varnish: 1935609063
  383 TxHeader     b X-Varnish: 1935609072
  383 TxHeader     b X-Varnish: 1935609079
  383 TxHeader     b X-Varnish: 1935609097
  383 TxHeader     b X-Varnish: 1935609109
  383 TxHeader     b X-Varnish: 1935609111
  383 TxHeader     b X-Varnish: 1935609123
  383 TxHeader     b X-Varnish: 1935609136
  383 TxHeader     b X-Varnish: 1935609147
  383 TxHeader     b X-Varnish: 1935609158
  383 TxHeader     b X-Varnish: 1935609167
  383 TxHeader     b X-Varnish: 1935609179
  383 TxHeader     b X-Varnish: 1935609184
  383 TxHeader     b X-Varnish: 1935609199
  383 TxHeader     b X-Varnish: 1935609208
  383 TxHeader     b X-Varnish: 1935609218
  383 TxHeader     b X-Varnish: 1935609226
  383 TxHeader     b X-Varnish: 1935609234
  383 TxHeader     b X-Varnish: 1935609245
  383 TxHeader     b X-Varnish: 1935609249
  383 TxHeader     b X-Varnish: 1935609255
  383 TxHeader     b X-Varnish: 1935609265
  383 TxHeader     b X-Varnish: 1935609270
  383 TxHeader     b X-Varnish: 1935609281
  383 TxHeader     b X-Varnish: 1935609289
  383 TxHeader     b Accept-Encoding: gzip
  383 TxHeader     b X-Varnish: 1935609297
  383 RxProtocol   b HTTP/1.1
  383 RxStatus     b 503
  383 RxResponse   b Service Unavailable
  383 RxHeader     b Server: Varnish
  383 RxHeader     b Content-Type: text/html; charset=utf-8
  383 RxHeader     b Retry-After: 5
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b X-Varnish: 1935609353
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b X-Varnish: 1935609343
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b X-Varnish: 1935609335
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b X-Varnish: 1935609325
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b X-Varnish: 1935609316
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Content-Length: 419
  383 RxHeader     b Accept-Ranges: bytes
  383 RxHeader     b Date: Wed, 25 Jul 2012 14:12:28 GMT
  383 RxHeader     b X-Varnish: 1935609306
  383 RxHeader     b Age: 0
  383 RxHeader     b Via: 1.1 varnish
  383 RxHeader     b Connection: keep-alive
  383 RxHeader     b X-Cache: MISS
  383 Fetch_Body   b 4 0 1
  383 Length       b 419
  383 BackendReuse b default

 Hitrate avg:     0.0000   0.0000   0.0000

         401         0.00         1.86 client_conn - Client connections accepted
         281         0.00         1.30 client_req - Client requests received
          74         0.00         0.34 cache_miss - Cache misses
         302         0.00         1.40 backend_conn - Backend conn. success
         263          .            .   n_sess_mem - N struct sess_mem
         254          .            .   n_sess - N struct sess
         118          .            .   n_objectcore - N struct objectcore
         161          .            .   n_objecthead - N struct objecthead
         198          .            .   n_waitinglist - N struct waitinglist
         156          .            .   n_vbc - N struct vbc
         156          .            .   n_wrk - N worker threads
         156         0.00         0.72 n_wrk_create - N worker threads created
      130246         0.00       602.99 n_wrk_max - N worker threads limited
           6         0.00         0.03 n_wrk_lqueue - work request queue length
         461         0.00         2.13 n_wrk_queued - N queued work requests
           1          .            .   n_backend - N backends
          16         0.00         0.07 losthdr - HTTP header overflows
         146         0.00         0.68 n_objwrite - Objects sent with write
         283         0.00         1.31 s_sess - Total Sessions
         281         0.00         1.30 s_req - Total Requests
          72         0.00         0.33 s_pass - Total pass
       39886         0.00       184.66 s_hdrbytes - Total header bytes
       61174         0.00       283.21 s_bodybytes - Total body bytes
         146         0.00         0.68 sess_closed - Session Closed
           3         0.00         0.01 sess_herd - Session herd
       25785         0.00       119.38 shm_records - SHM records
        1761         0.00         8.15 shm_writes - SHM writes
           3         0.00         0.01 shm_cont - SHM MTX contention
         146         0.00         0.68 sms_nreq - SMS allocator requests
       61174          .            .   sms_balloc - SMS bytes allocated
       61174          .            .   sms_bfree - SMS bytes freed
         302         0.00         1.40 backend_req - Backend requests made
           1         0.00         0.00 n_vcl - N vcl total
           1         0.00         0.00 n_vcl_avail - N vcl available
           1          .            .   n_ban - N total active bans
           1         0.00         0.00 n_ban_add - N new bans added
         214         0.00         0.99 hcb_nolock - HCB Lookups without lock
          48         0.00         0.22 hcb_lock - HCB Lookups with lock
          48         0.00         0.22 hcb_insert - HCB Inserts
         216         0.00         1.00 uptime - Client uptime
           1         0.00         0.00 LCK.sms.creat - Created locks
         438         0.00         2.03 LCK.sms.locks - Lock Operations
           1         0.00         0.00 LCK.sma.creat - Created locks
           1         0.00         0.00 LCK.smf.creat - Created locks
         293         0.00         1.36 LCK.smf.locks - Lock Operations
           1         0.00         0.00 LCK.hcb.creat - Created locks
          50         0.00         0.23 LCK.hcb.locks - Lock Operations
           1         0.00         0.00 LCK.vcl.creat - Created locks
         287         0.00         1.33 LCK.vcl.locks - Lock Operations
           1         0.00         0.00 LCK.stat.creat - Created locks
         263         0.00         1.22 LCK.stat.locks - Lock Operations
           1         0.00         0.00 LCK.sessmem.creat - Created locks
         481         0.00         2.23 LCK.sessmem.locks - Lock Operations
           1         0.00         0.00 LCK.wstat.creat - Created locks
       42941         0.00       198.80 LCK.wstat.locks - Lock Operations
           1         0.00         0.00 LCK.herder.creat - Created locks
         271         0.00         1.25 LCK.herder.locks - Lock Operations

Editing template files after wordpress ec2 install

$
0
0

Hi - sorry for the totally newbie questions - I've installed wordpress to an EC2 instance, downloaded a template and am now trying to edit some of the template php files, but have no idea on where to go to set the permissions to edit the files (currently, it says that I don't have write permissions on them), also, what do i change the permissions to? - any help much appreciated, thanks!

bitnami-redmine-2.0.3-1-ubuntu-12.04 rant about issues

$
0
0

Seriously, I have been working in IT for 14 years and this has to be the absolute worst piece of software delivered in the worst possible variety of ways. Let me list them: Grab windows installer and attempt to install - fails on mysql install ok grab BITNAMI redmine VA issues:

  1. documentation describes how to make this work with vmware BUT docs are out of date, we run vsphere not server, 5.0.1 not pre 4 version so vmware converter process described in docs not relevant at all.

  2. attempt to deploy vmf template directly - whoops BITNAMI have made drives in the va IDE not SCSI. Error message is both irrelevant and misleading.

  3. Use converter to import the machine yay

  4. Starts and runs ok

  5. add two users - admins

  6. attempt to configure email notifications

  7. whoa....error message

  8. read docs

  9. again

  10. and again

  11. and again

  12. and again

  13. try everything

  14. read redmine docs

  15. try that

  16. read forums

  17. try that

  18. read some more, reread docs, call colleagues and ask them

  19. start cursing

  20. curse some more

  21. 5 hours into install process question god, country and software industry in general

  22. decide to post rant to offending entities forumn and completely disavow product to next 50 people I speak to

  23. feel somewhat better and wonder if anyone will actually read this

Support for Drupal distributions

$
0
0

At the time of this posting there are 203 distributions at http://drupal.org/project/distributions . I just heard about this project (which looks awesome btw, fantastic work) but I was wondering how hard it would be to support these flavors of drupal? Essentially it's just drupal core + a slightly different install routine and I see you already have support for D6 / D7 install profiles. Especially now that more popular distributions have their packaging scripts actually live on drupal.org would it be possible to almost white-list popular drupal distributions for inclusion as possible install options?

This is slightly selfish on my part as I maintain a drupal distribution for education called ELMS but I could see a lot more people utilizing your services through theses flavors of drupal. Distributions provide the business logic where as Drupal is just providing the framework. Drupal by itself is vanilla and these distributions are whole banana splits and full sundays of ice cream :) Open atrium, Drupal Commons and many other very popular distributions could provide people with out of the box use-cases that they could run with (obviously on your infrastructure) :).

Viewing all 2052 articles
Browse latest View live


Latest Images